/* Shared Styles (from style.css, aboutUsStyles.css, privacyStyles.css) */
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Body */
body {
  background-color: #292c35;
  color: #e1e0e0;
  font-family: Arial, sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Navbar */
.navbar {
  background-color: #292c35;
  border-bottom: 2px solid #e4d00a;
  padding: 20px 0;
  position: relative;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-title {
  color: #e4d00a;
  font-size: 24px;
  display: inline-block;
}

.navbar-nav {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #e4d00a;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e4d00a;
  transition: width 0.5s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #e4d00a;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Footer */
.footer {
  border-top: 2px solid #e4d00a;
  padding: 20px 0;
  margin-top: 100px;
  text-align: center;
}

.footer p {
  color: #e4d00a;
}

.footer span {
  font-weight: bold;
}

/* Shared Section Styles */
section h1 {
  color: #e4d00a;
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  margin: 50px 0 30px;
  white-space: nowrap;
}

/* Styles from style.css (Home Page) */
@keyframes gradient {
  0% {
    background-position: 20% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 20% 50%;
  }
}

/* Banner */
.banner {
  background-image: url("Images/Hero1-copy.jpg");
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 80px;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000005a;
}

.banner-content {
  white-space: nowrap;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.banner-content h1 {
  color: #e4d00a;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner-button {
  cursor: pointer;
  position: relative;
  padding: 10px 48px;
  font-size: 18px;
  color: #e4d00a;
  border: 2px solid #e4d00a;
  border-radius: 10px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.banner-button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: #e4d00a;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.banner-button:hover::before {
  scale: 4;
}

.banner-button:hover {
  color: #212121;
  scale: 1.1;
  border-radius: 20px;
  box-shadow: 0 0px 20px #e4ce0a62;
}

.banner-button:active {
  scale: 1;
}

/* Sections */
.section-divider {
  border: 2px solid #e4d00a;
  margin: 100px 0 70px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 50px;
  row-gap: 80px;
}

.service-header {
  color: #e4d00a;
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  margin: 50px 0 10px;
  grid-column: 1/-1;
}

.service-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(#292c35, #292c35) padding-box,
    linear-gradient(140deg, transparent 50%, #e4d00a, blue) border-box;
  border: 2px solid transparent;
  box-sizing: border-box;
  border-radius: 16px;
  background-size: 200% 100%;
  animation: gradient 5s ease infinite;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 15px;
}

.service-box h2 {
  color: #e4d00a;
  font-size: 33px;
}

.service-box p {
  font-size: 13px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 13px;
}

.service-box img {
  border-bottom: 2px solid #e4d00a;
  border-radius: 16px 16px 0px 0px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}

.feature-card {
  text-align: center;
}

.feature-card h3 {
  color: #e4d00a;
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-icon-line {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.hr-line {
  flex: 1;
  border-bottom: 1px solid #e1e0e0;
}

.feature-icon {
  color: #ffc107;
  font-size: 24px;
  margin: 0 10px;
}

.feature-card p {
  color: #e1e0e0;
}

/* Choose Us Grid */
.choose-us-outer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.choose-us-inner-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr;
}

.choose-us-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 20px 20px;
  background-color: #23232e;
  color: black;
  border-left: #ffc107 2px solid;
  border-radius: 5px;
}

.choose-us-card-heading {
  color: #ffffff;
}

.choose-us-card-text {
  font-size: 12px;
  color: #e0e0e0;
}

.choose-us-flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.choose-us-head {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.choose-us-head span {
  color: #ffc107;
}

.choose-us-heading {
  font-size: 45px;
  color: #ffffff;
}

.choose-us-subheading {
  font-size: 13px;
  color: #cccccc;
  letter-spacing: 1px;
}

.choose-us-text {
  font-size: 14px;
  line-height: 1.3;
}

.brand {
  color: #e4d00a;
  font-weight: bold;
}

/* Testimonials */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  text-align: center;
  border-right: 2px solid #e4d00a;
  padding: 0 15px;
}

.testimonial:last-child {
  border-right: none;
}

.testimonial blockquote p {
  color: #e1e0e0;
  margin-bottom: 20px;
}

.testimonial figcaption {
  color: #e4d00a;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial img {
  width: 55px;
  height: auto;
  border-radius: 100px;
  margin-right: 7px;
}

/* Contact Us */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  color: #e4d00a;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  padding: 10px;
  border: 1px solid #e1e0e0;
  border-radius: 5px;
  background: #292c35;
  color: #e1e0e0;
  font-size: 16px;
}

.form-group input::placeholder {
  color: #e1e0e0;
  opacity: 0.7;
}

/* Styles from aboutUsStyles.css (About Us Page) */
section .container.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section .container.about-content p {
  margin-bottom: 10px;
}

.aligner {
  height: 87vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* .about-us {
  height: 55vh;
} */

/* Styles from privacyStyles.css (Privacy Page) */
section .container.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section .container.privacy-content p {
  margin-bottom: 10px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.accordion-item {
  box-shadow: 0px 0px 4px #e4d00a;
  border-radius: 10px;
}

.accordion-button {
  background-color: #292c35;
  color: #e4d00a;
  padding: 1rem;
  width: 100%;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.accordion-button:hover {
  background-color: #212228;
}

.accordion-button[expanded="true"] {
  border-bottom: 1px solid #e4d00a;
}

.accordion-button::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-button[expanded="true"]::after {
  content: "−";
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0px 10px 0 10px;
  background-color: #292c35;
}

.accordion-panel ul {
  margin-top: 5px;
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.3;
}

.accordion-panel.open {
  padding: 1rem;
}

/* Extra small (phones) */
@media (max-width: 480px) {
  /* Shared Styles */
  .hamburger {
    display: block;
  }
  .hamburger img {
    height: 20px;
    width: 20px;
    color: #e4d00a;
  }
  .navbar-nav {
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #292c35;
    padding: 0 15px;
    border-top: 2px solid #e4d00a;
    transition: max-height 0.5s linear;
    z-index: 100;
  }
  .navbar-nav.active {
    max-height: 400px;
    padding: 15px;
  }
  .nav-item {
    margin: 10px 0;
  }
  .nav-link {
    font-size: 18px;
  }

  /* Home Page Styles */
  .banner-content h1 {
    font-size: 30px;
  }
  .banner-button {
    padding: 10px 20px;
    font-size: 16px;
  }
  .service-header {
    font-size: 30px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .choose-us-outer-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .choose-us-inner-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-row {
    grid-template-columns: 1fr;
  }
  .testimonial:last-child {
    border-right: 2px solid #e4d00a;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
}

/* Small devices (phones + phablets) */
@media (min-width: 481px) and (max-width: 767px) {
  /* Shared Styles */
  .hamburger {
    display: block;
  }
  .hamburger img {
    height: 20px;
    width: 20px;
    color: #e4d00a;
  }
  .navbar-nav {
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #292c35;
    padding: 0 15px;
    border-top: 2px solid #e4d00a;
    transition: max-height 0.5s linear;
    z-index: 100;
  }
  .navbar-nav.active {
    max-height: 400px;
    padding: 15px;
  }
  .nav-item {
    margin: 10px 0;
  }
  .nav-link {
    font-size: 18px;
  }

  /* Home Page Styles */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .choose-us-outer-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-row {
    grid-template-columns: 1fr;
  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 1024px) {
  /* NAVBAR */
  .hamburger {
    display: block;
  }
  .hamburger img {
    height: 20px;
    width: 20px;
    color: #e4d00a;
  }
  .navbar-nav {
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #292c35;
    padding: 0 15px;
    border-top: 2px solid #e4d00a;
    transition: max-height 0.5s linear;
    z-index: 100;
  }
  .navbar-nav.active {
    max-height: 400px;
    padding: 15px;
  }
  .nav-item {
    margin: 10px 0;
  }
  .nav-link {
    font-size: 18px;
  }

  /* Home Page Styles */
  .banner-content h1 {
    font-size: 36px;
  }
  .banner-button {
    padding: 10px 20px;
    font-size: 16px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .choose-us-outer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial {
    border-right: none;
    border-bottom: 2px solid #e4d00a;
    padding-bottom: 20px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
}

/* Large devices (small laptops) */
@media (min-width: 1025px) and (max-width: 1280px) {
  .choose-us-outer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Extra large devices (desktops) */
@media (min-width: 1281px) and (max-width: 1600px) {
}
