@font-face {
    font-family: MontserratExtraLightCustom;
    src: url(../fonts/Montserrat-ExtraLight.ttf);
  }

@font-face {
    font-family: MontserratLightCustom;
    src: url(../fonts/Montserrat-Light.ttf);
}

@font-face {
    font-family: MontserratThinCustom;
    src: url(../fonts/Montserrat-Thin.ttf);
}

@font-face {
    font-family: MontserratRegularCustom;
    src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: MontserratMediumCustom;
    src: url(../fonts/Montserrat-Medium.ttf);
}

@font-face {
    font-family: MontserratSemiBoldCustom;
    src: url(../fonts/Montserrat-SemiBold.ttf);
}


@font-face {
    font-family: MontserratBoldCustom;
    src: url(../fonts/Montserrat-Bold.ttf);
}

@font-face {
    font-family: MontserratExtraBoldCustom;
    src: url(../fonts/Montserrat-ExtraBold.ttf);
}

body {
    background-color: #0d0e12 !important;
    color: #f5f5f5 !important;
}

h2 {
    font-size: calc(1.375rem + 1.5vw) !important;
}

.menu-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' fill='white'><path stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>") !important;
}

.navbar-custom {
    z-index: 1000;
    width: 100%;
    position: fixed !important;
    background-color: rgb(13 14 17 / 8%) !important;
    backdrop-filter: blur(10px);
    color: #f5f5f5 !important;
}

.nav-border-bottom {
    border-bottom: 0.01rem solid #424242;
}

.nav-custom-text {
    font-family: MontserratLightCustom !important;
    font-size: 15px !important;
    color: #f5f5f5 !important;
}

.hero {
    position: relative;
    border-bottom: 0.01rem solid #424242;
    /* padding-top: 60px; */
}

.hero-animation {
    position: absolute;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top center, rgba(249, 249, 249, 0.2), rgba(0, 0, 0, 1)),
                linear-gradient(180deg, #0a0c10, #050608);
    color: white;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1; /* Hero content's z-index */
}

.hero-animation::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0.05) 0px, 
        rgba(255, 255, 255, 0.02) 1px, 
        transparent 1px, 
        transparent 200px
    );
    z-index: 0;
}


.glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(rgba(216, 29, 154, 0.4), rgba(29, 78, 216, 0.4), rgba(29, 216, 163, 0.4), rgba(172, 29, 216, 0.4));
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowMove 5s infinite alternate ease-in-out;
    z-index: 0; /* Glow effect should be behind the text */
}


@keyframes glowMove {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -48%) scale(1.1);
        opacity: 0.9;
    }
}
  
.hero-text-area {
    position:absolute;
    top:25%;
    left: 50%;
    transform: translateX(-50%);
    z-index:1;
}

.hero-title {
    z-index: 100;
    font-size: clamp(3rem, 5vw, 4rem);;
    font-family: MontserratExtraBoldCustom;
    color: #f5f5f5;
    letter-spacing: -.05em;
}

.hero-title2 {
    font-size: clamp(1.2rem, 1.5vw, 2rem);;
    font-family: MontserratRegularCustom;
    color: #b9b9b9;
}

.hero-btn1 {
    position: relative;
    background-color: transparent !important;
    border: 1px solid #f5f5f5 !important;
    font-family: MontserratLightCustom !important;
    color: #f5f5f5 !important;
    width: 200px;
}

.hero-btn1:hover {
    background-color: #f5f5f5 !important;
    color: #000 !important;
}

.hero-btn2 {
    position: relative;
    background-color: #f5f5f5 !important;
    border: 1px solid #f5f5f5 !important;
    font-family: MontserratLightCustom !important;
    color: #000 !important;
    width: 200px;
}

.hero-btn2:hover {
    background-color: transparent !important;
    color: #f5f5f5 !important;
}

.rs-width-title {
    max-width: 90%;
}

.rs-width-subtitle {
    max-width: 50%;
}

@media only screen and (max-width: 510px) {
    .rs-width-subtitle {
        max-width: 90%;
    }
  }



.section-title {
    font-family: MontserratExtraBoldCustom;
    color: #f5f5f5;
    letter-spacing: -.05em;
}

.section-subtitle {
    font-family: MontserratRegularCustom;
    color: #b9b9b9;
    font-size: 17px;
}

.service-card {
    background-color: rgb(13 14 17 / 8%) !important;
    border: 1px solid #424242 !important;
    margin: 5px;
    padding:12px !important;
    min-height: 300px;
}

.card-title {
    font-family: MontserratExtraBoldCustom !important;
    color: #f5f5f5 !important;
}

.card-text {
    font-family: MontserratRegularCustom !important;
    color: #b9b9b9 !important;
}

.project img{
    border: 0.01rem solid #424242;
    border-radius: 6px;
}

.slider-container {
    overflow: hidden;
    padding: 10px 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.logos-wrapper {
    display: flex;
    gap: 30px;
    position: relative;
}

.logos-wrapper img {
    height: 50px;
    width: auto;
    flex-shrink: 0;
}

@media only screen and (max-width: 510px) {
    .logos-wrapper img {
        height: 20px;
        width: auto;
        flex-shrink: 0;
    }
  }


.contact-phone{
    font-size: 1.25rem;
    font-family: MontserratBoldCustom !important;
}

.contact-btn1 {
    position: relative;
    background-color: #f5f5f5 !important;
    border: 1px solid #f5f5f5 !important;
    font-family: MontserratLightCustom !important;
    color: #000 !important;
    width: 200px;
}

.contact-btn1:hover {
    background-color: transparent !important;
    color: #f5f5f5 !important;
}

.contact-btn2 {
    position: relative;
    background-color: transparent !important;
    border: 1px solid #f5f5f5 !important;
    font-family: MontserratLightCustom !important;
    color: #f5f5f5 !important;
    width: 200px;
}

.contact-btn2:hover {
    background-color: #f5f5f5 !important;
    color: #000 !important;
}


.footer{
    border-top: 0.01rem solid #424242;
    align-items: center;
    height: 50px;
    width: 100%;
}

.footer p{
    margin-top: 10px;
}


/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */

.box {
    display: grid;
    place-content: center;
    color: white;
    text-shadow: 0 1px 0 #000;
    --border-angle: 0turn;
    --main-bg: conic-gradient(from var(--border-angle), #213, #112 5%, #112 60%, #213 95%);
    border: solid 5px transparent;
    border-radius: 2em;
    --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #08f, #f03 99%, transparent);
    background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    background-position: center center;
    animation: bg-spin 3s linear infinite;
}
@keyframes bg-spin {
    to {
        --border-angle: 1turn;
   }
}
.box:hover {
    animation-play-state: paused;
}
@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

  

/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */