@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');


*{
    margin: 0px;
    padding: 0px;
}

:root{
    --main-color:#004a7c;
    --second-color:#005691;
    --third-color:#e8f1f5; 
    --fourth-color: #fafafa;
    --fifth-color: #0099ff;
}

html, body{
    scroll-behavior: smooth;
}
body{
    
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
body.noscroll { overflow: hidden; }
img{
    pointer-events: none;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}
footer p{
    color: var(--third-color) !important;
}

a{
    color: var(--second-color) !important;
    text-decoration: none;
}
h1, h2, h3, h4{
    color: var(--main-color) !important;
}

h5, h6{
    color: var(--second-color) !important;
}
ul{
    list-style-type: none;
}
footer li{
    color: var(--main-color);
    line-height: 2.5;
    margin: 2.5px;
}
footer i{
    color: var(--second-color);
}
.c-btn{
    border: 1.5px solid var(--main-color) !important;
    background-color: var(--third-color) !important;
    color: var(--second-color) !important;
    transition: all 0.3s ease 0s;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.c-btn:hover {
    background-color: var(--second-color) !important;
    box-shadow: 0px 5px 10px rgba(68, 174, 255, 0.6); 
    color: var(--fourth-color) !important;
    transform: translateY(-7px);
}

.c-link-btn{
    background-color: var(--third-color) !important;
    color: var(--second-color) !important;
    transition: all 0.3s ease 0s;
}
.c-link-btn:hover {
    background-color: var(--second-color) !important; 
    color: var(--fourth-color) !important;
    transform: translateY(-2px);
}

.c-alt-btn{
    border: 1.5px solid var(--third-color) !important;
    background-color: var(--second-color) !important;
    color: var(--fourth-color) !important;
    transition: all 0.3s ease 0s;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    outline:none;  
}

.c-alt-btn:hover {
    border: 1.5px solid var(--third-color) !important;
    background-color: var(--second-color) !important;
    box-shadow: 0px 5px 10px rgba(68, 174, 255, 0.6); 
    color: var(--fourth-color) !important;
    transform: translateY(-7px);
}

.btn-blu{
    background-color: var(--fifth-color) !important;
    color: white !important;
}

.btn-blu:hover{
    color: var(--fifth-color) !important;
    border: 1.5px solid var(--main-color) !important;
    background-color: white !important;
}

/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/
.navbar {
    transition: all 0.4s;
}

.navbar .nav-link {
    color: #fff;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #fff;
    text-decoration: none;
}

.navbar .navbar-brand {
    color: #fff;
}


/* Change navbar styling on scroll */
.navbar.active {
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar.active .nav-link {
    color: #555;
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: #555;
    text-decoration: none;
}

.navbar.active .navbar-brand {
    color: #555;
}


/* Change navbar styling on small viewports */
@media (max-width: 991.98px) {
    .navbar {
        background: #fff;
    }

    .navbar .navbar-brand, .navbar .nav-link {
        color: #555;
    }
}
/*
*
* ==========================================
* END CUSTOM UTIL CLASSES
* ==========================================
*
*/

.spacer{
    padding-top:25%;
}
.sm-spacer{
    padding-top:10%;
}

/*
* ==========================================
* TYPEWRITER CLASS
* ==========================================
*/

.typewriter h3 {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid var(--second-color); /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0px; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    color: var(--fourth-color) !important;
    display: inline-block;
    animation: 
      typing 4.5s steps(30, end),
      blink-caret .95s step-end infinite;
  }
  
  /* The typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width:75% }
  }
  
  /* The typewriter cursor effect */
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--first-color); }
  }


/*
* ==========================================
* END TYPEWRITER CLASS
* ==========================================
*/

#guys{
    background: url('./images/wave.svg') no-repeat bottom center/cover;
    padding-top: 5%
}

#guys h3{
    color: var(--second-color);
}

#guys h1,h2{
    font-size: 3rem;
    color: var(--third-color) !important;
}

#ser{
    background: url('./images/wave.svg') no-repeat bottom center/cover;
    padding-top: 5%
}

#ser h3{
    color: var(--second-color);
}

#ser h1,h2{
    font-size: 8rem;
    color: var(--main-color) !important;
    margin-bottom: 20%;
}

#cost{
    background: url('./images/wave.svg') no-repeat bottom center/cover;
    padding-top: 5%;
    padding-bottom: 5%;
}

#cost h3{
    color: var(--second-color);
}

#cost h1,h2{
    font-size: 8rem;
    color: var(--main-color) !important;
    margin-bottom: 20%;
}

@media(min-width: 425px){
    #guys h5{
        margin-top: 10%;
    }
    .desk{
        display:none;
    }
}

@media(max-width: 768px){
    #guys{
        padding: 0px
    }
    #guys img{
        margin-top: 25%;
    }
    .desk{
        display:none;
    }
}

@media(max-width: 767px){
    #guys{
        padding:0px;
    }
    #guys h5{
        margin:0px
    }
    #guys h3{
        font-size: 1rem;
        color: var(--second-color) !important;
    }
    #guys h1, h2{
        font-size: 3rem;
        color: var(--main-color) !important;
    }
    #ser h1, h2{
        font-size: 4rem;
        color: var(--main-color) !important;
    }
    #cost h1, h2{
        font-size: 4rem;
        color: var(--main-color) !important;
    }
    .desk{
        display:none;
    }
}


.about-tabs{
    color: var(--main-color);
    background-color: var(--fourth-color);
    font-weight: 500;
    font-size: 1.3rem;
    border: 1px solid rgba(197, 193, 194, 0.2);
    transition: all 0.3s ease 0s;
}

.about-tabs:hover{
    color: var(--fourth-color);
    background-color: var(--main-color);
    transform: translateY(-2px);
    border: none;
}

.aart{
    color: gray !important;
}

#about{
    background-color: var(--fourth-color);
}
#about article{
    font-weight: 100;
}

/*
* ==========================================
* FLIKITY JS CLASS
* ==========================================
*/

.carousel {
    background: transparent;
}

.carousel-cell {
    width: 100%;
    height: auto;
    margin-right: 5%;
    margin-bottom: 2%;
    margin-top: 2%;
    background: transparent;
    border-radius: 10px;

}
  /*
* ==========================================
* END FLIKITY JS CLASS
* ==========================================
*/


.tag{
    padding: 2.5%;
    text-align: center;
    background-color: lightgray;
    color: #333;
    border-radius: 27px;
    font-weight: 100;
    font-size: 0.7rem;
}

.card{
    background-color: white !important;
    border-radius: 10px !important;
    border: none !important;
}

.card-header{
    text-align: center;
    background-color: transparent !important;
    border:none !important;
    
}
.card hr{
    width: 70%;
    margin: 0 auto;
    background-color: var(--fifth-color);

}

.card-footer{
    border: none !important;
    background-color: transparent !important;
    margin-bottom: 5%;
}

.card-img-top{
    border-top-right-radius: 10px !important ;
    border-top-left-radius: 10px !important ;
}

#project{
    margin-top: 15%;
}

#project h4{
    color: var(--fifth-color) !important;
    text-transform: uppercase;
}
#project h2{
    color: var(--main-color) !important;
}

.projectlink{
    background-color: rgba(68, 174, 255, 0.2);
    border-radius: 15px;
    padding: 10px;
}
#SaveYourTime{
    margin-top:5%;
}
#save{
    margin-top:15%;
}
#save h4{
    color: var(--fifth-color) !important;
    text-transform: uppercase;
}
#save h2{
    color: var(--main-color) !important;
}

#ourfeeds{
    margin-top: 15%;
}

#ourfeeds h4{
    color: var(--fifth-color) !important;
    text-transform: uppercase;
}
#ourfeeds h2{
    color: var(--main-color) !important;
}

#testimonials{
    margin-top: 15%;
}

#testimonials h4{
    color: var(--fifth-color) !important;
    text-transform: uppercase;
}
#testimonials h2{
    color: var(--main-color) !important;
}

#t-banner{
    background: url('images/testbg.webp') no-repeat right 30%/50%;
    padding: 5%;
    margin-top: 5%;
    margin-bottom: 5%;
}
#t-banner h4{
    color: var(--fifth-color) !important;
    text-transform: uppercase;
}
#t-banner h2{
    color: var(--main-color) !important;
}


#reachus{
    margin-top: 15%;
}

#ReachUs{
    background: url('images/contact.webp') no-repeat right 50%/50%;
}

#reachus h4{
    color: var(--fifth-color) !important;
    text-transform: uppercase;
}
#reachus h2{
    color: var(--main-color) !important;
}

.social-box{
    transition: all 0.3s ease 0s;
    border-radius: 7px;
    background-color: white;
}

.social-main{
    font-weight: 500;
    font-size: 1.4rem !important;
    color: var(--fifth-color);
}

.social-tag{
    font-weight: 200;
    color: var(--main-color);
}
.social-box:hover{
    background-color: var(--second-color);
    color: white;
    transform: translateY(-7px);
}

.social-box:hover h5{
    color: var(--fourth-color) !important;
}

.social-box:hover small{
    color: yellow;
}


#small-footer{
    font-weight: 100px !important;
    margin-top: 5%;
    margin-bottom: 5%;
}


.form-controler{
    margin: 20px;
}
.form-controler input{
    width: 100%;
    text-decoration: none;
    padding: 10px;
    color: var(--second-color);
    border: 1px solid rgba(5, 247, 194, 0.575);
    border-radius: 5px;
    outline: none !important;
    height: 45px;
}

.form-controler select{
    width: 100%;
    text-decoration: none;
    color: var(--second-color);
    border: none;
    border-radius: 5px;
    outline: none !important;
}

.form-controler input[type=checkbox]{
    color: var(--second-color);
    border: none;
    border-radius: 15px;
    outline: none !important;
}

.form-controler textarea{
    width: 100%;
    text-decoration: none;
    color: var(--second-color);
    border: 1px solid rgba(5, 247, 194, 0.575);
    border-radius: 5px;
    resize: none;
    padding: 10px;
    outline: none !important;
    height: 55%;
}

.form-controler label{
    width: 100%;
    margin-top: 15px;
    font-size: 20px;
    text-align: left;
}
.form-controler ul{
    list-style-type: none;
    color: rgb(204, 43, 43);
    font-size: 0.7rem;
    text-align: left;
}

.form-controler span{
    color: rgb(204, 43, 43);
    font-size: 0.7rem;
}

.btn-circle{
    border-radius: 50%;
    outline: none !important;
    border:none !important;
    color: white !important;
    transition: all 0.3s ease 0s;
}

.btn-circle:hover{
    border-radius: 50%;
    background-color: transparent;
    color: var(--main-color) !important;
    transform: translateY(-7px);
}

.quote{
    border:none;
    border-radius: 15px;
    background-color: transparent;
    box-shadow: 0px 5px 25px rgba(0, 153, 255,0.7);
}
.modal-title{
    color: var(--main-color) !important;
}

#quote_form label{
    color: var(--second-color);
    font-size: 0.85rem;

}
#ContactUs{
    background:url('images/contact.webp') no-repeat center/cover;
    margin-top: 5%;
    margin-bottom: 5%;
}


/*CUSTOM SCROLLBAR*/
::-webkit-scrollbar{
	width: 8px;
}
::-webkit-scrollbar-track{
	background-color: rgba(255, 240, 244,0.15);
}
::-webkit-scrollbar-thumb{
	border-radius: 2px;
	background-color: var(--second-color);
}

::-webkit-scrollbar-thumb:hover{
	background-color: var(--main-color);
}

/*CUSTOM SELECTION TEXT*/
::-moz-selection {
	background: var(--main-color);
	color: var(--fourth-color);
}
::selection {
	background: var(--main-color);
	color: var(--fourth-color);
}


/* CHAT WINDOW CSS */
html, body {      
    height:100%;  
  }
  #center-text {          
    display: flex;
    flex: 1;
    flex-direction:column; 
    justify-content: center;
    align-items: center;  
    height:100%;
    z-index: 999999999999999999999999999999999999999999999999999999;
    
  }
  #chat-circle {
    position: fixed;
    bottom: 50px;
    right: 50px;
    background: var(--main-color);
    width: 80px;
    height: 80px;  
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.6), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    z-index: 999999999999999999999999999999999999999999999999999999;
  }
  
  .btn#my-btn {
       background: white;
      padding-top: 13px;
      padding-bottom: 12px;
      border-radius: 45px;
      padding-right: 40px;
      padding-left: 40px;
      color: #5865C3;
      z-index: 999999999999999999999999999999999999999999999999999999;
  }
  #chat-overlay {
      background: rgba(255,255,255,0.1);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      display: none;
      z-index: 999999999999999999999999999999999999999999999999999999;
  }
  
  
  .chat-box {
    display:none;
    background: #efefef;
    position:fixed;
    right:30px;
    bottom:50px;  
    width:350px;
    max-width: 85vw;
    max-height:100vh;
    border-radius:5px;  
  /*   box-shadow: 0px 5px 35px 9px #464a92; */
    box-shadow: 0px 5px 35px 9px #ccc;
    z-index: 999999999999999999999999999999999999999999999999999999;
  }
  .chat-box-toggle {
    float:right;
    margin-right:15px;
    cursor:pointer;
    font-size: 15px;
    z-index: 999999999999999999999999999999999999999999999999999999;
  }
  .chat-box-header {
    background: var(--main-color);
    height:50px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    text-align:center;
    font-size:20px;
    padding-top:17px;
    z-index: 999999999999999999999999999999999999999999999999999999;
  }
  .chat-box-body {
    position: relative;  
    height:370px;  
    height:auto;
    border:1px solid #ccc;  
    overflow: hidden;
    z-index: 999999999999999999999999999999999999999999999999999999;
  }
  .chat-box-body:after {
    content: "";
    opacity: 0.1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height:100%;
    position: absolute;
    z-index: -1;
  }
  #chat-input {
    background: #f4f7f9;
    width:100%; 
    position:relative;
    height:47px;  
    padding-top:10px;
    padding-right:50px;
    padding-bottom:10px;
    padding-left:15px;
    border:none;
    resize:none;
    outline:none;
    border:1px solid #ccc;
    color:#333;
    border-top:none;
    border-bottom-right-radius:5px;
    border-bottom-left-radius:5px;
    overflow:hidden; 
    z-index: 999999999999999999999999999999999999999999999999999999; 
  }
  .chat-input > form {
      margin-bottom: 0;
      z-index: 999999999999999999999999999999999999999999999999999999;
  }
  #chat-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #aaa;
  }
  #chat-input::-moz-placeholder { /* Firefox 19+ */
    color: #aaa;
  }
  #chat-input:-ms-input-placeholder { /* IE 10+ */
    color: #aaa;
  }
  #chat-input:-moz-placeholder { /* Firefox 18- */
    color: #aaa;
  }
  .chat-submit {  
    position:absolute;
    bottom:7px;
    right:3px;
    background: transparent;
    box-shadow:none;
    border:none;
    border-left: px solid rgba(0,0,0,0.4);
    color:var(--main-color);
    width:35px;
    height:35px;
    z-index: 999999999999999999999999999999999999999999999999999999;  
  }
  .chat-logs {
    padding:15px; 
    height:370px;
    overflow-y:scroll;
    z-index: 999999999999999999999999999999999999999999999999999999;
  }
  
  .chat-logs::-webkit-scrollbar-track
  {
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
      background-color: #F5F5F5;
  }
  
  .chat-logs::-webkit-scrollbar
  {
      width: 5px;  
      background-color: #F5F5F5;
  }
  
  .chat-logs::-webkit-scrollbar-thumb
  {
      background-color: var(--main-color);
  }
  
  
  
  @media only screen and (max-width: 500px) {
     .chat-logs {
          height:40vh;
      }
  }
  
  .chat-msg.user > .msg-avatar img {
    width:45px;
    height:45px;
    border-radius:50%;
    float:left;
    width:15%;
    z-index: 999999999999999999999999999999999999999999999999999999;
  }
  .chat-msg.self > .msg-avatar img {
    width:45px;
    height:45px;
    border-radius:50%;
    float:right;
    width:15%;
    z-index: 999999999999999999999999999999999999999999999999999999;
  }
  .cm-msg-text {
    background:white;
    padding:10px 15px 10px 15px;  
    color:#666;
    max-width:75%;
    float:left;
    margin-left:10px; 
    position:relative;
    margin-bottom:20px;
    border-radius:30px;
    z-index: 999999999999999999999999999999999999999999999999999999;
  }
  .chat-msg {
    clear:both;  
    z-index: 999999999999999999999999999999999999999999999999999999;  
  }
  .chat-msg.self > .cm-msg-text {  
    float:right;
    margin-right:10px;
    background: var(--main-color);
    color:white;
    z-index: 999999999999999999999999999999999999999999999999999999;
  }
  .cm-msg-button>ul>li {
    list-style:none;
    float:left;
    width:50%;
    z-index: 999999999999999999999999999999999999999999999999999999;
  }
  .cm-msg-button {
      clear: both;
      margin-bottom: 70px;
      z-index: 999999999999999999999999999999999999999999999999999999;
  }