/* General */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--primary-font);
}

:root {
  /* Color */
  --primary-clr: #0041a1;
  --secondary-clr: #a09301;
  --bg-light: #ffffff;
  --bg-gradient-light: linear-gradient(
    to bottom right,
    rgb(142, 50, 0, 0.123),
    rgb(142, 50, 0, 0.123)
  );
  --bg-gradient-dark: linear-gradient(to bottom right, #0040a1d8, #a09301da);

  /* Shadow */
  --shadow-dark: 0 0.5rem 0.375rem -0.375rem rgb(0 0 0 /40%);
  --shadow-light: 0 0.5rem 0.375rem -0.375rem rgba(255, 255, 255, 0.603);

  /* Text Style */
  --primary-font: "Poppins", sans-serif;
  --heading-font: "Playfair Display", serif;
  --heading-clr: #0041a1;
  --subheading-clr: #a09301;
  --text-white: #ffffff;
  --text-dark: #3d3d3d;
  --text-grey: #dadada;
}

body {
  font-family: var(--primary-font);
  background-color: var(--bg-light);
}

a {
  text-decoration: none;
  color: var(--text-grey);
}

.section-padding {
  padding: 6rem 0;
}

.section-heading {
  font-family: var(--heading-font);
  letter-spacing: 10px;
  font-weight: 500;
  color: var(--heading-clr);
  text-align: center;
  font-size: 3rem;
  text-transform: uppercase;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.divider .left,
.right {
  width: 40px;
  border: 2px solid rgba(54, 54, 54, 0.74);
  margin: 10px;
}

.btn1 {
  padding: 10px 20px;
  background-color: var(--primary-clr);
  color: var(--text-white);
  font-size: 1rem;
  line-height: 1.5rem;
  border-radius: 20px;
  margin: 6px 6px 6px 0;
  width: 150px;
  text-align: center;
  box-shadow: var(--shadow-dark);
  transition: all 0.5s ease-in;
}

.btn1:hover {
  background-color: rgba(142, 50, 0, 0.747);
  color: var(--text-white);
  border-radius: 0;
}

.btn2 {
  padding: 10px 20px;
  background-color: var(--secondary-clr);
  color: var(--text-white);
  font-size: 1rem;
  line-height: 1.5rem;
  border-radius: 20px;
  margin: 6px 0 6px 6px;
  width: 150px;
  text-align: center;
  box-shadow: var(--shadow-dark);
  transition: all 0.5s ease-in;
}

.btn2:hover {
  background-color: rgba(0, 110, 127, 0.76);
  color: var(--text-white);
  border-radius: 0;
}

.wp-btn {
  bottom: 2%;
  right: 2%;
  width: 50px;
  position: fixed;
  z-index: 99999;
}

/* Navbar */

.header-wrapper .navbar {
  /* padding: 1.2rem 0; */
  box-shadow: var(--shadow-dark);
  background-color: var(--primary-clr);
  border-bottom: 5px solid var(--secondary-clr);
}

.header-wrapper .navbar .navbar-brand {
  color: var(--text-white);
  font-weight: 600;
}

.header-wrapper .navbar .logo {
  width: 50px;
}

.header-wrapper .navbar-toggler {
  border: 0;
  line-height: 1.5;
  background-color: #ffffff;
  color: var(--text-white);
}

.header-wrapper .navbar-toggler:focus {
  box-shadow: none;
}

.header-wrapper .nav-item {
  margin: 0 0.625rem;
}

.header-wrapper .nav-item .nav-link {
  font-family: var(--primary-font);
  letter-spacing: 2px;
  color: var(--text-white);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.5s ease-in;
}

.header-wrapper .nav-item .nav-link:hover {
  font-weight: 600;
  transform: scale(1.2);
}

/* Hero Section */
.hero-wrapper {
  background-image: url(../img/banner.jpg);
  width: 100%;
  height: 100vh;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding-left: 5rem;
  position: relative;
}

.hero-wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    rgb(0, 0, 0),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.8;
}

.hero-wrapper h1 {
  color: var(--text-white);
  font-size: 3.5rem;
  letter-spacing: 3px;
  font-weight: 500;
  font-family: var(--heading-font);
  position: relative;
  z-index: 9999;
}

.hero-wrapper p {
  color: var(--text-grey);
  width: 30%;
  font-size: 1.2rem;
  line-height: 1.7rem;
  position: relative;
  z-index: 9999;
}

.hero-wrapper .btn-wrapper {
  display: flex;
  position: relative;
  z-index: 9999;
}

/* About */
.about-wrapper .left {
  background-image: url(../img/about.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-wrapper h1 {
  color: var(--heading-clr);
  margin-bottom: 20px;
  font-family: var(--heading-font);
  font-weight: 500;
  letter-spacing: 5px;
  font-size: 3rem;
}

.about-wrapper .btn2 {
  width: 150px;
  text-align: center;
  box-shadow: var(--shadow-dark);
}

.about-wrapper p:nth-child(2) {
  font-style: italic;
  font-weight: 500;
}

.about-wrapper p:nth-child(3) {
  margin-bottom: 30px;
}

/* Quotes Section */
.quote-wrapper {
  background-image: var(--bg-gradient-dark), url(../img/bg1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.quote-wrapper h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.quote-wrapper .btn2 {
  box-shadow: var(--shadow-light);
}

/* Service Section */
.service-wrapper {
  background-image: var(--bg-gradient-light);
}

.service-wrapper .col-md-4 .card {
  box-shadow: var(--shadow-dark);
  height: 300px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 30px;
  transition: all 0.2s;
}

.service-wrapper .col-lg-6 {
  text-align: center;
  transition: all 0.2s;
}
.service-wrapper .col-lg-6:hover {
  transform: scale(1.02);
}
.service-wrapper .col-lg-6 img {
  width: 70%;
  margin: 0 auto;
}

.service-wrapper .card:hover {
  transform: scale(1.05);
  box-shadow: 0 0.05rem 0.8rem 0.2rem rgba(0, 0, 0, 0.226);
}

.service-wrapper .card-title {
  font-family: var(--primary-font);
  color: var(--subheading-clr);
  font-weight: 600;
  font-size: 1.5rem;
  /* letter-spacing: 5px; */
}

/* Main Feature */
.main-feature {
  text-align: center;
  padding: 50px;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  line-height: 3rem;
}

/* Main Feature */

/* Cta Section */
.cta-wrapper {
  background-image: var(--bg-gradient-dark), url(../img/bg2.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.cta-wrapper h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  /* letter-spacing: 5px; */
  word-spacing: 10px;
  font-weight: 700;
}

.cta-wrapper .btn2 {
  width: 200px;
  box-shadow: var(--shadow-dark);
}

/* Testimonials */
.testimonial-wrapper .content {
  padding: 3rem 2rem;
}

.testimonial-wrapper .img {
  background-image: url(../img/testimonial.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* map */
.map-wrapper {
  background-image: var(--bg-gradient-light);
}

.map-wrapper .location {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 50px 0 0 0;
}

.map-wrapper .location img {
  object-fit: cover;
  width: 100%;
}
/* Footer */
.footer-wrapper {
  background-color: var(--primary-clr);
  padding: 50px 0;
}

.footer-wrapper .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-gap: 50px;
}

.footer-wrapper .footer-heading {
  color: var(--text-white);
}

.footer-wrapper p {
  color: var(--text-grey);
}

.footer-wrapper .container .link {
  justify-self: center;
}

.footer-wrapper .container .link a {
  color: var(--text-grey);
}

.footer-wrapper .container .link a:hover {
  color: var(--subheading-clr);
}

.hr {
  background-color: #ff97dc;
  height: 2px;
  width: 80%;
  margin: 20px auto;
}

.footer-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-text p a {
  color: #ffd9f2;
  font-weight: 600;
}

.footer-text p a:hover {
  color: var(--subheading-clr);
}
