@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');

:root {
    --brand_transparent: rgba(255, 77, 41, 1); /* 60% opacity */

    --brand: #ff4d29;
/*   --brand: #F53333;*/
    --dark: #092032;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    
}

body {
    font-family: "Barlow", sans-serif;
    color: var(--body);
    line-height: 1.7;
}

h1,h2,h3,h4,h5,h6,
.display-1,.display-2,.display-3,.display-4 {
    font-weight: 600;
    color: var(--dark);
}

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

img {
    width: 100%;
}

a {
    color: var(--dark);
    transition: all 0.4s ease;
    font-weight: 500;
}

a:hover {
    color: var(--brand);
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.text-brand {
    color: var(--brand) !important;
}


.hero-slider .owl-prev,
.hero-slider .owl-next{
    background-color: rgba(255, 255, 255, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: block;
    display: grid;
    place-items: center;
    color: #fff !important;
    border-radius: 100px;
    line-height: 0;
    border-radius: 100px !important;
    position: absolute;
    top: 50%;
    font-weight: 600 !important;
    font-size: 12px !important;
    transition: all 0.4s ease;
    margin-top: -30px !important;
}

.owl-prev {
    left: 0;
}
.owl-next {
    right: 0;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
    background-color: var(--brand) !important; 
}

.owl-dot.active span{
    background-color: var(--brand) !important;
}


 /* slide */
 .slide {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     background: rgb(128, 128, 128);
}

.slide1 {
   background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/banner1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide2{
   background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/01.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide3 {
   background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/tri1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide .display-3 {
    text-transform: uppercase;
    color: #fff;
}

/* navbar */
.top-nav {
    background-color: var(--brand);
    color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
}

.top-nav p {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

.top-nav span,
.top-nav i {
    vertical-align: middle;
}

.navbar {
    box-shadow: var(--shadow);
     
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    color: #fff;
    background-color: lightgreen ; /*rgba(255, 255, 255, 0.25);*/
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.social-icons a:hover {
    background-color: black;
    color: var(--brand);
}
.navbar-nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--brand);
}

.navbar .navbar-nav .nav-link.active {
    color: var(--brand);
}
.navbar ul li{
    margin-right: 20px;
    
    text-transform:;
    display: flex; justify-content: flex-start;

}
.navbar ul li .mega-menu {
     width: auto; height: auto; position: absolute; z-index: 500; background-color: #079BF5; box-shadow: -2px 2px 70px -27px rgba(0, 0, 0, 0.3);
     opacity: 0.4; visibility: hidden ; margin-top: 70px;  transition: all 0.5s ease;
     padding: 20px 30px; color: blue;  left: 50%; transform: translateX(-50%);

}
.navbar ul li .mega-menu img{
width: 250px; height: 40vh; 
}
.navbar ul li .mega-menu.sub-menu{
    max-width: 85vw; width: 100%;
    display: flex;
    background-color: var(--brand_transparent);
   

}

.navbar ul li .mega-menu.sub-menu{
    max-width: 85vw; width: 100%;
    display: flex;
    background-color: var(--brand_transparent);
   color: red;

}
.navbar ul li .mega-menu.sub-menu ul li  .card{
    width: 100%; 
    height: 150px;
    background-color: ghostwhite;
    font-style: normal;
    text-decoration: underline none;
    margin: 20px;
    color: black;
    transition: transform 0.3s ease; /* smooth animation */
}
.navbar ul li .mega-menu.sub-menu ul li  .card:hover {
    width: 100%; 
    background-color: yellow;
    font-style: normal;
    color: red;
    margin: 20px;
    transform: translate(20px, -20px); /* move right + down */
}
.navbar ul li:hover .mega-menu {
     margin-top: 50px;
     visibility: visible;
     opacity: 1;
/*     color: var(--brand);*/
color: whitesmoke;

     
}


.navbar-brand {
    font-size: 40px;
    font-weight: 900;
    font-style: bold;
}

.navbar-brand .dot {
    color: var(--brand);
}

.btn {
    padding: 8px 26px;
}

.btn-brand {
    border-color: var(--brand);
    background-color: var(--brand);
    color: #fff;
}

.btn-brand:hover {
    background-color: #d64022;
    border-color: #d64022;
    color: #fff;
}

.about1{
  background:  #082032;
  color: #209dd8;
  margin-top: -10px;
  

}
.about1 h2{
  margin-top: 500px;
}
.about1 .container{
  background: #010e1b;
  height: 100vh;
  margin-top: -80px;
  margin-bottom: -80px;
}
.container h2{
  margin-top: 0px;
  color: #079BF5;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 400px;
  
}
.container h5{
  color: red;
}

@media(max-width:986px){
  .about1 .container{
    background: #010e1b;
    height: 100vh;
    width: 100%;
    display: inline;
  }

}



.intro {margin-bottom: 36px;
text-align: center;}

.intro p {
    max-width: 500px;
}
.intro h6{
    color: var(--brand);
    font-weight: 400;
    text-transform: uppercase;
}

.intro h1 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.info-box {
    align-items: center;
    display: flex;
}

.info-box img {
    width: 90px;
    align-items: flex-start;
    justify-content: flex-start;
}


#milestone {
   background: #010e1b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



#milestone h1,
#milestone p {
    color: var(--brand);
}



.container-skill {
  width: 100wh; height: 70vh;
  background: rgb(252, 250, 250);
  display: flex;
  align-content: space-between;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.container-skill .image-container{
  width:50%; height:100%; align-items: center; justify-content: center;
}
.container-skill img{
  width:90%; height:100%; margin-left:10%; margin-right:5%; align-items: center;
}
.skills{
  margin-right: 30px;
  margin-left: 30px;
  width: 50%; height: 100%;
}
.skills h3{
  font-weight: 500px;
  font-size: 50px;
}
.skills h2{
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 5px;
  color: var(--brand);
  font-size: 16px;
  font-style: bold;


}
.progress-bar{
  background: #e9e8e8;
  width: 100%;
  height: 10px;
  border-radius: 5px;
}
.progress-bar div{
  height: 10px;
  border-radius: 5px;
  width: 0%;
  
}
.progress-bar div span{
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #fff;
  float: right;
  margin-top: -15px;
  margin-right: -20px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.html{
  background: var(--brand);
  animation: html 1s linear forwards;
}
.css{
  background: greenyellow;
  animation: css 2s linear forwards;
}
.javascript{
  background: purple;
  animation: javascript 3s linear forwards;
}
.python{
  background: green;
  animation: python 4s linear forwards;
}
.react{
  background: skyblue;
  animation: react 5s linear forwards;
}


.html span{
  border: 1px solid rgb(10, 173, 5);
}
.css span{
  border: 1px solid rgb(224, 94, 7);
}
.javascript span{
  border: 1px solid rgb(56, 4, 139);
}
.python span{
  border: 1px solid yellow;
}
.react span{
  border: 1px solid rgb(255, 0, 0);
}
@keyframes html {
  100%{
    width: 100%;
  }
}
@keyframes css {
  100%{
    width: 80%;
  }
}
@keyframes javascript {
  100%{
    width: 70%;
  }
}
@keyframes python {
  100%{
    width: 50%;
  }
}
@keyframes react {
  100%{
    width: 40%;
  }
}




@media (max-width: 992px) {
  .container-skill {
    max-width: 100%;
    height: 100vh;
    margin: 0 auto 30px auto;
    display: inline;
    align-items: center;
    justify-content: center;
  }
  .skills {
    margin-right: 20px;
    margin-left: 20px;
    width: 100%; height: 100%;
    align-items: center; justify-content: center;
  }

  .container-skill .image-container{
    width:100%; height:100%; align-items: center; justify-content: center;
  }
  .container-skill img{
    width:100%; height:100%; margin-left:10%; margin-right:5%; align-items: center;
  }
  .skills h3{
    font-weight: 300px;
    font-size: 30px;
    align-items: center;
    justify-content: center;

  }




}





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

@media (max-width: 767px) {
  .container-skill {
    width: 100%; height: 100vh;
    margin: 20px auto 30px auto;
    display: inline;
    align-items: center;
    justify-content: center;
  }
  .container-skill .image-container{
    width:100%; height:100%; align-items: center; justify-content: center;
  }
  .container-skill img{
    width:100%; height:100%; margin-left:10%; margin-right:5%; align-items: center;
  }

  .skills{
    margin-right: 30px;
    margin-left: 30px;
    width: 100%; height: 100%;
    align-items: center; justify-content: center;
  }



  .skills h3{
    font-weight: 300px;
    font-size: 30px;
    align-items: center;
    justify-content: center;

  }
  .skills h2{
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 5px;
    color: var(--brand);
    font-size: 16px;
    font-style: bold;
  
  
  }
  .progress-bar{
    background: #e9e8e8;
    width: 100%;
    height: 8px;
    border-radius: 5px;
  }
  .progress-bar div{
    height: 10px;
    border-radius: 5px;
    width: 0%;
    
  }
  .progress-bar div span{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #fff;
    float: none;
    margin-top: -15px;
    margin-right: -20px;
    color: #333;
    display: inline-block;
    align-items: center;
    justify-content: center;
  }










}

@media (max-width: 420px) {
  .container-skill {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}



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


















/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #37517e;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #47b2e4;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 1px;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #37517e;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}


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


.service {
    position: relative;
    overflow: hidden;
    background: var(--brand);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;

    width: 100%;
    height: 100%;
}

.service-icon {
    width: 70px;
    transition: transform 0.3s ease;
}

.service:hover .service-icon {
    transform: scale(1.1);
}

/* Hover Image Overlay */
.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hover-image img {
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transform: scale(1);
    transition: transform 1.2s ease; 
}


.service:hover .hover-image {
    opacity: 1;
}

.service:hover .hover-image img {
    transform: scale(1.2); 
}

.service h5 {
    margin-top: 24px;
    margin-bottom: 14px;
    color: yellow;
}



.service p {
    margin-top: 24px;
    margin-bottom: 14px;
    color: black;
}





/*.service {*/
/*    padding: 32px;*/
/*    background-color: silver;*/
/*    box-shadow: shadow;*/
/*    border-radius: 10px;*/
/*    display: list-item; list-style: none;*/
/*    transition: 0.3s;*/
/*    transform: perspective(1);*/
/*    transform-style: fade in;*/
/*    animation-fill-mode: forwards;*/
/*}*/



/*.service:hover{*/
/*    background-color: var(--brand);*/
/*    transition: all 0.3s ease-out;*/
/*    margin-top: -15px;*/
/*    color: whitesmoke;*/
    /*background: ;*/
/*}*/
/*.service h5 {*/
/*    margin-top: 24px;*/
/*    margin-bottom: 14px;*/
/*}*/

/*.service img {*/
/*    width: 90px;*/
/*}*/


.project {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.project h6 {
    font-weight: 400;
}

.project h6::before {
    content: "";
    height: 2px;
    width: 30px;
    display: inline-block;
    background: var(--brand);
    vertical-align: middle;
    margin-right: 10px;
}


.project .overlay {
    width: 100%;
    height: 150px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 76, 41, 0) 0%, var(--dark) 100%);
}

.project .content {
    position: absolute;
    left: 10%;
    bottom: 10%
}
.project img{
    width: 100%; height: 50vh;
}
.project h2,
.project h6 {
    color: #fff;
}

.team-member {
    text-align: center;
    transition: 0.5s;
    
}

.team-member .image{
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: ease-in-out 0.3s;
    border-radius: 100%;
    width: 200px; height: 200px;
    margin-left: 70px;
}

.team-member .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: -10%;
    background-color: rgba(255, 77, 41, 0.7);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member h5 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: black;
}

.team-member .social-icons {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member .social-icons a {
    width: 40px;
    height: 40px;
}

.team-member:hover .social-icons {
    top: 50%;
    opacity: 1;
}

.team-member:hover .overlay {
    top: 0%;
    opacity: 1;
}

#reviews {

    background: linear-gradient(-90deg, rgba(8, 32, 50, 0.8), rgba(8, 32, 50, 0.8)), url(../img/bg_banner1.jpg), #082032;;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.review {
    text-align: center;
    z-index: 2;
    position: relative;
    margin: 15px;
    max-width: 768px;
    margin: auto;
}

.review .bxs-quote-alt-left {
    font-size: 120px;
    position: absolute;
    opacity: 0.1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.review img {
    width: 200px !important;
    height: 200px;
    border-radius: 100px;
    margin: auto;
}

.review h5 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: #fff;
}

.review h3 {
    margin-top: 26px;
    margin-bottom: 26px;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    line-height: 1.7;
}

.review small {
    color: var(--brand);
}

.review .stars {
    color: var(--brand);
}



/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;

}
.pricing .box:hover{
    border-top: 4px solid var(--brand);

}
.pricing h2{
  color: var(--brand);
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}

.pricing h4 {
  font-size: 48px;
  color: var(--brand);
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #37517e;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: var(--brand);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid var(--brand);
}

.pricing .buy-btn:hover {
  background: var(--brand);
  color: #fff;
}

.pricing .featured {
  border-top-color: var(--brand);
}

.pricing .featured .buy-btn {
  background: var(--brand);
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: var(--shadow);
   color: var(--brand);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}













.blog-post {
    position: relative;
    background-color: lightgray;
    box-shadow: var(--shadow);
}

.blog-post .content {
    padding: 32px;
}

.blog-post a {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--brand);
    padding: 2px 12px;
    border-radius: 100px;
    text-decoration: none;
    color: #fff;
}

.blog-post h5 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.blog-post small {
    text-transform: uppercase;
    color: var(--brand);
    text-decoration: underline;
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: var(--brand);
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #47b2e4;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #209dd8;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




















/* =========================ORIGINAL FOOTER=====================================



footer {
    background: linear-gradient(0deg, rgba(8, 32, 50, 0.9), rgba(8, 32, 50, 0.9)), url(../img/bg_banner1.jpg), #082032;;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

footer .footer-top {
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    padding-top: 20px;
}

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

footer p {
    color: #ADB3B9;
}

footer .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-left: 4px;
    margin-right: 4px;
}


*/
.loader {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    z-index: 99999;
    position: fixed;
    left: 0;
    right: 0;
}


input.form-control {
    border-color: transparent;
    height: 44px;
}

.form-control {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.04);;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--brand);
}













/*--------------------------------------------------------------
# Footer--------secondary-----------
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #37517e;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
  
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
/*  background: rgba(2, 26, 63, 0.404);*/
background-color: var(--brand);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #0758e4;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #f9f9fa;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #0758e4;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f4f7f8;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fcf8f8;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--brand);
  color: rgb(255, 255, 255);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #1c990b;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}


/* ========== Footer Styling ========== */
.site-footer {
  background-color: var(--brand);
  color: #f5f5f5;
  padding: 60px 0 20px;
  font-family: "Poppins", sans-serif;
}

.site-footer img {
  max-width: 160px;
  margin-bottom: 20px;
}

.site-footer h4.footer-heading {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
}

.site-footer h4.footer-heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ffffff;
  margin-top: 8px;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  color: #dcdcdc;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.site-footer ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.site-footer p {
  color: #e0e0e0;
  font-size: 14px;
}

.site-footer .social-icons a {
  color: #ffffff;
  font-size: 20px;
  margin-right: 15px;
  transition: 0.3s;
}

.site-footer .social-icons a:hover {
  color: #222;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
}

.site-footer .input-group input {
  border: 1px solid #fff;
  color: #fff;
}

.site-footer .input-group input::placeholder {
  color: #ddd;
}

.site-footer .btn-primary {
  background: #fff;
  color: var(--brand);
  border: none;
  transition: 0.3s;
}

.site-footer .btn-primary:hover {
  background: #222;
  color: #fff;
}

.site-footer .row.pt-5 {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

.site-footer .row.pt-5 a {
  color: #fff;
  font-weight: 600;
}

.site-footer .row.pt-5 a:hover {
  text-decoration: underline;
}


<style>
/* Default styling for info boxes */
.info-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  align-items: center;
}

/* Add hover effect */
.info-box:hover {
  transform: translateY(-8px);
  background: #f9f9f9;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Optional: add slight animation for image or icon */
.info-box img, 
.info-box video {
  transition: transform 0.3s ease;
}

.info-box:hover img,
.info-box:hover video {
  transform: scale(1.1);
}

/* Optional: text color transition */
.info-box h5, 
.info-box p {
  transition: color 0.3s ease;
}

.info-box:hover h5 {
  color: var(--brand, #007bff); /* fallback color if CSS variable not set */
}
</style>


