/* Global Reset */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 1rem;
}

/* Base Typography */
body {
  font-family: 'Bebas Neue', sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.2;
  font-size: 16px;
}

header {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
  z-index: 1000;
}

header img {
  height: 50px;
  width: auto;
  transition: transform 0.5s;
}
header img:hover {
  transform: rotate(360deg);
}

header .fw-bold {
  font-size: 20px;
  letter-spacing: 1px;
  color: white;
}

header .text-primary {
  color: #ff6600 !important;
}

/* Nav links */
header .nav-link {
  color: white;
  font-weight: 600;
  margin-right: 10px;
  padding: 8px 30px;
  transition: all 0.3s ease-in;
  border-radius: 5px;
}

header .nav-link:hover,
header .nav-link.active {
  background-color: #ff6600;
  color: white;
  font-weight: 800;
}

/* home */
#home {
  background: url('images/pressbanner.jpeg') center center/cover no-repeat;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#home h1 {
  font-size: 3rem;
  color:white;
  font-weight: 700;
  margin-bottom: 20px;
}

#home p.lead {
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 25px;
}

#home .btn {
  font-size: 1rem;
  padding: 12px 28px;
  background-color: #fff;
  color: #ff6600;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

#home .btn:hover {
  background-color: #ff6600;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

#home .container {
  position: relative;
  z-index: 1;
}

/* about section */
#about {
  padding: 60px 20px;
}
#about .container {
  background-color: #FFDDAE;
  border-radius: 50px;
}
#about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  position: relative;
}
#about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff6600;
  margin: 10px auto 0;
}
#about p {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* our services */
#services {
  background-color: #fff;
  padding: 60px 20px;
}

#services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  position: relative;
}
#services h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff6600;
  margin: 10px auto 0;
}
#services h3 {
  color: orangered;
}

.card {
  background-color: #fcc36988;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.card:hover {
  transform: translateY(-8px);
  background-color: #f39d129c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-body i {
  color: orangered;
  font-size: 2.5rem;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* quote section */
#quote {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

#quote h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

#quote h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #f39c12;
  margin-top: 10px;
}

#quote ul {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
}

#quote ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 10px;
  color: #444;
}

#quote ul li::before {
  content: "✔";
  color: #28a745;
  position: absolute;
  left: 0;
  font-weight: bold;
}

#quoteForm .form-control {
  border-radius: 8px;
  font-size: 0.95rem;
}

#quoteForm .btn {
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  background-color: #f39c12;
  border: 1px solid black;
  transition: background-color 0.3s ease;
}

#quoteForm .btn:hover {
  background-color: #ff6600;
}

/* our works section */
#works {
  background-color: #ffffff;
  padding: 60px 20px;
}

#works h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}

#works h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #f39c12;
  margin: 10px auto 0;
}

#works .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#works .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#works .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

#works .card-body {
  background-color: #FFDDAE;
  border-radius: 20px;
}

#works .card-body:hover {
  background-color: rgba(255, 166, 0, 0.582);
}

#works .btn {
  border-radius: 30px;
  border-color: red;
  padding: 8px 20px;
  font-weight: 500;
  background-color: #f39d128e;
  color: black;
  transition: background-color 0.3s ease;
}

#works .btn-outline-primary:hover {
  background-color: #fff;
  color: #f39c12;
  border: 2px solid black;
}

/* contact */
#contact {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

#contact h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}

#contact h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #f39c12;
  margin: 10px auto 0;
}

#contact p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 5px;
}

#contact .btn-success {
  border-radius: 30px;
  padding: 8px 24px;
  font-weight: 500;
  margin-top: 10px;
}

#contact .form-control {
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 1rem;
}

.btn-primary {
  background-color: #f39c12;
  border: 2px solid black;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #ff6600;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* footer */
/* footer */
footer {
  background-color: #212529;
  color: #fff;
  font-size: 0.95rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

footer h5 {
  color: #ffc107;
  font-weight: bold;
  margin-bottom: 1rem;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li {
  position: relative;
  margin-bottom: 6px;
  color: #ccc;
  transition: color 0.3s ease;
}

footer ul li::before {
  content: "•";
  color: #f39c12;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

footer ul li:hover {
  color: #fff;
}

footer p {
  margin-bottom: 0.5rem;
  color: #ccc;
}

footer i {
  margin-right: 8px;
  color: #ffc107;
  font-size: 20px;
}

footer i:hover {
  color: skyblue;
  transform: rotate3d(1, 1, 0, 45deg);
}

.footer-social {
  margin-top: 15px;
}

footer iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-top: 15px;
}

.forphone {
  text-decoration: none;
  color: #ccc;
}

.forph {
  margin-left: 30px;
  text-decoration: none;
  color: #ccc;
}

.mail {
  font-size: 16px;
  color: #ccc;
  margin: 20px 0;
}

.mail i {
  color: #f39c12;
  margin-right: 8px;
}

.mail ul {
  padding-left: 24px;
  margin-top: 10px;
}

.mail ul li {
  margin-bottom: 6px;
}

.mail ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.mail ul li a:hover {
  text-decoration: underline;
}

/* ============================= */
/* Responsive Media Queries */
/* ============================= */

/* Laptop & Tablet screens */
@media (max-width: 992px) {
  footer {
    font-size: 0.9rem;
    text-align: center;
  }
  .forph {
    margin-left: 15px;
  }
  footer iframe {
    height: 250px;
  }
}

/* Mobile screens */
@media (max-width: 600px) {
  footer {
    font-size: 0.85rem;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  .forph {
    margin-left: 0;
    display: block;
    margin-top: 10px;
  }
  .mail {
    font-size: 14px;
  }
  footer iframe {
    height: 200px;
  }
}

/* ✅ Corrected & Unified Media Queries */
@media (max-width: 768px) {
  body {
    font-size: 19px;
  }
@media (max-width: 480px) {
  body {
    font-size: 24px; /* mobile phones */
  }
}
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav .nav-item {
    padding: 5px 0;
  }

  header nav ul {
    flex-direction: column;
    width: 100%;
    padding-top: 10px;
  }

  header .nav-item,
  header .nav-link {
    width: 100%;
    display: block;
  }

  #home h1 {
    font-size: 2.2rem;
  }

  #home p.lead {
    font-size: 1rem;
  }

  footer .col-md-3 {
    margin-bottom: 1.5rem;
  }
}
/* =========================
   MEDIA QUERIES
========================= */

/* Laptops & Small Desktops */
@media (max-width: 992px) {
  body {
    font-size: 18px;
  }

  #home h1 {
    font-size: 2.5rem;
  }

  #about h2,
  #services h2,
  #works h2,
  #contact h2 {
    font-size: 2rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  body {
    font-size: 19px;
  }

  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav .nav-item {
    padding: 5px 0;
  }

  header nav ul {
    flex-direction: column;
    width: 100%;
    padding-top: 10px;
  }

  header .nav-item,
  header .nav-link {
    width: 100%;
    display: block;
    text-align: left;
  }

  #home h1 {
    font-size: 2.2rem;
  }

  #home p.lead {
    font-size: 1rem;
  }

  footer .col-md-3 {
    margin-bottom: 1.5rem;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  body {
    font-size: 21px; /* bigger text for readability */
  }

  #home {
    padding: 60px 15px;
  }

  #home h1 {
    font-size: 1.8rem;
  }

  #home p.lead {
    font-size: 0.9rem;
  }

  #about h2,
  #services h2,
  #works h2,
  #contact h2 {
    font-size: 1.6rem;
  }

  .card-body i {
    font-size: 2rem;
  }

  .mail, .forphone, .forph {
    font-size: 0.9rem;
  }
}
