@import url("https://fonts.googleapis.com/css?family=Montserrat:500&display=swap");
@import url("https://fonts.googleapis.com/css?family=Dancing+Script&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");
::selection {
  background: #da481786;
  color: rgb(255, 255, 255);
}

::-webkit-scrollbar {
  width: 8px; 
}

::-webkit-scrollbar-track {
  background: rgba(224, 224, 224, 0.5); 
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #da4817, #da4817); 
  border-radius:10px; 
  transition: background 0.3s, transform 0.3s; 
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #da4817b7, #da4817b7); 
  transform: scale(1.1); 
}

.grid-background {
  position: fixed;  /* Ensures it covers the full screen */
  top: 0;
  left: 0;
  width: 100vw;  /* Covers full width */
  height: 100vh; /* Covers full height */
  z-index: -1;   /* Keeps it in the background */
  pointer-events: none; /* Prevents interference with other elements */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #111;
  font-family: "Open Sans", sans-serif;
  cursor: url("images/cursor1.png"), auto;
}

.loader-container {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.loader {
  display: flex;
  justify-content: space-between;
  width: 80px;
}

.loader div {
  width: 16px;
  height: 16px;
  background-color: #da4817;
  border-radius: 50%;
  animation: grow-shrink 2s infinite;
}

.loader div:nth-child(1) {
  animation-delay: 0s;
}

.loader div:nth-child(2) {
  animation-delay: 0.3s;
}

.loader div:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes grow-shrink {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

hr {
  border: none;
  height: 2px;
  background-color: rgb(255, 144, 125);
  opacity: 0.4;
}

header {
  height: 40vh;
  position: relative;
}

.black {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

nav {
  height: 80px;
  width: 100%;
  font-weight: 400;
  top: 0;
  position: fixed;
  display: flex;
  z-index: 1;
  justify-content: space-between;
  transition: 1.5s;
  align-items: center;
  backdrop-filter: blur(10px);
  /* background-color:#ffffff2d;  */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background-color: #0000004c;
}

/* nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2.2px;
  background-color: #ffffffce;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
} */

nav a:hover::after {
  width: 88%;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  list-style: none;
  margin-left: 15px;
}

nav ul li a {
  padding: 2px 10px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: bolder;
  font-size: 12.5px;
  cursor: pointer;
  transition: 0.5s;
  text-decoration: none;
  font-family: sans-serif;
  letter-spacing: 1.3px;
  font-weight: 600;
}


nav ul li a:hover {
  /* color: #fff; */
  border-radius: 7px;
  letter-spacing: 2px;
  /* background: #000000fc; */
  padding: 5px 10px;
  color: #da4817;
}

.active {
  color: #fff;
  border-radius: 7px;
  background: #da4817;
  padding: 5px 10px;
}

.logo img {
  width: 130px;
  cursor: pointer;
  transition: all 1s;
  position: relative;
  left: 100px;
}

.get-started {
  position: relative;
  right: 100px;
  padding: 7px 15px;
  border: none;
  border-radius: 13px;
  text-decoration: none;
  color: white;
  transition: 0.2s;
  background: #da4817;
  font-family: sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.get-started:hover {
  font-size: 12.4px;
  background-color: #da4817bd;
  /* color: black; */
}

/* hamburger  */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  position: relative;
  right: 30px;
}

.hamburger .line {
  height: 3px;
  background-color: #da4817;
  width: 100%;
  border-radius: 5px;
}

@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }

  .logo img {
    left: 0;
    width: 110px;
  }

  .get-started {
    margin: auto;
    position: absolute;
    width: 100px;
    font-size: 8px;
  }
  nav ul {
    position: fixed;
    top: 80px;
    right: -100%;
    height: 67vh;
    width:50vw;
    background-color: #222;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    transition: 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 100;
  }

  nav ul li {
    margin: 20px 0;
  }

  nav ul li a {
    font-size: 13px;
    font-weight: 200;
    color: #fff;
    letter-spacing: 1px;
  }

  .hamburger {
    display: flex;
  }

  .menu-active ul {
    right: 0;
    /* Menu slides in when active */
  }

}

/* hamburger end  */
.hero {
  width: 100%;
  height: 25vh;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  text-transform: uppercase;
  overflow: hidden; 
  background: linear-gradient(-45deg, #111, #666, #111, #666);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  color: #ffffff;
  border-bottom-right-radius: 60px;
  border-bottom-left-radius: 60px;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.hero h2 {
  position: relative;
  top: 2rem;
  color:#fff;
  text-shadow: 3px 3px 6px #000000cc;
  margin: auto;
  font-family: sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 0.1; /* Ensure it's above the background */
}


@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");

#cnt {
  height: 5rem;
}

.service_heading {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #da4817;
  letter-spacing: 1px;
}

.contact-body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}
.contact-info {
  margin: 1.5rem 0;
  text-align: center;
  padding: 2rem 0;
  color: #fff;
}
.contact-info span {
  display: block;
}
.contact-info div {
  margin: 0.8rem 0;
  padding: 1rem;
}
.contact-info span .fas {
  font-size: 2rem;
  padding-bottom: 0.9rem;
  color: #da4817;
  margin-top: 4rem;
}
.contact-info div span:nth-child(2) {
  font-weight: 500;
  font-size: 1.1rem;
}
.contact-info .text {
  padding-top: 0.4rem;
}
.contact-form {
  padding: 2rem 0;
  border-top: 1px solid #c7c7c7;
}
.contact-form form {
  padding-bottom: 1rem;
}
.form-control {
  width: 100%;
  border: 1.5px solid #c7c7c7;
  border-radius: 5px;
  padding: 0.7rem;
  margin: 0.6rem 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  outline: 0;
}
.form-control:focus {
  box-shadow: 0 0 6px -3px rgb(255, 255, 255);
}
.contact-form form div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.6rem;
}
.send-btn {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  background: #da4817;
  border: none;
  border-radius: 5px;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
}
.send-btn:hover {
  opacity: 0.8;
}
.contact-form > div img {
  width: 80%;
}
.contact-form > div {
  margin: 0 auto;
  text-align: center;
}

.map {
  flex: 1;
  padding: 20px;
  width: 40vw;
}

.map iframe {
  width: 100%;
  height: 400px; 
  /* border: 0; */
}

@media screen and (min-width: 768px) {
  .contact-bg .text {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
 .map {
      flex: 1 100%;
      width: 100%;
  }

  .map iframe {
      height: 300px;
  }
}

@media screen and (min-width: 992px) {
  .contact-bg .text {
    width: 50%;
  }
  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

}

@media screen and (min-width: 1200px) {
  .contact-info {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*               footer */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

footer {
  position: relative;
}

.container {
  max-width: 1170px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
ul {
  list-style: none;
}
.footer {
  /* margin-top: 120px; */
  /* background-color: #24262b; */
  background: linear-gradient(#3d3d3d, #232323, #000000);
  padding: 70px 0;
}
.footer-col {
  width: 25%;
  padding: 0 15px;
}
.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 700;
  position: relative;
  letter-spacing: 1px;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #da4817;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

.footer-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
  font-family: sans-serif;
  padding: 3px;
}

.footer-bottom b {
  color: #da4817;
  font-size: 15px;
  font-weight: bolder;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #da4817cb;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}
