/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* Custom Font Faces */
@font-face {
    font-family: "NeueMachina-Light";
    src: url("../fonts/NeueMachina-Light.otf");
}

@font-face {
    font-family: "NeueMachina-Regular";
    src: url("../fonts/NeueMachina-Regular.otf");
}

@font-face {
    font-family: "NeueMachina-Ultrabold";
    src: url("../fonts/NeueMachina-Ultrabold.otf");
}

/* Root Variables */
:root {
    --primary-color: #000046;
    --secondary-color: #1CB5E0;
    --light-color: #BBAFFE;
    --gray-color: #D5D5D2;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styling */
html,
body {
    width: 100%;
    height: 100%;
    font-family: "Rubik", sans-serif;
    background-color: var(--primary-color);
    color: var(--gray-color);
    position: relative;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* 
<!-- 
  Developed by Ashish Kumar
  Social Media: @royalashu4u
  Contact: swera7827@gmail.com
--> */


input,
button,
select {
    outline: none;
}

input,
textarea {
    background-color: transparent;
}

select option {
    color: var(--primary-color);
}

/* Navbar */
#nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background-color: var(--primary-color);
    color: var(--light-color);
}

#logo {
    font-family: "NeueMachina-Regular";
    font-weight: 600;
}

/* Slider Text Mask */
.srv-slider-text {
    mask-image: linear-gradient(to right,
            transparent 0%,
            var(--primary-color) 20%,
            var(--primary-color) 80%,
            transparent 100%);
}


.srv-slider-text .item {
    animation: text-slide 10s linear infinite;
    pointer-events: none;
    position: relative;
}

.brand {
    animation: text-slide 20s linear infinite;
    pointer-events: none;
    position: relative;
    background-color: #fff;
    filter: grayscale(100%); 
}

.service-item:hover i{
rotate: 45deg;
}
.service-item i{
transition: rotate ease-in-out 400ms;
}

/* Keyframes for Slider Animation */
@keyframes text-slide {
    from {
        left: 0%;
    }

    to {
        left: -100%;
    }
}


/* Fullscreen Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-color);
    /* Adjust to your site's main color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
}

/* Loading Animation Content */
.loader-content {
    text-align: center;
    color: var(--light-color);
    /* Adjust color for text */
}


/* Hero Section */
#h-content {
    background-image: url("../media/dot.png");
}

/* Icon Animation Styling */
#ico1,
#ico2,
#ico3,
#ico4 {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.animate-fadeIn {
    opacity: 0;
    animation: fadeIn 1s forwards;
    transition: transform 0.3s ease;
}

.animate-fadeIn:hover {
    transform: scale(1.05);
}

/* Fade-in Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
