

:root {
    --glass-bg: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.06);
}

@font-face {
  font-family: 'myfont';  /* Ø§Ø³Ù… Ø§Ù„Ø®Ø· Ø§Ù„Ø°ÙŠ ØªØ®ØªØ§Ø±Ù‡ */
  src: url('../myfont.otf') format('opentype');  /* Ø§Ù„Ù…Ø³Ø§Ø± Ø¥Ù„Ù‰ Ù…Ù„Ù Ø§Ù„Ø®Ø· */
}





::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}


::-webkit-scrollbar-track {
  background: #282828; 
}
 

::-webkit-scrollbar-thumb {
  background: #3c3c3c; 
}


::-webkit-scrollbar-thumb:hover {
  background: #555; 
}


html,body {
	font-family: 'myfont', sans-serif !important; 
    height: 100%;
    min-height: 100%;

}

input, textarea {
		font-family: "Times New Roman", Times, serif !important;
} 

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
	background-color: #000;
    background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

/* glass card */
.glass {
        background: #404246b5;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px) saturate(120%);
}

.glass-strong {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px) saturate(130%);
}

/* small fade under header so content isn't hidden by fixed header */
main {
    padding-top: 96px;

}


.hover-underline {
  position: relative;
  color: #fff;
}

.hover-underline::after,
.hover-underline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #C9A14A, #a58d3c);
  bottom: -3px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

.hover-underline::before {
  top: -3px;
  transform-origin: left;
}

.hover-underline:hover::after,
.hover-underline:hover::before {
  transform: scaleX(1);
}

.sec-services {

	background-image: url('/assets/imgs/sersec.jpg');
	background-size:  cover ;
	background-repeat: no-repeat;
	
}



/* subtle floating animation for hero card */
@keyframes floaty {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}












.language-switch {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}

.language-switch > span {
  position: absolute;
  top: 10px;
  pointer-events: none;
  font-family: 'Helvetica', Arial, sans-serif;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  width: 50%;
  text-align: center;
}

.lang-toggle-round-flat:checked ~ .lang-off {
  color: #000;
}

.lang-toggle-round-flat:checked ~ .lang-on {
  color: #fff;
}

.language-switch > span.lang-on {
  left: 0;
  padding-left: 2px;
  color: #C9A14A;
}

.language-switch > span.lang-off {
  right: 0;
  padding-right: 4px;
  color: #fff;
}

.lang-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.lang-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.lang-toggle-round-flat + label {
  padding: 2px;
  width: 97px;
  height: 35px;
  background-color: #C9A14A;
  border-radius: 60px;
}

.lang-toggle-round-flat + label:before, .lang-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: "";
}

.lang-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: #C9A14A;
  border-radius: 60px;
}

.lang-toggle-round-flat + label:after {
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 48px;
  background-color: #2d3035;
  border-radius: 52px;
  transition: margin 0.2s;
}

.lang-toggle-round-flat:checked + label:after {
  margin-left: 44px;
}


    .slide { will-change: opacity; }
    .dot { width: 10px; height: 10px; border-radius: 9999px; }



@media (max-width: 768px) {
	

	
	overflow-x: hidden;
  [data-aos] {
	max-width: 100vw;
  box-sizing: border-box;
    transform: none !important;
    opacity: 1 !important;
  }
}
    .sidebar {
      transition: transform 0.3s ease-in-out;
    }
    .sidebar.hidden {
      transform: translateX(-100%);
    }