@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Raleway&family=Ubuntu:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Common styles for sections */
section {
  padding: 100px 0;
}

.max-width {
  max-width: 1300px;
  padding: 0 80px;
  margin: auto;
}

.about,
.services,
.contact,
footer {
  font-family: "Raleway", sans-serif;
}

section .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
}

section .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 180px;
  height: 3px;
  background: #111;
  transform: translateX(-50%);
}

section .title::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  font-size: 20px;
  color: #6e6e6e;
  padding: 0 5px;
  background: #fff;
  transform: translateX(-50%);
}

/* Navbar styling */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.sticky {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.navbar .logo a {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.navbar.sticky .logo a {
  color: #000;
}

.navbar .menu li {
  list-style: none;
  display: inline-block;
}

.navbar .menu li a {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  border-radius: 20px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.navbar.sticky .menu li a {
  color: #000;
}

.menu-btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.navbar.sticky .menu-btn i {
  color: #000;
}

.scroll-up-btn {
  position: fixed;
  height: 45px;
  width: 45px;
  background: crimson;
  right: 30px;
  bottom: 10px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  z-index: 9999;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid crimson;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.scroll-up-btn.show {
  bottom: 30px;
  pointer-events: auto;
  opacity: 1;
}

.scroll-up-btn:hover {
  color: crimson;
  background: #fff;
}

.home {
  display: flex;
  height: 100vh;
  background: url("../images/IMG_20240124_233124.jpg") no-repeat center;
  background-size: cover;
}

.home .max-width {
  width: 100%;
  display: flex;
}

.home .home-content {
  margin-right: 50px;
}

.home .home-content .text-2 {
  font-size: 55px;
  font-weight: 600;
  color: #000000;
}

.home .home-content .text-3 {
  font-size: 60px;
  color: #000000;
}

.home .home-content .text-4 {
  font-size: 50px;
  color: #000000;
}

.home .home-content a {
  display: inline-block;
  background: crimson;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  padding: 10px 30px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid crimson;
  transition: all 0.3s ease;
}

.home .home-content a:hover {
  color: crimson;
  background: #fff;
}

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

.about .left {
  width: 45%;
}

.about .right {
  width: 55%;
}

.about .right .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about .right p {
  text-align: justify;
}

.about .right a {
  display: inline-block;
  background: crimson;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 30px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid crimson;
  transition: all 0.3s ease;
}

.about .right a:hover {
  color: crimson;
  background: #fff;
}

.services .serv-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.services .serv-content .card {
  width: calc(33% - 10px);
  background: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 35px 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.services .serv-content .card:hover {
  transform: translateY(-10px);
}

.services .serv-content .card .box {
  transition: all 0.3s ease;
}

.services .serv-content .card:hover .box {
  transform: translateY(-10px);
}

.services .serv-content .card .box .text {
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.services .serv-content .card .box p {
  text-align: justify;
}

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

.contact .contact-content .column {
  width: calc(50% - 30px);
}

.contact .contact-content .column .text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-content .left .icons {
  margin: 10px 0;
}

.contact .contact-content .left .icons .row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact .contact-content .left .icons .row i {
  font-size: 30px;
  color: crimson;
  margin-right: 10px;
}

.contact .contact-content .left .icons .row .info {
  display: flex;
  flex-direction: column;
}

.contact .contact-content .left .icons .row .info .head {
  font-weight: 500;
}

.contact .contact-content .left .icons .row .info .sub-title {
  color: #333;
}

footer {
  background: #111;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
