/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }
  
 /* Banner Section */
.banner-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  /* background-color: #000; */
}

.banner-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.slide {
  transition: transform 0.1s ease-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease-out; /* Smooth scaling effect */
}
/* Ensure smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Smooth transition for each slide */
.slide {
  will-change: transform; /* Optimize the element for transform */
  transition: transform 0.1s ease-out; /* Add easing to make the effect smoother */
}

/* Apply styles for the images inside slides */
.slide img {
  will-change: transform; /* Optimize the images */
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  z-index: 3;
  opacity: 0; /* Start with hidden text */
  animation: fadeInText 2s forwards; /* Smooth fade-in animation */
}

.banner-text h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin: 0;
}

.banner-text p {
  font-size: 1.5rem;
  margin: 15px 0;
}

.btn-explore {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 20px;
  font-size: 1.2rem;
  color: #fff;
  background-color: #ff7a18;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

.btn-explore:hover {
  background-color: #ff4a00;
  transform: scale(1.05);
}

/* Animation for Text */
@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .banner-section {
    background-attachment: scroll; /* Disable parallax on mobile */
  }

  .banner-text h1 {
    font-size: 2rem;
  }

  .banner-text p {
    font-size: 1.2rem;
  }
}

  
/* Logo Container */
.logo {
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

/* Main Text: Aravind */
.logo-main {
  font-size: 2.1rem; /* Default font size */
  font-weight: bold;
  margin: 0;
  line-height: 1; /* Ensures no extra space from line height */
  background: linear-gradient(90deg, #ff6600, #ff9933); /* Orange gradient */
  -webkit-background-clip: text; /* Clip the gradient to the text */
  -webkit-text-fill-color: transparent; /* Make the background gradient visible */
  letter-spacing: 2px; /* Slight spacing for elegance */
  text-transform: uppercase; /* Bold corporate style */
}

/* Sub Text: Group of Companies */
.logo-sub {
  font-size: 0.8rem; /* Default font size */
  margin: 0; /* Removes any default margin */
  line-height: 1; /* Reduces additional vertical space */
  padding: 0; /* Ensures no padding adds space */
  font-weight: 400;
  color: white; /* Pure white for contrast */
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .logo-main {
      font-size: 1.7rem; /* Slightly smaller font for smaller screens */
      letter-spacing: 1.5px;
  }
  .logo-sub {
      font-size: 0.7rem; /* Reduced subtext size */
      letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .logo-main {
      font-size: 1.4rem; /* Further reduced font size for very small screens */
      letter-spacing: 1px;
  }
  .logo-sub {
      font-size: 0.6rem; /* Reduced subtext size for very small screens */
      letter-spacing: 0.8px;
  }
}



  .cta-button {
    padding: 10px 25px;
    font-size: 1rem;
    color: white;
    background: linear-gradient(45deg, #ff7a18, #ff0000);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 0 0 8px 8px;
  }
  
  .navbar .logo img {
    height: 40px;
    width: auto;
  }
  
  /* Navigation Links */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    margin-left: auto; /* Aligns the navigation items to the right */
  }
  
  .nav-links li {
    margin: 0;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .nav-links a:hover {
    background-color: #ff7a18;
    color: #fff;
  }

  /* Hide the menu-toggle (hamburger icon) on desktop view */
  @media (min-width: 768px) {
    #menu-toggle {
      display: none;
    }
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .navbar {
      padding: 10px 20px;
    }
  
    .nav-links {
      flex-direction: column;
      gap: 10px;
      background-color: rgba(0, 0, 0, 0.9);
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 15px;
      display: none;
      text-align: center;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
      color: white;
      font-size: 2rem;
      cursor: pointer;
    }
  }
  
  @media screen and (max-width: 480px) {
    .nav-links a {
      font-size: 0.9rem;
    }
  }

  
/* SMOOTH SCROLLING FOR NAV */
html {
    scroll-behavior: smooth;
}



/* ABOUT US */
/* General Styles */
.about-section {
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
  padding: 80px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px; /* Space between image and content */
  max-width: 1200px;
  margin: 0 auto;
}

.about-photo {
  flex: 1; /* Keep it flexible */
}

.about-image {
  width: 500px;
  height: 300px;
  border-radius: 10px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease; /* Smooth resizing */
}

@media screen and (max-width: 1024px) {
  .about-image {
    width: 400px;
    height: 240px;
  }
}

@media screen and (max-width: 768px) {
  .about-image {
    width: 300px;
    height: 180px;
  }
}

@media screen and (max-width: 480px) {
  .about-image {
    width: 100%; /* Full width for smaller devices */
    height: auto; /* Maintain aspect ratio */
  }
}


.about-content {
  flex: 2; /* Adjust width */
  text-align: left; /* Align text to the left */
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #444;
  margin-bottom: 20px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column; /* Stack image and content vertically */
    text-align: center; /* Center text for smaller screens */
  }

  .about-photo {
    margin-bottom: 20px;
  }

  .about-content {
    text-align: center;
  }
}


/* Brand Cards */
.brand-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.brand-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.brand-image img {
  width: 380px;
  height: 200px;
  object-fit: cover;
}

.brand-content {
  padding: 20px;
}

.brand-content h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
}

.brand-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align:justify;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }

  .about-description {
      font-size: 1rem;
  }

  .brand-card {
      margin-bottom: 20px;
  }
}
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background-color: #ff7a18;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
  background-color: #e63e00;
  transform: scale(1.1);
}


/* PAGE TOP BUTTON */
/* Style for the Page Up button */
.page-up-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #ff7a18;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 9999; /* Ensure button is above other content */
  opacity: 0; /* Initially hidden */
  pointer-events: none; /* Prevent interaction when hidden */
  transition: opacity 0.3s ease, pointer-events 0.3s ease;
}

.page-up-btn:hover {
  background-color: #e63e00;
  transform: scale(1.1);
}

.page-up-btn:focus {
  outline: none;
}

.page-up-btn i {
  font-size: 24px;
}

/* Smooth scrolling for the page */
html {
  scroll-behavior: smooth;
}



/* TIMELINE */
/* Timeline Section Styles */
.timeline-section {
  background-color: #f4f7f6;
  padding: 80px 0;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.timeline-item {
  position: relative;
  padding: 20px;
  margin: 20px 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.timeline-content {
  text-align: center;
}

.timeline-date {
  font-size: 18px;
  font-weight: bold;
  color: #ff7a18;
  display: block;
  margin-bottom: 10px;
}

.timeline-item h3 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.timeline-item:hover h3 {
  color: #ff7a18;
}

.timeline-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline-item {
      text-align: center;
  }
}

/* SERIVICES */
/* Service Section Styles */
.services-section {
  background-color: #f4f7f6;
  padding: 60px 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title i {
  font-size: 40px;
  margin-right: 10px;
  color: #ff7a18;
}

.section-description {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Individual Service Card */
.service-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  max-width: 320px;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  border-color: #ff7a18;
}

/* Service Icon */
.service-icon {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
  background-color: #ff7a18;
  border-radius: 50%;
  padding: 20px;
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-icon:hover {
  transform: scale(1.1);
}

/* Service Card Heading */
.service-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #ff7a18;
}

/* Service Card Description */
.service-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: #444;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 30px;
  }
}
/* Mobile View (480px and below) */

/* Service Cards Container */
@media (max-width: 480px) {
  .service-cards {
    grid-template-columns: 1fr; /* Stack all service cards in one column */
    gap: 20px; /* Reduced gap between cards for better spacing */
  }

  /* Individual Service Card */
  .service-card {
    padding: 20px 15px; /* Adjust padding to fit better on smaller screens */
    text-align: center; /* Ensures text is centered within the card */
    max-width: 100%; /* Allow cards to take full width */
  }

  /* Section Title */
  .section-title {
    font-size: 28px; /* Smaller font size for mobile */
    text-align: center; /* Ensure the title is centered */
  }

  /* Section Description */
  .section-description {
    font-size: 14px; /* Reduce font size for better readability */
    line-height: 1.5; /* Adjust line height for better spacing */
    max-width: 100%; /* Ensure description fits well */
    text-align: center; /* Center the description */
    padding: 0 10px; /* Add some padding for better readability */
  }

  /* Service Icon */
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 30px; /* Slightly smaller icon for mobile */
    padding: 15px; /* Adjust padding inside the icon */
  }

  /* Service Card Heading */
  .service-card h3 {
    font-size: 18px; /* Adjusted heading size for mobile */
    margin-top: 15px;
    color: #333; /* Ensure readability */
  }

  /* Service Card Description */
  .service-card p {
    font-size: 14px; /* Adjust description text size */
    color: #666; /* Slightly lighter color for description */
    line-height: 1.6; /* Improve line spacing */
    margin-bottom: 20px; /* More spacing between description and bottom */
  }
}


/* CONTACT */
/* Contact Section Styles */
.contact-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title i {
  font-size: 40px;
  margin-right: 10px;
  color: #ff7a18;
}

.section-description {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Wrapper */
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
}

/* Contact Information */
.contact-info {
  flex: 1;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.contact-info a {
  color: #ff7a18;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Contact Map */
.contact-map {
  flex: 1;
  max-width: 600px;
  height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .contact-map {
    max-width: 100%;
    height: 300px;
  }
}

/* FOOTER */
/* Footer Styles */
.footer {
  background: linear-gradient(145deg, #333, #444);
  color: #fff;
  padding: 30px 0;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Content Layout */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0;
}

/* Footer Sections */
.footer-section {
  flex: 1;
  max-width: 300px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ff7a18;
  position: relative;
}

.footer-section h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ff7a18;
  margin-top: 5px;
  border-radius: 2px;
}

.footer-section p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.5;
}

/* Quick Links */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff7a18;
}

/* Social Media Icons */
.social-media ul {
  display: flex;
  gap: 20px;
  padding-left: 0;
}

.social-media li a {
  color: #bbb;
  font-size: 22px;
  transition: color 0.3s ease;
  padding: 10px;
  border-radius: 50%;
  background-color: #555;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.social-media li a:hover {
  color: #fff;
  background-color: #ff7a18;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #bbb;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-section {
      margin-bottom: 20px;
      max-width: 100%;
  }

  .footer-bottom {
      font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
      padding: 20px 0;
  }

  .footer-content {
      gap: 30px;
  }

  .footer-section h3 {
      font-size: 16px;
  }

  .footer-section ul li a {
      font-size: 13px;
  }

  .social-media li a {
      font-size: 20px;
  }
}

/* Social Media Footer Links */
.footer-section.social-media ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px; /* Space between icons */
}

.footer-section.social-media ul li {
  display: inline-block;
}

.footer-section.social-media ul li a {
  color: #b1b1b1; /* Default icon color */
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for color and scaling */
}

/* Hover effect for icons */
.footer-section.social-media ul li a:hover {
  color: white; /* Change color to white */
  transform: scale(1.1); /* Optional: Add scaling effect */
}








/* BACKGROUND IMAGES */
/* ABOUT */
#about {
  position: relative;
  padding: 50px 0; /* Adjust padding as needed */
}

#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./assets/images/bg/Web\ 2.jpg'); /* Add your image path here */
  background-size: cover;
  background-position: center;
  opacity: 0.4; /* Set opacity of background */
  z-index: -1; /* Ensures content stays above the background */
}


/* TIMELINE BACKGROUND */
#timeline {
  position: relative;
}

#timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./assets/images/bg/Web\ 2.jpg'); /* Add your image path */
  background-size: cover;
  background-position: center;
  opacity: 0.3; /* Adjust for better visibility */
  z-index: -1; /* Keeps content above the background */
}



/* SERVICES */
#services {
  position: relative;
  padding: 50px 0; /* Adjust padding as needed */
  scroll-margin-top: 60px; /* Adjust this value based on your fixed header height */
}

#services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./assets/images/bg/Web4.jpg'); /* Add your image path here */
  background-size: cover;
  background-position: center;
  opacity: 0.3; /* Set opacity of background */
  z-index: -1; /* Ensures content stays above the background */
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* CONTACT */
#contact {
  position: relative;
  padding: 50px 0; /* Adjust padding as needed */
  scroll-margin-top: 60px; /* Adjust this value based on your fixed header height */
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./assets/images/bg/Web3.jpg'); /* Add your image path here */
  background-size: cover;
  background-position: center;
  opacity: 0.6; /* Set opacity of the background */
  z-index: -1; /* Ensures content stays above the background */
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  padding: 20px;
}

.contact-map {
  flex: 1;
  padding: 20px;
}

@media (max-width: 768px) {
  .contact-wrapper {
      flex-direction: column;
  }

  .contact-info,
  .contact-map {
      width: 100%;
  }
}











/* MEDIA QUERY FOR ABOUTUS BG IMAGE IN MOBILE AND TABLET */
/* Tablets (768px to 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  #about::before {
    background-image: url('./assets/images/bg/About-Tablet.jpg'); /* Tablet-specific background */
    background-size: cover;
    background-position: center;
    opacity: 0.4;
  }
}

/* Phones (767px and below) */
@media (max-width: 768px) {
  #about::before {
    background-image: url('./assets/images/bg/About-Phone.jpg'); /* Mobile-specific background */
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* Adjust opacity for better readability */
  }
}

/* MEDIA QUERY FOR TIMELINE BG IMAGE IN MOBILE AND TABLET */
/* Tablets (768px to 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  #timeline::before {
    background-image: url('./assets/images/bg/About-Tablet.jpg'); /* Tablet-specific background */
    background-size: cover;
    background-position: center;
    opacity: 0.4; /* Adjust for better visibility */
  }
}

/* Phones (767px and below) */
@media (max-width: 768px) {
  #timeline::before {
    background-image: url('./assets/images/bg/About-Phone.jpg'); /* Mobile-specific background */
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* Adjust for better readability */
  }
}


/* MEDIA QUERY FOR SERVICES BG IMAGE IN MOBILE AND TABLET */
/* Tablets (768px to 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  #services::before {
    background-image: url('./assets/images/bg/About-Tablet.jpg'); /* Tablet-specific background */
    background-size: cover;
    background-position: center;
    opacity: 0.4;
  }
}

/* Phones (767px and below) */
@media (max-width: 768px) {
  #services::before {
    background-image: url('./assets/images/bg/About-Phone.jpg'); /* Mobile-specific background */
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* Adjust opacity for better readability */
  }
}



/* MEDIA QUERY FOR CONTACT BG IMAGE IN MOBILE AND TABLET */
/* Tablets (768px to 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  #contact::before {
    background-image: url('./assets/images/bg/About-Tablet.jpg'); /* Tablet-specific background */
    background-size: cover;
    background-position: center;
    opacity: 0.4;
  }
}

/* Phones (767px and below) */
@media (max-width: 768px) {
  #contact::before {
    background-image: url('./assets/images/bg/About-Phone.jpg'); /* Mobile-specific background */
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* Adjust opacity for better readability */
  }
}














/* Mobile-Specific Background Images */
/* @media (max-width: 768px) {
  #about::before {
    background-image: url('./assets/images/bg/MobileAbout.jpg');
    background-attachment: scroll;
  }

  #services::before {
    background-image: url('./assets/images/bg/MobileServices.jpg');
    background-attachment: scroll;
  }

  #contact::before {
    background-image: url('./assets/images/bg/MobileContact.jpg');
    background-attachment: scroll;
  }
} */