@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@font-face { font-family: ARABOLIC; src: url('ARABOLIC.TTF'); } 

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.8;
    min-height: 200vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900 !important;
}

a {
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 800;
    color: #20212c;
}

img {
    width: 100%;
}

.logo {
    width: 40px;
    /* Set the fixed width of the logo */
    height: auto;
    /* Maintain aspect ratio */
    transition: transform 0.3s ease;
    padding: 5px;
}
#logofont{
    font-family: ARABOLIC;
}
section {
    padding-top: 80px;
    padding-bottom: 80px;
    z-index: 2;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: #9cbafb63;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0051d494, #65c6f773, #9cedfb7a);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0051d49c, #65c6f777, #9cedfb7e);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    z-index: -1;
}

.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #9cbafb63;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0051d494, #65c6f773, #9cedfb7a);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0051d49c, #65c6f777, #9cedfb7e);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.bg-cover {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 14px 22px;
    transition: all 0.3s ease;
}

.btn-main {
    background: linear-gradient(to right, #00e0fe, #1107fe);
    border-radius: 100px;
    border: none;
    font-weight: 600;
    color: #fff;
}

.btn:hover {
    color: #fff;
    transform: translateY(-5px);
}

.video-section {
    position: relative;
    height: 500px;
    /* Set desired height */
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
    /* Cover the entire section */
    transform: translate(-50%, -50%);
}

.overlays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #9cbafb63;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0051d494, #65c6f773, #9cedfb7a);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0051d49c, #65c6f777, #9cedfb7e);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    z-index: 2;
    /* Ensure overlay is above the video */
}

.hero-content {
    position: relative;
    z-index: 3;
    /* Ensure content is above the overlay */
    color: white;
    /* Text color */
    text-align: center;
    padding: 20px;
}

.video-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #00e0fe, #1107fe);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 100px;
}

.video-btn i {
    font-size: 32px;
}

.navbar {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    background: -webkit-linear-gradient(#00e0fe, #1107fe);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
 #scroll-progress { 
    position: fixed;
    top: 0;
    width: 0%;
    height: 4px;
    background: #28bcf7;
    z-index: 10000;
    transition: width 0.1s ease; /* Smooth transition */
}
#myBtn {
    display: none;
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: rgb(37, 164, 202);
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 100%;
    transition: opacity 0.5s;
  }
 
  
  #myBtn:hover {
    background-color: #31b1d1;
  }

.section-intro {
    margin-bottom: 40px;
}

.section-intro .divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #00e0fe, #1107fe);
    margin: 16px auto;
}

.service .service-img {
    position: relative;
    height: 300px;
}
.geeks {
    width: 90%;
    height: 200px;
    border: 1px solid #ccc;
}

.imgs {
    width: 100%;
    height: 100%;
}

.service .service-img .icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(to right, #00e0fe, #1107fe);
    color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.service .service-img .icon i {
    font-size: 36px;
}

#about p {
    text-align: center;
}

.feat-section {
    border-radius: 0 0 100px 100px;
    padding-bottom: 0px;
    position: relative;
}

.feat-section .container {
    height: 100%;
    margin-top: -100px;

}

.feat-section .row {
    position: relative;
    top: -50px;

}

.custom-block {
    position: relative;
    overflow: hidden;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
}

.custom-block:hover {
    background-color: #b6b2b2;
    transform: translateY(-4px);
}

.custom-block>a {
    width: 100%;
}


.feature i {
    background: -webkit-linear-gradient(#00e0fe, #1107fe);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 54px;
}

.av {
    padding: 20px;
}

.table {
    color: #fff;
    border: 2px solid #fff;
}
.web{
    color: #fff;
}
.web:hover{
    color: #1107fe;
}
.review {
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.1);
}

.review .person {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding-bottom: 18px;
}

.review .person img {
    width: 75px;
    height: 75px;
    border-radius: 100px;
}

.review .stars {
    color: orange;
}

form .form-control {
    border-radius: 0;
    background: transparent;
    color: #1aa7df;
    border-color: rgba(12, 106, 134, 0.5);
}

form .form-control:focus {
    color: #1aa7df;
    background: transparent;
    border-color: #1aa7df;
    ;
}

form input.form-control {
    height: 54px;
}

form .form-control::placeholder {
    color: #1aa7df;
}

#review {
    background: linear-gradient(to right, #00e0fe, #1107fe);
    color: #fff;
}

footer {
    background: linear-gradient(to right, #00e0fe, #1107fe);
    color: #fff;
}

footer a {
    color: #fff;
}

.pimg {
    width: 300px;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 900px) {
    .pimg {
        position: relative;
        height: 300px;

    }
}


.para {
    font-size: x-large;
}

@media only screen and (max-width: 600px) {

    .para {
        font-size: medium;
    }

    #about p {
        text-align: justify;
    }

}

/* Inner */
.inner {
    margin: 0 auto;
    width: 75rem;
    max-width: calc(100% - 6rem);

}

@media screen and (max-width: 480px) {
    .inner {
        max-width: calc(100% - 3rem);
    }
}

#main .content {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.025);
    margin-bottom: 2rem;
    padding: 0;
}

/* Wrapper */
.wrapper {
    padding: 8rem 0 6rem 0;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1280px) {
    .wrapper {
        padding: 4rem 0 2rem 0;
    }
}

@media screen and (max-width: 736px) {
    .wrapper {
        padding: 3rem 0 1rem 0;
    }
}

@media screen and (max-width: 480px) {
    .wrapper {
        padding: 2rem 0 0.1rem 0;
    }
}