@import url("https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&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");
@import url("https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&display=swap");
html,
body {
  overflow-x: hidden;
}

:root {
  --primary-color: #021003;
  --secondary-color: #ddc723;
  --white-color: #ffffff;
  --black-color: #000000;
  --green-color: #106416;
  --light-green-color: #538914;
  --lightGyay: #393939;
  --light-purple: #efe6f9;
  --spacing: 1rem;
  --text-shadow: 1px -1px 4px #e7f4d3;
  --secondary-font: "Arapey", serif;
  --primary-fonts: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
}

body {
  font-family: var(--primary-fonts);
}

p {
  font-size: 14px;
  font-family: var(--primary-fonts);
}

.title {
  font-size: 86px;
  font-weight: 800;
}

header {
  padding: 1.5rem 2rem;
  position: relative;
  background: var(--secondary-color);
}

header .navbar {
  padding: 0;
  position: relative;
  z-index: 999;
}

header .dropdown-menu {
  background-color: var(--primary-color);
}

header .dropdown-item {
  color: var(--white-color);
}

header .nav-link {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--primary-fonts);
  position: relative;
}

header .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #24814a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 99999;
}

header .dropdown-item.active,
header .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: #66226a;
}

header .dropdown-item:focus,
.dropdown-item:hover {
  background-color: #b832c1;
  color: var(--bs-dropdown-link-active-color);
}

header .dropdown-menu[data-bs-popper] {
  min-width: 260px;
}

header a.dropdown-item {
  padding: 9px 10px;
}

header .navbar-nav .nav-link.active,
header .navbar-nav .nav-link.show {
  color: #24814a;
}
/* Hover effect */
header .navbar-nav .nav-link:hover::before {
  transform: scaleX(1);
}

header .navbar-nav .nav-link:hover {
  color: #24814a;
}

header .navbar-nav .nav-link.active {
    color: #24814a;
}

header .navbar-nav .nav-link.active, header .navbar-nav .nav-link.show {
      color: #24814a;
}
.nav-link:focus, .nav-link:hover {
   color: #24814a;
}


/* Active state */
header .navbar-nav .nav-link.active::before {
  transform: scaleX(1);
}

header .navbar-nav .nav-item {
  padding: 0 15px;
}
.nav-link:focus,
.nav-link:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  border-color: #000; /* Optional: white border */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}

.navbar-brand {
  max-width: 200px;
}

.navbar-brand img {
  width: 100%;
}

header ul.navbar-nav.mx-auto {
  position: relative;
  right: 20px;
}

/* Banner Css St */
.Banner_Sec {
  background-image: url("../images/homer-banner.jpg");
  background-size: cover;
  padding: 1rem 0;
  min-height: 670px;
  background-attachment: fixed;
  background-position: center center;
}

.Banner_Content {
  font-family: var(--secondary-font);
  color: var(--white-color);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Banner_Content h1 {
  font-size: 240px;
  text-transform: uppercase;
  line-height: 160px;
}

.Banner_Content h2 {
  font-size: 240px;
  line-height: 160px;
  text-transform: uppercase;
}
.Banner_Content h3 {
  font-size: 68px;
  line-height: 90px;
  text-transform: uppercase;
}

.small_para {
  font-size: 35px;
  font-family: var(--secondary-font);
  text-align: center;
  padding: 1rem;
  margin: 1rem;
  line-height: 34px;
}

.Social_Icons {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.Social_Icons li {
  list-style: none;
  border: 1px solid #877911;
  margin: 0 5px;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0000000a;
}

.Social_Icons li a {
  color: var(--black-color);
}

.Social_Icons li:hover {
  background: #24814a;
}

.Social_Icons li:hover .fab{
  color:#FFF
}

.btn-primary {
  border-radius: 0;
  color: var(--black-color);
  padding: 1rem 2rem;
  font-size: 16px;
  font-family: var(--primary-fonts);
  background-color: var(--secondary-color);
  border: var(--primary-color);
  box-shadow: 8px 8px 1px #ddc72347;
  font-weight: 400;
}

.btn-primary:hover {
  background-color: var(--primary-color);
}

.btn-secondary {
  border-radius: 0;
  color: var(--white-color);
  padding: 1rem 2rem;
  font-size: 16px;
  font-family: var(--primary-fonts);
  background-color: var(--primary-color);
  border: var(--primary-color);
  box-shadow: 8px 8px 1px #00000047;
  font-weight: 400;
}

.btn-secondary:hover {
  background-color: var(--light-green-color);
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: var(--white-color) !important;
  background-color: var(--black-color) !important;
  border-color: var(--black-color) !important;
}

.me-2 {
  margin-left: 10px;
}

/* AboutSec CSS Start */

.AboutSec {
  position: relative;
}
/* 
.AboutSec:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 76%;
    background-image: url(../images/book-cover.png);
    opacity: 0.1;
    background-position: center center;
    left: 0;
    right: 0;
    background-size: 7%;
    background-repeat: no-repeat;
}  */

.AboutSec h4 {
  font-size: 24px;
  font-family: var(--secondary-font);
  color: var(--light-green-color);
  font-style: italic;
  font-weight: 400;
}

.AboutSec h3 {
  /* line-height: 160px; */
  text-transform: capitalize;
  font-size: 70px;
  font-weight: 900;
  color: var(--green-color);
  font-family: var(--secondary-font);
}


.AboutSec p {
  font-family: var(--primary-font);
  font-size: 15px;
  color: #999999;
  padding-right: 4rem;
  line-height: 27px;
  text-align: left;
}

.Section {
  padding: 3rem;
}

/*  AuthorSec Css St */
.AuthorSec {
  background-color: var(--primary-color);
}

.AuthorSec h4 {
  font-style: italic;
  color: #ffffff;
  font-size: 24px;
}

.AuthorSec h3 {
  color: #ffffff;
  text-transform: capitalize;
  font-size: 70px;
  font-weight: 900;
  font-family: var(--secondary-font);
}

.AuthorSec p {
  color: var(--white-color);
  line-height: 25px;
  font-weight: 400;
}

/*  Why_wrote */
.Why_wrote {
  background-color: var(--secondary-color);
  padding: 2rem;
}

.Why_wrote h3 {
  font-size: 60px;
  font-weight: 600;
  color: var(--black-color);
}

.Why_wrote p {
  color: var(--black-color);
  line-height: 28px;
  padding-left: 10px;
}

.row_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BlogSec Css */

.BlogSec h2 {
  color: var(--green-color);
  text-transform: capitalize;
  font-size: 60px;
  font-weight: 900;
  font-family: var(--secondary-font);
}

.blog_heading{
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 900;
  color: var(--green-color);
  font-family: var(--secondary-font);
}

.Blog_Sec h1{
  font-size: 60px !important;
  line-height: 60px;
}

.BlogContent h3{
  font-size: 45px;
}

.stretched-link {
  /* text-decoration: none;
    padding: 10px 2px;
    color: #958619;
    font-size: 15px;
    font-weight: 500; */

  border-radius: 0;
  color: var(--black-color);
  padding: 0.7rem;
  font-size: 14px;
  font-family: var(--primary-fonts);
  background-color: var(--secondary-color);
  border: var(--primary-color);
  box-shadow: 8px 8px 1px #ddc7233d;
  font-weight: 400;
  text-decoration: none;
  max-width: 100px;
}

.stretched-link:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}


.small-title{
  font-family: var(--secondary-font);
  font-size: 20px;
  letter-spacing: 1px;
}

/* Blog_Content Css */
.Blog_Content h3 {
  padding: 10px 0;
  color: var(--primary-color);
}

.Blog_Content p {
  font-size: 14px;
  color: #878787;
  font-weight: 300;
  padding: 10px 0;
}

.date {
  font-size: 13px;
  color: #878787;
}

.blog_img img {
  height: 100%;
  object-fit: cover;
}

/* Logo Sec St */
.OurLogos {
    display: inline-block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
}

.logo-slider .slick-slide img{
  width: 250px;
  height:auto;
}

.OurLogos .logo-slider .slick-slide{
  margin: 0 50px;
}

/* Logo Sec End */

/* Contact Section */
.Contact_Banner {
  /* background-image: url(../images/banner/contact-banner.png);
      background-size: cover; */
  background-color: var(--primary-color);
  padding: 3rem 0;
  min-height: 600px;
  max-height: 604px;
  display: flex;
  align-items: center;
}

.contact-section {
  /* background: url('../images/bg1.png') no-repeat;
      background-position: bottom; */
  background-color: var(--primary-color);
  color: white;
  padding: 50px 20px;
  text-align: center;
  position: relative;
}

.contact-section h2 {
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 80px;
  text-transform: capitalize;
}
.contact-section p {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 600;
}
.contact-section .form-control,
.contact-section select {
  border-radius: 0;
  padding: 12px 15px;
  border: 3px solid #ddc723;
  font-weight: 500;
  height: 65px;
}
.contact-section textarea {
  border-radius: 20px;
  padding: 12px 15px;
  min-height: 150px;
  border: none;
}
.send-btn {
  background: var(--secondary-color);
  color: #000;
  border-radius: 0;
  padding: 10px 25px;
  border: 2px solid #ddc723;
  font-weight: 500;
}

.send-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.GoogleMap {
  padding: 0 0 4rem;
}

.contact-info {
  padding: 4rem 1rem;
}

/* footer css st */
footer {
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
  background-color: var(--secondary-color);
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  z-index: 9;
}
.footer-desc {
  font-size: 13px;
  margin-top: 15px;
  padding-right: 4rem;
  color: #000;
  line-height: 26px;
  position: relative;
  z-index: 9;
}
.footer-links a {
  color: #000;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--primary-fonts);
}
.footer-links a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}
.social-icons.mt-3 {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons li {
  list-style: none;
}
.social-icons a {
  color: var(--black-color);
  margin-right: 10px;
  font-size: 18px;
  background: #bda809;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  text-decoration: none;
  width: 50px;
  height: 50px;
}

.social-icons a:hover {
  background-color: #000;
  text-decoration: none;
}

.social-icons a:hover .fa {
  color: #fff !important;
}

.social-icons a .fa {
  color: var(--black-color);
}

.social-icons a:hover {
  color: var(--white-color);
}

/* Copy_Right css st */
.Copy_Right {
  text-align: center;
  font-size: 14px;
  background: var(--primary-color);
  padding: 9px;
}

.Copy_Right p {
  color: #fff;
  margin: 0;
  font-size: 14px;
}

/* About Us Sec Css St */
.Inner_Banner{
  background-image: url(../images/homer-banner.jpg);
  background-size: cover;
  padding: 1rem 0;
  min-height: 350px;
  background-attachment: fixed;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.Inner_Banner h1{
  font-size: 80px;
}


/* Contact_Us Css ST */
.Contact_Us{
  padding: 2rem 0 2rem;
}

.Contact_Us h2{
  font-size: 60px;
}

.Contact_Us h2, .Contact_Us p{
  text-align: center;
}

.contact-info .fa-solid {
    font-size: 50px;    
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info  i.fa-brands.fa-square-whatsapp{
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.Contact_Us p{
    font-size: 18px;
}

.Contact_Us a{
  color:#000000;
  text-decoration: none;
}

/* Animation css st */
.pulse {
  animation: floatEffect 3s ease-in-out infinite;
}

@keyframes floatEffect {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px); /* move up */
  }
  100% {
    transform: translateY(0px);
  }
}



/* cursor css st */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 2;
  pointer-events: none;
}
.cursor div {
  position: absolute;
  display: grid;
  place-items: center;
}
.cursor div div {
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
  box-shadow: 0 0 50px 5px #d7abff6e;
}
.cursor div:nth-child(1),
.cursor div:nth-child(2) {
  width: 100%;
  height: 100%;
}
.cursor div:nth-child(1) {
  transition: transform 0.2s ease-out;
}
.cursor div:nth-child(2) {
  transition: transform 0.1s ease-out;
}
.cursor div:nth-child(2) div {
  background: #fff;
  border-radius: 50%;
  width: 4px;
  height: 4px;
}
/* cursor end */


/* Media Query */

@media (max-width: 1366px) {
  .Banner_Content h1 {
    font-size: 140px;
    line-height: 85px;
  }
  .Banner_Content h2 {
    font-size: 140px;
    line-height: 85px;
  }
  .small_para {
    font-size: 20px;
    line-height: 25px;
  }
  h3,
  .AboutSec h3,
  .Why_wrote h3,
  .contact-section h2 {
    font-size: 50px !important;
  }
  .Blog_Content h3 {
    font-size: 26px !important;
  }
  .AboutSec p {
    font-size: 12px;
  }
  .btn-primary,
  .btn-secondary,
  .contact-section p {
    font-size: 14px;
  }
  header .nav-link {
    font-size: 14px;
  }
  header .nav-link::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .AboutSec p {
    padding: 0;
  }
  .Banner_Content h1 {
    font-size: 100px;
    line-height: 50px;
  }
  .Banner_Content h2 {
    font-size: 100px;
    line-height: 50px;
  }
  .small_para {
    font-size: 20px;
    line-height: 25px;
  }
  h3,
  .AboutSec h3,
  .Why_wrote h3,
  .contact-section h2,
  .BlogSec h2 {
    font-size: 40px !important;
  }
  .Blog_Content h3 {
    font-size: 2px !important;
  }
  .AboutSec p {
    font-size: 12px;
  }
  .btn-primary,
  .btn-secondary,
  .contact-section p {
    font-size: 14px;
  }
  header .nav-link {
    font-size: 14px;
  }
  header .nav-link::before {
    display: none;
  }
  .Section {
    padding: 2rem 1rem;
  }
  .AuthorSec h4 {
    margin-top: 30px;
  }
  .Social_Icons,
  .social-icons.mt-3 {
    justify-content: start;
  }
  .social-icons a{
    width: 30px;
    height: 30px;
  }

  .Banner_Content h1{
    font-size: 50px;
  }
}
