/* General Styles */
i{
  position: absolute;
  width: 4px;  /* Slightly larger for visibility */
  height: 4px;
  background: #ff880d;
  pointer-events: none;
  animation: animate 5s linear forwards;
  border-radius: 50%;
  box-shadow: 0 0 8px 4px #ffc9932e;
}

@keyframes animate
{
  0%{
      opacity: 1;
      transform: translate(0, 0);
  }
  20% {
    opacity: 0.01;  /* Fade out quickly within first 20% of animation */
}
  100%{
      opacity: 0;
      transform: translate(var(--x), var(--y));
  }
}
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;  /* Prevent horizontal scrolling */
    margin: 0;
    padding: 0;
    max-width: 100%;
}
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow-x: hidden;
}
.navbar {
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: #ffffff;
  opacity: 0.9; /* Change to the color you want */
  color: #fff; /* Text color if needed */
}

/* Navigation Bar */
/*
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; 
    margin-bottom: 0;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1); 
}


.logo img {
    height: 90px;
    padding-left: 150px; 
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    padding-right: 150px;
}

nav ul li {
    margin-left: 20px;
    padding: 10px;
    
}

nav ul li a {
    color: #ff880d;
    text-decoration: none;
    font-weight: bold;
    
}

nav ul li a:hover {
    color: black;
}*/

/*main css*/


/* Global styles */


.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.min-h-screen {
  min-height: 100vh;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.grid {
  display: grid;
}

.md\:grid-cols-2 {
  grid-template-columns: 1fr 1fr;
}

.gap-12 {
  gap: 3rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.items-center {
  align-items: center;
}

/*.bg-gradient-primary {
  background: linear-gradient(180deg, #fbba79, #ff880d);
}*/



/* Text styles */
.title-m {
  font-size: 2.5rem;
  color: black;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1.5rem;
  margin-top: 200px;
  text-align:left;
}

.description {
  color: rgba(51, 51, 51, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

/* Buttons */
.button-group {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: #333333;
  color: #ffffff;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: rgba(51, 51, 51, 0.9);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 2px solid #333333;
  color: #333333;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: rgba(51, 51, 51, 0.1);
}

.arrow {
  margin-left: 0.5rem;
  font-size: 1.125rem;
}

/* Image styles */
.image-container {
  margin-top: 250px;
  display: none;
  size: 500px; /* Hide on smaller screens */
}

@media (min-width: 768px) {
  .image-container {
    display: block;
  }
}

.hero-image {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 150%; /* Adjust width to fit container */
  max-width: 600px; /* Set a maximum width */
}
#home{
  margin-top: 60px;
}

  
  
  
  
  
  /*
.background{
    background-color: white;
}

Hero Section 
header {
    color: white;
    padding: 20px;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    margin: 0;
    color: #ff880d ;
}


h2 {
    color: #ff880d ;
}
#introduction {
    padding: 40px;
    background-color: #f9f9f9;
}

#introduction h2 {
    font-size: 2em;

    text-align: left;
}
#introduction p{
    font-size: 1.5em;
}
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-content {
    flex: 1;
    text-align: left;
}

.image-content {
    flex: 1;
    text-align: right;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .text-content,
    .image-content {
        text-align: center;
    }
}*/

/* General styles nav */
  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 50;
  }
  
  .container-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
  }
  
  .logo-image {
    height: 110px;
    margin-left: 10px;
    margin-top: -10px;
    margin-bottom: -20px;
  }
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  .nav-ser{
    gap: 1rem;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-ser:hover .dropdown-icon {
    transform: rotate(180deg);
  }
  .dropdown-icon {
    font-size: 0.8rem; /* Adjust icon size */
    transition: transform 0.3s;
  }
  .nav-ser:hover {
    color: #ff8c42;
  }
  
  /* Rotate icon when hovered */
  
  /* Dropdown styles */
.nav-item {
  position: relative;
}

.dropdown-menu {
  padding-top: 20px;
  padding-bottom: 10px;
  position: absolute;
  top: 100%; /* Below the "Services" link */
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0.2rem;
  list-style: none;
  display: none;
  margin-left: -20px;
  /*z-index: 100;*/
}

.dropdown-link {
  
  display: block;
  color: #333333;
  text-decoration: none;
  padding: 0.5rem 2rem;
  padding-left: 10px;
  white-space: nowrap; /* Prevent text wrapping */
  overflow: hidden;    /* Hide overflowing text */
  text-overflow: ellipsis; 
  transition: background-color 0.3s ease-in-out;
  text-align: left;
}

.dropdown-link:hover {
  color: #ff8c42;;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown-menu {
  display: block;
}

  .nav-link {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .nav-link:hover {
    color: #ff8c42;
  }
  
  .btn {
    background-color: #ff880d;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: -10px;
    margin-bottom: -10px;
  }
  
  .btn:hover {
    background-color: rgba(51, 51, 51, 0.9);
  }
  
  /* Mobile menu styles */
  .mobile-only {
    display: none;
  }
  
  .menu-button {
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .menu-icon {
    width: 24px;
    height: 24px;
    color: #333333;
    transition: color 0.3s;
  }
  
  .menu-icon:hover {
    color: #ff8c42;
  }
  
  .mobile-menu {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  .mobile-nav-link {
    display: block;
    color: #333333;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
  }
  
  .mobile-nav-link:hover {
    color: #ff8c42;
  }
  
  .hidden {
    display: none;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .desktop-only {
      display: none;
    }
  
    .mobile-only {
      display: block;
    }
  }
/* Services Section (3-row layout with animation) 
#services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 70px;
    padding: 20px;
    margin: 50px;
    text-align: center;
    padding-left: 50px;
    
}
.service-link {
    text-decoration: none; 
    color: inherit; 
    display: block; 
}

.ser{
    padding: 20px;
    font-size: 40px;
}
.service-item {
    position: relative;
    background-color: #ffa750;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 90px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/Your%20paragraph%20text.png');
    background-size: cover;
    opacity: 0.5;  
    z-index: -1;  
    transition: opacity 0.3s ease;
}

.service-item:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    margin-top: -20px;
}

.service-item p {
    font-size: 0.9em;
    color: #000000;
    margin-bottom: 20px;
}

.service-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 220px;
    height: 120px;
    opacity: 1;
    margin-right: -60px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#services h1 {
    text-align: center;
    margin-bottom: 20px;
}*/


/* Mobile View */
@media (max-width: 767px) {
  .imag {
    content: url('assets/phone.png'); 
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;  /* Covers full viewport width */
    height: 100vh; /* Covers full viewport height */
    object-fit: cover; /* Ensures it fills the screen properly */
    z-index: -1; /* Sends it behind other content */
  }
}


/* Desktop View */
@media (min-width: 768px) {
  .imag {
    object-fit: cover;
    margin-top: 20px; /* Adjust as needed */
  }
}

.imag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

/* Hide CTA button on mobile */
@media (max-width: 767px) { /* Fixed inconsistent breakpoint */
  .enquiry-bt {
    display: none;
  }
}

.imag-container {
  position: relative;
  display: inline-block;
}

.enquiry-bt {
  position: absolute;
  z-index: 1;
  top: 69%; /* Used for better positioning */
  left: 73%;
  transform: translate(-50%, -50%); /* Centering the button */
  
  padding: 1rem 1.5rem;
  font-size: 1rem;
  text-align: center;
  width: 15rem;
  border-radius: 50px;
  background: transparent;
  border: 2px solid var(--clr);
  color: var(--clr);
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.75s;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.enquiry-bt::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px; /* Match button border radius */
  clip-path: ellipse(0% 0% at 50% 50%);
  transition: clip-path 0.75s ease;
  z-index: -1;
}

.enquiry-bt:hover::after {
  clip-path: ellipse(100% 100% at 50% 50%);
}

.enquiry-bt:hover {
  color: black;
  box-shadow: 0 0 10px var(--clr), 0 0 50px var(--clr);
}

/* General Styles */
/* Animation Keyframes */
/* Animation Keyframes */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }

}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Initial State */
.service-card {
  opacity: 0;
  transform: translateX(0); /* Reset position */
  transition: opacity 0.3s ease-in-out, transform 0.3s ease;
}
.service-link {
  display: block;
  text-decoration: none; /* Remove underline from link */
}

/* Animation Triggers */
.service-card.animate-left {
  animation: slideInFromLeft 0.8s ease-in-out forwards;
}

.service-card.animate-right {
  animation: slideInFromRight 0.8s ease-in-out forwards;
}

  
  .services-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, #ffffff, #ffffff);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .section-title {
    color: #ff880d;
    
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 35px;
    margin-bottom: 3rem;
    margin-top: -70px;
  }
  
  /* Service Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  /* Service Card */
  .service-card {
    background-color: #ff8c42;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    background-color: #ffad81;
    transform: scale(1.15); /* Enlarges the card on hover */
}

  
  
  .service-icon img {
    height: 3rem;
    margin-bottom: 1rem;
  }
  
  .service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1rem;
  }
  
  .service-description {
    color: #333333;
    margin-bottom: 1.5rem;
  }
  
  .service-image img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
  }

/* Call to Action Buttons */
.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #45a049;
}

/* contact */
.bgc{
    background-image: url(assets/bbbb.png) ; 
  /*background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;*/
  background-size: cover;
    
}

  
  .contact-section {
  padding-bottom: 70px;
    background-color: #FFD4A6;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    
  }
  
  .contact-title {
    color: #ff880d;
    
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 35px;
    margin-bottom: 1rem;
    margin-left: 40px;
  }
  
  .contact-description {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
    text-align: left;
    margin-left: 40px;
  }
  .contact-info{
    padding-left: 60px;
  }
  .contact-details {
    display: grid;
    gap: 1.5rem;
    padding-left: 50px;
  }
  
  .contact-item {
    display: flex;
    align-items: left;
  }
  
  .contact-icon {
    height: 1.5rem;
    margin-right: 1rem;
  }
  
  .contact-label {
    font-weight: bold;
    color: #333333;
    text-align: left;
  }
  
  .contact-text a {
    color: #666666;
    text-decoration: none; /* Removes underline */
  }
  .contact-text{
    color: #666666;
  }
  .wave-container{
    padding-bottom: -500px;
    filter: blur(5px);
    
  }
  .bottom-wave{
    margin-top: -100px;
  }
  .top-wave{
    margin-top: -100px;

  }
/* Contact Form */
.contact-form {
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-right: 50px;
  padding-right: 50px;
  font-family: 'Poppins', sans-serif;
  
}
.forml{
  text-align: left;

}
.form-group {
  margin-bottom: 1.5rem;
  
}

label {
  display: block;
  font-weight: bold;
  color: #333333;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: #ff8c42;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 140, 66, 0.3);
}

.form-button {
  width: 50%;
  background-color: #ff8c42;
  color: #ffffff;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-button:hover {
  background-color: #ff7a24;
}

@media (max-width: 768px) {
  .contact-section {
    margin-top: -130px;
    }
  .contact-grid {
      grid-template-columns: 1fr; /* Stack columns vertically on mobile */
      gap: 1rem; /* Reduce gap */
  }
  .contact-info {
      padding: 5rem 3rem;
      margin-left: -40px;
  }
  .contact-text{
    text-align: left;
  }

  .contact-form {
      width: 70%;
      margin-left: 15px;
      margin-right: 40px;
  }
}











  /* Certifications */

  /*.certifications-section{
    background: linear-gradient(90deg, #ffad5c, #ff880d);
  }*/

  /*.certifications-section {
    text-align: center;
    padding: 40px 20px;
    background-image: url(assets/certifi.png);
    
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  
  }*/

  @media (max-width: 768px) {
    .certifications-section h2 {
      margin-left: 100px;
    }
  }

  .certifications-section {
    text-align: center;
    background-color: #FFD4A6;
    position:relative;
    padding-top: 20px;
    margin-top: -50px;
    margin-bottom: 60px;
  }
  /*.bgc{
    background-image: url(assets/kenn.png) ; 
  /*background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
    
}*/
  .certifications-section h2 {
    font-size: 2rem;
    color: #ff880d;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-align: left;
    position: relative;
    margin-top: 0px;
    margin-left: 0px;
    /*text-shadow: 
    2px 2px 0px rgba(255, 255, 255, 0.904), 
    -2px -2px 0px rgba(255, 255, 255, 0.894),
    2px -2px 0px rgb(255, 255, 255),
    -2px 2px 0px rgba(255, 255, 255, 0.869); */
  }
  
  .certifications-logos {
    display: flex;
    justify-content: left;
    gap: 20px;
    margin-bottom: -90px;
    position: relative;
    margin-right: -40px;
  }
  
  .certifications-logos img {
    width: 190px; /* Adjust size as needed */
    height: auto;
    transition: transform 0.3s ease-in-out;
    border-radius: 20px;
    margin-bottom: 15px;
    
  }
  
  .certifications-logos img:hover {
    transform: scale(1.1);
  }
  




  
/* Copyright */
.copyright {
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
}
h1, h2, h3, p, ul, ol, li, figure {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* About Section */
  @media (max-width: 768px) {
    .about-section{
      margin-top: 800px;
      
      
    }
    .heading {
      margin-left: 15px;
      margin-right: 15px;

    }
    .text {
      margin-left: 15px;
      margin-right: 15px;
    }
    .stats-grid {
      margin-left: 15px;
      margin-right: 15px;
    }
  }

  .about-section {
    padding: 5rem 1rem;
    background-color: white;
  }

  .acontainer {
    max-width: 1201px;
    margin: 0 auto;
  }

  .content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }

  @media (min-width: 1024px) {
    .content-grid {
      grid-template-columns: 1fr 1fr;
    }

  }

  /* Heading */
  .heading {
    
    margin-bottom: 1.5rem;
    color: #ff880d;
    
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 35px;
  }

  /* Text */
  .text {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 20px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
  }

  /* Profile Section */
  .profile {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .profile-img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    display: none;
  }

  .profile-name {
    font-weight: 600;
    color: #ffffff;
  }

  .profile-role {
    color: #ffffff;
  }

  /* Stats Grid */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #edf2f7;
    text-align: left;
    transition: box-shadow 0.3s;

  }

  

  .stat-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 140, 66, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem; 
  }

  .stat-icon img {
    height: 1.5rem;
    width: 1.5rem;
  }

  .stat-value {
    font-size: 30px;
    font-weight: bold;
    color: #1a202c;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    color: #4a5568;
  }

  .stat-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ff860d06 ;
  }




  /* Footer */
  /* Responsive Adjustments */
  @media (max-width: 768px) {
  
    .footer-content {
      padding-top: 50px;
      align-items: center;
    }
    .footer-section {
      min-width: 100%;
      text-align: center;
    }
    .footer-section-ph {
      text-align: center;
    }
    .logoj img {
      margin: 0 auto;
    }
    .serv {
      margin-left: 30px;
    }
  }
/* Footer Styles */
  /* General Footer Styling (unchanged) */
  footer {
    height: auto; /* Adjust height to fit content dynamically */
    background-color: #ff880d; /* Vibrant background */
    color: #111111;
    padding: 30px 0;
    font-family: 'Poppins', sans-serif;
  }
  .wave-fcontainer{
    margin-top: -120px;
    
  }
  .fcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-content {
    margin-top: -50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .footer-section p,
  .footer-section ul {
    font-size: 15px;
    margin: 5px 0;
    text-align: center;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section ul li a {
    color: #111111;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  /* Styling for the Phone Info Section */
  .footer-section-ph {
     /* Subtle background for contrast */
    padding: 15px;
    border-radius: 10px;
    text-align: left;
  }
  
  .footer-section-ph h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: black;
    text-align: center;
     /* Highlighted heading color */
  }
  
  .footer-section-ph p {
    font-size: 15px;
    line-height: 1.8;
    margin: 8px 0;
  }
  
  .footer-section-ph a {
    color: #852c02;
    font-weight: bold;
    text-decoration: none;
  }
  
  .footer-section-ph a:hover {
    text-decoration: underline;
  }
  
  /* serv Contact Info Section */
  
  .serv {
    margin-top: 35px;
    
  }
  
  
  .serv a {
    color: #111111;
    text-decoration: none;
  }
  
  .serv a:hover {
    text-decoration: underline;
  }
  .copyright{
    text-align: center;
    font-size: 14px;
    margin-bottom: -20px;
    margin-top: 40px;
  }
  .copyright a{
    color: #111111;
    text-decoration: none;
  }
  .copyright a:hover {
    text-decoration: underline;
  }
  
  
  