@font-face {
  font-family: ppmori;
  src: url(font/PPMori-Regular.otf);
}





/* Main Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, opacity 0.2s;
  z-index: 9999;
  mix-blend-mode: difference;
}

/* Cursor Trail (Lagging Effect) */
.cursor-trail {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #da4817;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease-out, opacity 0.3s;
  z-index: 9998;
  mix-blend-mode: difference;
}

/* Cursor Effect on Hover */
.hover-target:hover ~ .custom-cursor {
  transform: scale(2);
  background: rgba(255, 255, 255, 0.2);
  border-color: #da4817;
}

.hover-target:hover ~ .cursor-trail {
  transform: scale(1.5);
  background: white;
}

a{
  cursor: pointer;
}


@media (max-width: 900px) {

  .custom-cursor{
    display: none;
  }
  .cursor-trail{
    display: none;
  }
}









@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;
  cursor: none;
  font-family: "ppmori", sans-serif;
}

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: #ccc;
  font-weight: bolder;
  font-size: 13px;
  cursor: pointer;
  transition: 0.5s;
  text-decoration: none;
  /* font-family: sans-serif; */
  letter-spacing: 1.3px;
  font-weight:300;
}


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: 1120px) {

.logo img{
  width: 90px;
}

.get-started {
  width: 90px;
  font-size: 7px;
}


nav ul li a {
  padding:0 3px;
  font-size: 10px;
}

}

@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%;
    max-height: 100vh;
    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;
  border-bottom: .5px solid #bbb;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.hero h2 {
  position: relative;
  top: 2rem;
  color:white;
  text-shadow: 3px 3px 6px #000000cc;
  margin: auto;
  /* font-family: sans-serif; */
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 0.1; 
}

























/* 


.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3.2rem 4rem 0;
}

.menu-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.hero__title {
  position: absolute;
  top: 50%;
  left: 4rem;
  width: calc(100% - 8rem);
  transform: translateY(-50%);
  margin-bottom: 8rem;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 3.2rem;
  font-size: 16rem;
  opacity: 0;
}

.hero__line {
  display: inline-block;
  height: 0.4rem;
  width: 100%;
  background-color: black;
  transform: scaleX(0);
  transform-origin: center center;
}

.hero__image {
  overflow: hidden;
  position: absolute;
  bottom: -10vh;
  left: 0;
  width: 100%;
  transform-origin: top center;
}

.hero__imageOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-color: black;
  transform: scaleY(0.31);
  transform-origin: bottom center;
}

.hero__imageElement {
  width: 100%;
  height: auto;
} */