* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*rgb(33, 73, 63)*/
}

/* ===== General Styles ===== */
body {
  font-family: Arial, sans-serif;  
  line-height: 1.6;
  /* background-color: #f9f9f9; */
  background: url('./service\ bc\ img.jpeg') no-repeat center center / cover fixed;
}

span{
    color: #ffcc00;
    font-weight: bold;
}

.hamburger{
  display: none;
}

.navBar{
  display:inline-block;
  margin-top: 20px;
}

.navBar{
  /* background-color: rgb(47, 101, 87); */
  background: linear-gradient(45deg, rgb(48, 110, 98),rgb(33, 81, 69));
  display: flex;
  flex-direction: row;
  gap: 120px;
  

  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo{
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-left: 20px;
  align-items: center;
  margin-left: 70px;
}

.logo img {
  height: 80px;
  width: 80px;
}

.logo h3{
    color:#ffcc00;
    font-size: 30px;
}

.navLinks{
  display: flex;
  flex-direction: row;
  gap: 100px;
}

.linkLeft{
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.linkRight{
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.linkLeft, .linkRight {
  display: flex;
  align-items: center;

  list-style: none;
  padding: 0;
  margin: 0;
}

.linkLeft a, .linkRight a {
  text-decoration: none;
  color:white;
  font-weight:bold;
}

.linkLeft a:hover{
    color: #ffcc00;
}

/* .linkLeft a.active {
  color:#ffcc00; Highlight active link
} */

/* Search Input Styling */
.linkRight input[type="search"] {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 40px;
}

/* SignIn Button Styling */
.linkRight button {
  padding: 6px 15px;
  border: none;
  background-color: #ffcc00;
  color:black;
  /* border-radius: 5px; */
  cursor: pointer;
  font-weight: bold;
  height:40px;
  width: 130px;
  border-bottom-right-radius: 40px;
}

.linkRight button:hover {
  background-color:rgb(2, 51, 40);
  color: white;
}

/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

/* Mobile Styles */
@media (max-width: 450px) {
  .hamburger {
    display: block;
    font-size: 40px;
  }

  .navBar{
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;

    position: static;
    background-color: transparent;
  }
  .navBar.active{
    display:flex;
    flex-direction: column;
    gap: 20px;
  }
  .navBar .logo{
    margin-left: 2px;
  }
  .navBar .logo{
    margin-left: 2px;
  }
  .navLinks{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin-top: 40px;
  }
  .linkLeft{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .linkLeft a:hover{
    color: #ffcc00;
  }
  .linkRight{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  .linkLeft, .linkRight {
    flex-direction: column;
    gap: 10px;
  }
  .linkRight input[type="search"] {
    width: 70%;
  }
  .linkRight button:hover {
  background-color:rgb(2, 51, 40);
  color: white;
  }
  .linkRight button {
    width: 27%;
  }
  .logo{
    margin-left: 140px;
  }
}







/*==== Section 1 ====*/
/*== About Us Banner ==*/
.about-banner {
  /* background: #e8f6e8 url("circuit-pattern.png") no-repeat center top;  */
  /* Replace circuit-pattern.png with your image */
  /* background-color:#ffcc00; */
  background-color:rgb(47, 101, 87);
  border: 5px solid #ffcc00;
  background-size: cover;
  text-align: center;
  padding: 60px 20px;
  width: 50%;
  margin-top: 150px;
  margin-left: 380px;
  border-radius: 20px 20px 0 0; /* Rounded top corners */
}

.about-banner-content {
  max-width: 900px;
  margin: auto;
}

.about-banner .breadcrumb {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.about-banner .breadcrumb a {
  color:white; /* yellow-orange link */
  text-decoration: none;
  font-weight: 500;
}

.about-banner .breadcrumb span {
  color: #000;
  font-weight: 600;
}



.about-banner h1 {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  color:#ffcc00;
  margin-top: 30px;
  cursor: pointer;
  /* font-family: cursive; */
}

/* Create underline using ::after */
.about-banner h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* space below text */
  width: 0;
  height: 3px;
  background-color:#ffcc00; /* underline color */
  animation: underlineGrow 1s ease infinite;
  animation-delay: 0.3s; /* little delay for effect */
}

/* Keyframes */
@keyframes underlineGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}


/* Media query for mobile screens 450px and below */
@media (max-width: 450px) {
  .about-banner {
    width: 90%;             /* Take almost full width */
    margin: 100px auto 0;   /* Center horizontally, adjust top margin */
    padding: 40px 15px;     /* Reduce padding for smaller screens */
    border-radius: 15px 15px 0 0; /* Slightly smaller rounding */
  }

  .about-banner h1 {
    font-size: 1.8rem;      /* Smaller heading */
  }

  .about-banner .breadcrumb {
    font-size: 14px;        /* Smaller breadcrumb text */
  }

  .about-banner .breadcrumb a {
    font-weight: 400;       /* Adjust weight if needed */
  }
}








/*=== section 1 ===*/
/*= contact info =*/
.contact-enhanced {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.contact-info {
  text-align: center;
  flex: 1 1 400px;
  /* background-color: rgb(43, 93, 81); */
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding-top: 100px;
  /* border: 5px solid white; */
}

.contact-info h2{
    margin-top: -40px;
    position: relative;
    display: inline-block;
    font-size: 3rem;
    color: #333;
    padding-bottom: 5px;
    margin-bottom: 20px;
    /* font-family: cursive; */
    font-size: 2em;
    margin-bottom: 15px;
    background:#ffcc00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color:#ffcc00;
  transform: scaleX(0);
  transform-origin: bottom right;
  animation: underlineAnimation 0.6s ease-out infinite;
  animation-delay: 0.5s; /* Delay before the animation starts */
}

@keyframes underlineAnimation {
  to {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
}

.contact-info p a {
    color: #ffcc00;
    font-weight: bold;
}

.btn-directions{
    background-color: #ffcc00;
    height: 40px;
    width: 150px;
    border-radius: 10px;
    border: none;
    margin-top: 30px;
    margin-bottom: 50px;
    font-weight: bold;
    border-bottom-right-radius: 200px;
    color: #555;
}

.btn-directions:hover {
  background:rgb(3, 48, 38);
  color: white;
}

.contact-enhanced > * {
  margin-bottom: 30px;
}

.contact-info p {
  margin-bottom: 20px;
  color:white;
  font-style: italic;
}

.contact-info ul {
  list-style: none;
}

.contact-info ul li {
  margin-bottom: 10px;
  font-weight: 500;
  color: white;
}

.contact-info ul li a {
  color:white;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info ul li a:hover {
  color:black;
  font-weight: bold;
}



/*= section 1's quick form =*/
.quick-form {
    margin-top: 150px;
    margin-bottom: 50px;
}

.quick-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quick-form input, .quick-form select, .quick-form button {
  padding: 12px;
  border: 3px solid #ffcc00;
  border-radius: 5px;
  font-size: 1rem;
}
.quick-form input, .quick-form select {
  flex: 1 1 200px;
}
.quick-form button {
  background-color: #ffcc00;
  border-bottom-right-radius: 200px;
  color:#555;
  font-weight: bold;
  border: none;
  cursor: pointer;
  flex: 1 1 100px;
  transition: background 0.3s;
}
.quick-form button:hover {
  background:rgb(3, 48, 38);
  color: white;
}


@media only screen and (max-width: 450px) {
  /* Contact Info Box */
  .contact-info {
    padding: 20px;
    backdrop-filter: none;   /* Improves performance on mobile */
    box-shadow: none;         /* Simplifies visuals on small screens */
    margin: 0 10px;
    border-radius: 10px;
    background-color: rgb(43, 93, 81);
    margin-top: 130px;
  }

  .contact-info h2 {
    font-size: 1.5rem;
    margin-top: 0;
  }

  /* Quick Form Responsiveness */
  .quick-form {
    margin-top: 130px;
    margin-bottom: 30px;
  }

  .quick-form form {
    flex-direction: column;
  }

  .quick-form input,
  .quick-form select,
  .quick-form button {
    margin-left: 30px;
    width: 80%;
    flex: none;
    margin-bottom: 10px;
  }
  .quick-form button {
    border-radius: 25px;
    border-bottom-right-radius: 200px;
  }

  /* Directions Button Adjustments */
  .btn-directions {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    border-radius: 25px;
    border-bottom-right-radius: 200px;
  }

  /* General Spacing Tweaks */
  .contact-enhanced > * {
    margin-bottom: 20px;
  }
}







/*=== section 2 ===*/
/*= social content =*/
.social-contact {
  text-align: center;
  margin-top: 50px;
}

.social-contact p {
  font-size: 2rem;
  color:#ffcc00;
  margin-bottom: 10px;
  font-weight: bold;
  /* font-family: cursive; */
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

/* Underline effect */
p::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color:#ffcc00;
  transform: scaleX(0);
  transform-origin: bottom right;
  animation: underlineAnimation 0.6s ease-out infinite;
  animation-delay: 0.5s; /* Delay before the animation starts */
}

/* Keyframes for the underline animation */
@keyframes underlineAnimation {
  to {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
}

.social-contact a:hover {
  color:white;
}

.socialLink{
    display: flex;
    flex-direction: row;
    justify-content:center;
    gap: 50px;
    margin-top: 40px;
}

.imgs{
    display: flex;
    flex-direction: column;
}

/* Apply blinking effect to all images within .imgs */
.imgs img {
  animation: blinkAnimation 1.5s infinite;
  font-size:10px;
  margin-left: 50px;
}

/* Define the blinking animation */
@keyframes blinkAnimation {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.imgs>a{
    /* font-size: 20px; */
    text-decoration: none; /* Removes underline */
    font-weight: bold; /* Makes text bold */
    margin-left: 10px; /* Adds space between image and text */
    /* color:rgb(2, 49, 39); */
    color:rgb(2, 39, 29);
    margin-top:10px;
    font-size:1.7rem;
}

/* Media Query for max-width 450px */
@media (max-width: 450px) {
  .social-contact p {
    font-size: 1rem;   /* smaller font */
    text-align: center;
  }

  .socialLink {
    flex-direction: column; /* stack vertically */
    gap: 20px;              /* smaller gap */
    margin-top: 20px;
  }

  .imgs {
    align-items: center; /* center images & text */
  }

  .imgs img {
    margin-left: 0;       /* reset left margin */
    width: 40px;          /* shrink image size */
    height: auto;
  }

  .imgs > a {
    font-size:20px;      /* reduce text size */
    margin-top: 5px;
    margin-left: 0;
  }
}










/*=== section 3 ===*/
/*= contact form =*/
.contact-section {
  /* background: linear-gradient(135deg, #f5f7fa, #c3cfe2); */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  margin-top: 100px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  gap: 40px;
  justify-content: space-between;
}


/*== Contact Form Styling ==*/
.contact-form {
  flex: 1 1 400px;
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border:5px solid #ffcc00;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: 500;
  color: white;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 3px solid rgb(2, 43, 33);
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}

/* .contact-form input:focus,
.contact-form textarea:focus {
  background-color:white;
  box-shadow: 0 0 8px rgba(37, 117, 252, 0.3);
} */

.contact-form button {
  padding: 12px 25px;
  /* background: linear-gradient(45deg, #6a11cb, #2575fc); */
  background:#ffcc00;
  color:#555;
  font-weight:bold;
  border: none;
  /* border-radius: 50px; */
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border-bottom-right-radius: 230px;
  width: 160px;
  margin-left:40%;
  margin-top: 40px;
  height: 50px;
}

.contact-form button:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background-color:rgb(2, 51, 40);
  color: white;
}


/*= faq =*/
.faq {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background-color:rgb(46, 103, 91);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
  margin-top: 150px;
}

.faq h3 {
  text-align: center;
  font-size: 2rem;
  color:yellow;
  margin-bottom: 1.5rem;
  /* font-family: garamond; */
}

.faq ul {
  list-style: none;
  padding: 0;
}

.faq li {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
  color: white;
}

.faq li:last-child {
  border-bottom: none;
}

/* Question Styling */
.faq li strong {
  font-size: 1.1rem;
  color:#ffcc00;
  cursor: pointer;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.faq li strong:hover {
  color:black;
}

/* Answer Styling */
.faq li p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  display: none;
}

/* Accordion Functionality */
.faq li.active p {
  display: block;
}

/* Responsive Design */
@media (max-width: 600px) {
  .contact-form form button {
    margin-left: 30px;
  }
  .faq {
    padding: 1rem;
  }

  .faq h3 {
    font-size: 1.5rem;
  }

  .faq li {
    margin-bottom: 0.8rem;
  }

  .faq li strong {
    font-size: 1rem;
  }

  .faq li p {
    font-size: 0.9rem;
  }
}




/* ===== Responsive Styling ===== */
@media (max-width:450px) {
  .contact-container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form button{
    margin-left: 100px;
  }
}