/* Base styles (mobile first) */
@font-face {
    font-family: 'Seravek';
    src: url('../fonts/seravek/Seravek-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Seravek';
    src: url('../fonts/seravek/Seravek-BoldItalic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Seravek';
    src: url('../fonts/seravek/Seravek-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Seravek';
    src: url('../fonts/seravek/Seravek.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bs-danger: #FF5163;
    --bs-danger-rgb: 255, 81, 99;
    --bs-muted: #f9f9f9;
    --bs-muted-rgb: 244, 244, 244;
    --bs-primary: #000000;
    --bs-primary-rgb: 51, 61, 80;
}

/* Animations */
.animation-ripple-out {
    position: relative;
}

.animation-ripple-out:before {
    animation: ripple-out 1.5s ease-out infinite;
    border: 1px solid #D9D9D9;
    border-radius: 50px;
    bottom: -12px;
    content: '';
    left: -12px;
    position: absolute;
    right: -12px;
    top: -12px;
}
.animation-parallax {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.5s ease-out, filter 0.5s ease-out;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes ripple-out {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Background Colors */
.bg-danger {
    background-color: #FF5163 !important;
}

.bg-muted {
    background-color: #f9f9f9ba !important;
}

.bg-primary {
    background-color: #000000 !important;
}

/* Borders */
.border {
    border: 1px solid #D9D9D9 !important;
}

.border-danger {
    border-color: #FF5163 !important;
}

.border-muted {
    border-color: #F4F4F4 !important;
}

.border-primary {
    border-color: #000000 !important;
}

.border-radius {
    border-radius: 50px;
}

/* Buttons */
.btn {
    border-radius: 50px;
}

.btn:hover {
    background-color: #000000 !important;
    color: #fff !important;
}

.btn-danger {
    background-color: #FF5163;
    border-color: #FF5163;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    background-color: #ff384c !important;
    border-color: #ff384c !important;
}

.btn-primary {
    background-color: #000000;
    border-color: #000000;
    min-width: 250px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #2a3241 !important;
    border-color: #2a3241 !important;
}

/* Carousel */
#carousel-all-clients .owl-item img:hover {
    filter: grayscale(0%);
}

#services .owl-carousel .item{
    min-height: 500px!important;
}

#services .owl-carousel .item .img-item{
    height: 400px;
    width: 100%; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: 100%;
}

#services .certification{
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.owl-carousel .item {
    min-height: 100px;
}

/* Font Sizes */
.font-xxl {
    font-size: 86px !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* Icons & Images */
.icon {
    width: 25px !important;
}
.icon-xl{
    font-size:40px!important;
    width: 40px!important;
    height: 40px!important;
}
.icon-xs{
    font-size:20px;
    width: 20px;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
  }

.logo {
    max-height: 50px;
    max-width: 75px;
}

.logo-lg{
    max-height: 80px;
    max-width: 100px;
}

.logo-sm {
    max-height: 50px;
    max-width: 50px;
}

.logo-xs {
    max-height: 30px;
    max-width: 30px;
}

/* Layout */
header {
    height: 90vh;
    max-height: 1300px;
    overflow: hidden;
    position: relative;
}

.min-height-300 {
    min-height: 300px;
}

section {
    margin-bottom: 50px;
    margin-top: 50px;
}

/* Links */
a {
    text-decoration: none;
}

a:hover {
    color: #ff384c;
}

/* Orbit Container */
.orbit-container {
    height: 750px;
    position: absolute;
    width: 750px;
}

.orbit-container .center-button {
    align-items: center;
    background-color: white;
    border: 1px solid #D9D9D9;
    border-radius: 50px;
    color: #979797;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    justify-content: center;
    left: 50%;
    padding: 5px 30px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.orbit-container .icon {
    align-items: center;
    aspect-ratio: 1;
    border: 2px solid #D9D9D9;
    border-radius: 50%;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
    display: flex;
    height: 42px;
    justify-content: center;
    max-height: 42px;
    max-width: 42px;
    min-height: 42px;
    min-width: 42px;
    overflow: hidden;
    padding: 0 !important;
    position: absolute;
    width: 42px;
    z-index: 5;
}

.orbit-container .orbit-circle {
    background-color: transparent!important;
    fill: none!important;
    stroke: #F4F4F4!important;
    stroke-width: 2px!important;
}

.orbit-container .orbit-circles {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

/* Sections */
#about-us .container {
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.6);
    background-image: url('/assets/images/bg_02.webp');
    background-position: center;
    background-repeat: repeat;
}

#banner-2 .container {
    background-image: url('/assets/images/bg_03.webp');
    background-position: center;
    background-repeat: no-repeat;
}

#innovation .container {
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.6);
    background-image: url('/assets/images/bg_01.webp');
    background-position: left;
    background-repeat: no-repeat;
    background-size: 250%;
}

#our-projects .ourProject {
    min-height: 200px;
}

#our-projects .ourProject .logo {
    max-height: 50px;
    max-width: 75px;
}

#services .card {
    min-height: 400px;
}


#testimonials .testimonials-track .testimonial-item{
    height: 300px;
    width: 350px;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .testimonial-item {
        width: 280px;
    }
}



/* Text Colors */
.text-danger {
    color: #FF5163 !important;
}

.text-gray {
    color: #979797 !important;
}

.text-muted {
    color: #868686 !important;
}

.text-primary {
    color: #000000 !important;
}

/* Transform Animations */
.tf-1-2s {
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: moveUpDown;
}

.tf-1-3s {
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-name: moveUpDown;
}

/* Typography */
body {
    font-family: 'Seravek', sans-serif;
}

h1, .h1 {
    font-family: 'Seravek', sans-serif;
    font-size: 36px !important;
}

h2, .h2 {
    font-family: 'Seravek', sans-serif;
    font-size: 28px;
}

h3, .h3 {
    font-family: 'Seravek', sans-serif;
    font-size: 20px;
}

p, span, label, a, li, td, th, input, textarea, select, button, .btn {
    font-family: 'Seravek', sans-serif;
}

p, label, a, li, td, th, input, textarea, select, button, .btn {
    font-size: 13px;
    font-weight: 300!important;
}
small{
    font-size: 9px!important;
}

/* Media Queries */
@media (max-width: 767px) {
    .navbar {
        min-height: 80px;
        position: relative;
    }
    
    .navbar img{
        width: 70px;
    }

    .navbar-brand {
        z-index: 1001;
    }
    
    .navbar-collapse {
        align-items: center;
        background-color: var(--bs-muted);
        display: flex;
        flex-direction: column;
        height: 100vh;
        justify-content: center;
        left: 0;
        padding: 20px;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .navbar-collapse .btn {
        margin-top: 20px;
        max-width: 300px;
        width: 90%;
    }

    .navbar-collapse .nav-item {
        margin: 15px 0;
        text-align: center;
        width: 100%;
    }

    .navbar-collapse .nav-link {
        font-size: 18px;
    }

    .navbar-collapse .navbar-nav {
        align-items: center;
        display: flex;
        flex-direction: column;
        height: auto;
        justify-content: center;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .navbar-collapse.collapsing {
        height: 100vh !important;
        transition: height 0.3s ease;
    }

    .navbar-toggler {
        background-color: transparent;
        border: none;
        padding: 10px;
        z-index: 1001;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .replace-me {

    }

    .orbit-circle {
        stroke-width: 1px;
    }
    .banner-2 .container{
        background-size: 100%;
    }


    #services .owl-carousel .item{
        min-height: 800px!important;
    }


    #services .owl-carousel .item .img-item{
        height: 300px!important;
    }

    footer img{
        width: 70px;
    }

    .owl-dots-custom {
        margin-top: 10px;
        position: relative;
        width: 100%;
    }
}

@media (min-width: 1182px) {
    body, p, label, a, li, td, th, input, textarea, select, button, .btn, .badge {
        font-size: 14px;
    }
    
    h1, .h1 {
        font-size: 38px !important;
    }
    
    h2, .h2 {
        font-size: 28px;
    }
    
    h3, .h3 {
        font-size: 20px;
    }
    
    section {
        margin-bottom: 50px;
        margin-top: 50px;
    }
}

@media (min-width: 1200px) {
    body, p, label, a, li, td, th, input, textarea, select, button, #button, .btn, .badge {
        font-size: 16px;
    }
    
    .btn-primary {
        min-width: 350px;
    }
    
    h1, .h1 {
        font-size: 46px;
    }
    
    h2, .h2 {
        font-size: 32px;
    }
    
    h3, .h3 {
        font-size: 24px;
    }
    
    section {
        margin-bottom: 100px;
        margin-top: 100px;
    }
}

/* Custom Owl Dots */
.owl-dots-custom {
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.owl-dots-custom .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owl-dots-custom .owl-dot.active {
    background: #000000;
    transform: scale(1.2);
}
