/* Graphik Regular */
@font-face {
  font-family: 'Graphik';
  src: url('../font/Graphik-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* Graphik Bold */
@font-face {
  font-family: 'Graphik';
  src: url('../font/Graphik-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* Graphik Light */
@font-face {
  font-family: 'Graphik';
  src: url('../font/Graphik-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

/* Graphik Italic */
@font-face {
  font-family: 'Graphik';
  src: url('../font/Graphik-Regular-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

/* अब पूरे site में apply */
body , * {
  font-family: 'Graphik', sans-serif;
}

p{  font-family: 'Graphik', sans-serif;
font-weight: 300;
}
.navbar-brand  span{margin-left: -10px;}
.navbar-brand {
	font-weight: 500 !important;
	font-family: 'Graphik', sans-serif;
}
.hero-section {
      position: relative;
      height: 100vh;
      color: #fff;
    }
   .hero-content {
	position: absolute;
	top: 70%;
	left: 34%;
	transform: translate(-50%, -50%);
	text-align: left;
	max-width: 700px;
}
    .hero-content h1 {
      font-size: 4rem;
      font-weight: 300;
    }
    .hero-content p {
      font-size: 1.2rem;
      margin-top: 1rem;
    }
   .hero-content .btn {
	border: 1px solid #fff;
	color: #fff;
	padding: 10px 25px;
	font-weight: 500;
	margin-top: 20px;
	transition: all 0.3s ease;
	border-radius: 1px !important;
}
    .hero-content .btn:hover {
      background: #fff;
      color: #000;
    }
    .navbar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
    }
    .carousel-item img {
      height: 100vh;
      object-fit: cover;
      filter: brightness(60%);
    }

    header {
	position: absolute;
	width: 100%;
}

.navbar-brand {
	width: 100px;
}


.icon-box {
	width: 40px;
	height: 27px;
	margin-left: 20px;
	cursor: pointer;
	display: grid;
	justify-content: center;
	align-items: center;
    z-index: 99999;
}

.navbar-brand {
	position: relative;
	z-index: 9999;
}
    /* Square Icon */
  .square-icon {
	width: 37px;
	height: 18px;
	border: 2px solid #fff;
}
    /* Hamburger Icon */
    .hamburger span {
      display: block;
      width: 40px;
      height: 2px;
      background: #fff;
      margin: 4px 0;
      transition: 0.3s;
    }
    /* Toggle Effect */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
   .menu {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.91);
	padding: 15px;
	border-radius: 0;
	width: 100%;
	height: 100%;
    z-index: 99;
}
.icon-box hamburger.active {
	z-index: 99999;
	position: relative;
}
#menu > div {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
   .menu a {
	color: #7f7f7ff2;
	text-decoration: none;
	display: block;
	margin: 8px 0;
	font-size: 23px;
	text-align: left;
}
    .menu.show {
      display: block;
    }

    .header_siderbar {
	display: flex;
	align-items: center;
}


/* Loader Fullscreen */
    #loader {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      background: #fff;
      display: block;
      transform: translate(-50% , -50%);
      z-index: 9999;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }
#loader  div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
    body {
	position: relative;
}
    /* Hide loader */
    #loader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    /* Logo style */
    #loader img {
      width: 180px;
      animation: fadeIn 1.5s ease-in-out infinite alternate;
    }

    @keyframes fadeIn {
      from { opacity: 0.3; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1.05); }
    }

    /* Main Content */
    .content {
      display: none;
      text-align: center;
      padding: 50px;
      color: #000;
    }

    .content.show {
      display: block;
    }
#loader #logo_svg {
	color: #000 !important;
	width: 300px !important;
}


#loader h3{
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}


.menu.show {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    .menu > div {
      display: flex;
      padding: 40px;
    }
    /* Left Menu */
    .menu-left {
      padding-right: 40px;
      border-right: 1px solid rgba(255,255,255,0.3);
    }
    .menu-left a {
      display: block;
      color: #aaa;
      text-decoration: none;
      font-size: 20px;
      margin-bottom: 20px;
      transition: color 0.3s ease;
    }
    .menu-left a.active,
    .menu-left a:hover {
      color: #fff;
    }
    /* Right Submenu */
    .menu-right {
      padding-left: 40px;
      display: none;
    }
    .menu-right.active {
      display: block;
    }
    .menu-right a {
      display: block;
      color: #aaa;
      text-decoration: none;
      font-size: 18px;
      margin-bottom: 15px;
      transition: color 0.3s ease;
    }
    .menu-right a:hover {
      color: #fff;
    }

    #servicesGrid {
	background: #000000f7;
	padding-top: 150px !important;
	padding-bottom: 10px !important;
}

.container-fluid .row {
	gap: 21px;
	flex-wrap: unset;
}

.container-fluid {
	width: 1899px !important;
	max-width: 1899px !important;
}
.contact-section p, .contact-section h4, .contact-section h5, .contact-section label {
	color: #000;
}

.contact-section h4{font-weight: 300 !important;font-size:40px !important;}
  #servicesGrid  .service-item img {
	display: block;
	width: 100% !important;
	height: 300px;
	object-fit: cover;
}
.container-fluid .row {
	gap: 21px;
	flex-wrap: unset;
}

#privacyCheck {
	margin-right: 4px;
}

.contact-section .submit {
	padding: 16px 72px !important;
	margin-top: 20px;
	font-size: 14px;
}
#servicesGrid {
	width: 100%;
	overflow: hidden;
	overflow-x: scroll;
  height: 100vh;
}
.contact-section input, .contact-section textarea {
	border: 1px solid #ddd;
	font-size: 14px;
	padding: 12px;
	font-weight: 300;
}
.contact-section {
	background: #fff;
}
.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #000;
  box-shadow: none;
}
/* Scrollbar Track */
.services-grid::-webkit-scrollbar {
  height: 8px; /* horizontal ke liye height, vertical ke liye width */
}

/* Scrollbar background */
.services-grid::-webkit-scrollbar-track {
  background: #111;  /* dark background */
}

/* Scrollbar handle */
.services-grid::-webkit-scrollbar-thumb {
  background: #666;  
  border-radius: 10px;
}

/* Hover effect on scrollbar */
.services-grid::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Optional: remove arrows (left-right buttons) */
.services-grid::-webkit-scrollbar-button {
  display: none;
}



 @media only screen and (max-width: 767px) {

  .hero-content {
	top: 60%;
	left: 38%;
  max-width: 90%;

}
.service-item {

	width: fit-content !important;
}
.icon-box {
	width: 30px;

}
.hamburger span {
	width: 30px;

}
.navbar-brand {
	width: 76px;
}
#servicesGrid .service-item img {
	display: block;
	width: 100% !important;
	height: 169px;
	object-fit: cover;
}
#loader #logo_svg {
	color: #000 !important;
	width: 200px !important;
}
.hero-content h1 {
	font-size: 45px;
	font-weight: 300;
}
}