* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-decoration: none;
  font-family: 'Gothic', sans-serif;
}

a{
  text-decoration: none !important;
  color: var(--white) !important;
}

:root {
  --yellow: #edaa1e;
  --yellow-overlay: #edab1edb;
  --border: 0.3rem solid #edaa1e;
  --white: #fff;
  --black: #000;
}

::selection {
  background: var(--black);
  color: var(--yellow);
}

::-moz-selection {
  background: var(--black);
  color: var(--yellow);
}

.pulseanimation {
  animation: pulse-cust 2s infinite;
}

@-webkit-keyframes pulse-cust {
  0% {
    -webkit-box-shadow: 0 0 0 0 #757575;
  }

  70% {
    -webkit-box-shadow: 0 0 0 0.5rem rgba(94, 94, 94, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(98, 98, 98, 0);
  }
}
/* font  */
@font-face {
  font-family: "CenturyGothicRegular";
  src: url("fonts/Century-Gothic-Font/Century\ Gothic.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "CenturyGothicBold";
  src: url("fonts/Century-Gothic-Font/Century\ Gothic\ Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/static/Montserrat-Medium.ttf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Gothic";
  src: url("../fonts/gothic/gothic.woff") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0.6rem rgba(0, 0, 0, 0.3);
  background-color: var(--black);
  border-radius: 0px;
}

body::-webkit-scrollbar {
  width: 0.4rem;
  background-color: var(--black);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 1rem;
  background-image: -webkit-linear-gradient(5deg, #edaa1e 53%, #edab1edb 99%);
}

#NavBarDigi {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background-color: var(--white);
  max-height: 100vh;
  overflow-y: none;
}

.hero-section {
  position: relative;
  background: url("../assets/bgimage.webp") no-repeat center center/cover;
  padding: 4rem 0;
  color: #000;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color:var(--yellow-overlay);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-h1 {
  font-size: 2.3rem;
  font-weight: 700;
}
.hero-para {
  font-size: 1.2rem;
}

.DigiSuitsrightImage {
  border-radius: 6rem 0rem;
  border: 0.5rem double var(--black);
}

.hr-line {
  height: 0.3rem;
  background: linear-gradient(to right, #edaa1e 50%, #000 50%);
  border-radius: 2rem;
  margin: 1.5rem auto;
  width: 25%;
}

.yellowColor{
  color: var(--yellow);
}

.whiteColor{
  color: var(--white);
}
.colorBold{
  color: var(--white);
}

#services{
  background-color: #dddddd9c;
}

#services .card{
  border: 0.2rem solid var(--white);
  border-radius: 2rem 0rem;
  background-color: var(--yellow);
}

.card h5{
  color: var(--white);
  font-weight: 700;
  
}

.card i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  width: 55px;
  margin: auto;
  border-radius: 1rem;
  background-color: #000000;
}

#contact {
  background-color: #dddddd9c;
}
.contact-left-box {
  height: 100%;
  min-height: 20rem;
  padding: 3rem;
  background: url("../assets/bgimage.webp") no-repeat center center/cover;
  position: relative;
}

.contact-left-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #edab1e4a;
}

.contact-form-box {
  border-radius: 0.8rem;
  border: 1px solid #ddd;
}

.form-control{
  border: none !important;
  border-radius: 0px !important;
  border-bottom: 1px solid var(--yellow) !important;
  background-color: transparent !important;
}

.form-control:focus{
  box-shadow: none !important;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  border: 0.1rem solid transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image:
  linear-gradient(#fff, #fff),
  linear-gradient(to right, #edaa1e, #000);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.feature-box .icon {
  font-size: 1.6rem;
  color: var(--yellow);
  transition: 0.3s ease;
}

.feature-box:hover .icon {
  color: #000;
}

.features-list {
  margin-top: 2rem;
}

#footer-digisuits{
  background-color: var(--black);
  color: var(--yellow);
}

.contact-left-box i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 2rem;
  border-radius: 1rem;
  background-color: #000000;
}

.makeitvisible{
  background-color: var(--yellow-overlay);
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
}

.socialIcons i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 1rem;
  background-color: var(--yellow);
  color: var(--black);
  font-size: 1.2rem;
}

.boton-elegante {
  padding: 0.3rem 0.8rem;
  border: 0.1rem solid var(--white);
  background-color: var(--yellow);
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 0.7rem 0rem;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: bold;
}

.boton-elegante::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0) 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
}

.boton-elegante:hover::after {
  transform: scale(4);
}

.boton-elegante:hover {
  border-color: var(--yellow);
  background: var(--white);
  color: var(--yellow);
}

.scrollup {
  display: flex;
  position: fixed;
  bottom: 2.5rem;
  right: 10px;
  background: var(--yellow);
  width: 40px;
  height: 40px;
  border-radius:2rem ;
  z-index: 9;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 9;
  color: #fff !important;
  transition: all 0.6s ease;
  
}

.whatsapp-btn {
  display: flex;
  position: fixed;
  bottom: 10rem;
  right: 10px;
  width: 40px;
  height: 36px;
  z-index: 9;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #25d366 !important;
  
}

.mail-btn {
  display: flex;
  position: fixed;
  bottom: 13rem;
  right: 10px;
  width: 40px;
  height: 36px;
  z-index: 9;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff !important;
  
}

#enquire-btn2 {
  width: 100vw;
  position: fixed;
  z-index: 9;
  background-color: var(--black);
  color: var(--yellow);
  font-size: 1.2rem;
  text-decoration: none;
  bottom: 0;
  border:none !important;
  padding: 0.25rem;
  font-weight: 700 !important;
}

.clients-logo{
  background-color: var(--black);
  padding: 1rem;
  margin: 2rem;
  width: 13% !important;
  border: 0.2rem solid var(--yellow);
  border-radius: 1rem !important;
}
.elegant-modal {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: popIn 0.35s ease;
}

@keyframes popIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.input-style {
  border-radius: 1rem;
  border: 1px solid #ddd;
  padding: 10px 12px;
  transition: 0.2s ease;
}

.input-style:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(233, 60, 73, 0.15);
}

.submit-btn {
  background: var(--yellow);
  color: white;
  border: none;
  padding: 0.7rem;
  border-radius: 0.7rem;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: var(--yellow-overlay);
  transform: translateY(-2px);
}

.loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  border: 2px solid var(--white);
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}

.loader::after,
.loader::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 2.5px solid var(--yellow);
  width: 38px;
  height: 38px;
  animation: rotationBack 1.5s linear infinite;
  transform-origin: center center;
}

.loader::before {
  width: 28px;
  height: 28px;
  border-color: var(--white);
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes rotationBack {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(-360deg)
  }
}

#loaderWrapper {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  z-index: 999999;
  opacity: 1;
  transform: translateY(0);
  transition:
    transform .75s cubic-bezier(.22, .61, .36, 1),
    opacity .6s ease;
}

#loaderWrapper.hide {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}


#mobileMenu {
  width: 100%;
  max-width: 100%;
  height: 100vh !important;
  background-color: var(--black);
  z-index: 1056 !important;
}

#mobileMenu .offcanvas-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 4rem;
}

#mobileMenu .navbar-nav {
  width: 100%;
  text-align: center;
}

#mobileMenu .nav-link {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1rem 0;
  transition: 0.3s ease;
}

#mobileMenu .nav-link:hover {
  color: var(--yellow) !important;
  transform: scale(1.05);
}

#mobileMenu .offcanvas-header {
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#mobileMenu .btn-close-white {
  position: absolute;
  right: 20px;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.error {
  display: block;
  font-size: 0.75rem;
  color: red;
  margin-top: 3px;
  height: 14px;
  line-height: 14px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
/* < !-- MADE BY BHAVESH --> */