/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #666666;
    background: #dddddd;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #030f27;
}

a {
    color: #666666;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #fdbe33;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width:100%;
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #fdbe33;
    color: #121518;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #fdbe33;
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}

.btn {
    transition: .3s;
}
/*************Loader*****************/

/* style.css */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3; /* Light grey background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of other content */
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.spinner {
    border: 8px solid #f3f3f3; /* Light grey border */
    border-top: 8px solid #3498db; /* Blue spinner part */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 5s linear infinite; /* Faster, smooth rotation */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Class to hide the preloader */
.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}
 /* Mobile adjustments */
@media (max-width: 767.98px){
  .spinner {
        width: 50px;
        height: 50px;
        border-width: 5px;}
  
} 

/*************Loader*****************/

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 100px;
    background: white;
  }
  .top-bar .logo {
    padding: 15px 0;
    text-align: left;
    overflow: hidden;
  }
  .top-bar .logo img {
    max-width: 100%;
    max-height: 85px;
  }
  .top-bar .logo img {
    animation: slide-in 2s ease-in forwards;
    opacity: 0;
  }
  @keyframes slide-in {
    from {
      opacity: 0;
      transform: translatex(150px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  .top-bar .top-bar-item {
    display: flex;
    align-items: center;
  }
  .top-bar .top-bar-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-bar .top-bar-icon [class^="flaticon-"]::before {
    margin: 0;
    color: #fdbe33;
    font-size: 30px;
  }
  .top-bar .top-bar-text {
    padding-left: 10px;
  }
  .top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    color: #030f27;
    font-size: 16px;
    font-weight: 400;
  }
  .top-bar .top-bar-text p {
    margin: 0;
    color: #030f27;
    font-size: 13px;
    font-weight: 400;
  }
  .top-bar .top-bar-text h3,
  .top-bar .top-bar-icon,
  .top-bar .top-bar-text p {
    animation: slide-in 2s ease-in forwards;
    opacity: 0;
  }
  
  @keyframes slide-in {
    from {
      opacity: 0;
      transform: translatex(150px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @media (min-width: 992px) {
    .top-bar {
      padding: 0 60px;
    }
  }
  @media (max-width: 991.98px) {
    .top-bar .logo {
      text-align: center;
    }
  }
  
  
  /**********************************/
  /*********** Nav Bar CSS **********/
  /**********************************/
  .nav-bar {
    position: relative;
    background: #fdbe33;
    transition: .3s;
  }
  
  .nav-bar .container-fluid {
    padding: 0;
  }
  
  .nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
  }
  
  .nav-bar .navbar {
    height: 100%;
    background: #030f27 !important;
  }
  
  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link:focus,
  .navbar-dark .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link.active {
    color: #fdbe33;
    transition: none;
  }
  
  .nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
  }
  
  .nav-bar .btn {
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0;
  }
  
  .nav-bar .btn:hover {
    color: #030f27;
    background: #fdbe33;
    border-color: #fdbe33;
  }
  
  @media (min-width: 992px) {
    .nav-bar {
        padding: 0 75px;
    }
    
    .nav-bar.nav-sticky {
        padding: 0;
    }
    
    .nav-bar .navbar {
        padding: 20px;
    }
    
    .nav-bar .navbar-brand {
        display: none;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        text-transform: uppercase;
    }
  }
  
  @media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px;
    }
    
    .nav-bar a.nav-link {
        padding: 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
  }


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
    min-height: 400px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 35px;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: 0.2s;
}

.carousel .carousel-caption .btn:hover {
    color: #030f27;
    background: #fdbe33;
    border-color: #fdbe33;
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #fdbe33;
}

.page-header h2 {
    position: relative;
    color: #030f27;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #030f27;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #030f27;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #121518;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.section-header p {
    color: #fdbe33;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    margin-bottom: 45px;
}

.feature .col-md-12 {
    background: #030f27;
}
    
.feature .col-md-12:nth-child(2n) {
    color: #030f27;
    background: #fdbe33;
}

.feature .feature-item {
    min-height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature .feature-icon {
    position: relative;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -10px;
    border: 2px dotted #ffffff;
    border-radius: 60px;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 79px;
    height: 79px;
    top: -18px;
    left: -9px;
    background: #030f27;
    border-radius: 60px;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: #fdbe33;
}

.feature .feature-icon [class^="flaticon-"]::before {
    position: relative;
    margin: 0;
    color: #fdbe33;
    font-size: 60px;
    line-height: 60px;
    z-index: 3;
}

.feature .feature-text {
    padding-left: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    color: #fdbe33;
    font-size: 25px;
    font-weight: 600;
}

.feature .feature-text p {
    margin: 0;
    color: #fdbe33;
    font-size: 18px;
    font-weight: 400;
  line-height: 30px;
  letter-spacing: 1px;
}

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: #030f27;
}
.feature .feature-text p,
.feature .feature-text h3,
.feature .feature-icon {
  animation: slide-in 2s ease-in forwards;
  opacity: 0;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translatex(150px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
  }
  
  .about .section-header {
    margin-bottom: 30px;
  }
  
  .about .about-img {
    position: relative;
    height: 100%;
  }
  
  .about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.8);
    transition: 0.5s ease-in-out;
  }
  
  .about .about-text p {
    font-size: 16px;
    line-height: 32px;
  }
  
  .about .about-img,
  .about .about-text p,
  .about .section-header {
    animation: slide-in 2s ease-in forwards;
    opacity: 0;
  }
  
  @keyframes slide-in {
    from {
      opacity: 0;
      transform: translatex(150px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  @media (max-width: 767.98px) {
    .about .about-img {
      margin-bottom: 30px;
      height: auto;
    }
  }
  

  /*******************************/
  /********** Fact CSS ***********/
  /*******************************/
  .fact {
    position: relative;
    width: 100%;
    padding: 45px 0;
  }
  
  .fact .col-6 {
    display: flex;
    align-items: flex-start;
  }
  
  .fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#ffffff, #fdbe33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(#ffffff, #030f27);
  }
  
  .fact .fact-left,
  .fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .fact .fact-text h2 {
    font-size: 35px;
    font-weight: 700;
  }
  
  .fact .fact-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .fact .fact-left {
    color: #fdbe33;
    background: #030f27;
  }
  
  .fact .fact-right {
    color: #030f27;
    background: #fdbe33;
  }
  
  .fact .fact-left h2 {
    color: #fdbe33;
  }
   
  /*******************************/
  /*********mobile *********/
  /*******************************/
  
  @media (max-width: 767.98px) {
      .fact .fact-text p {
          font-size: 12px;
          font-weight: bold;
      }
  }
  
  @media (max-width: 360.98px) {
      .fact .fact-text p {
          font-size: 9px;
          font-weight: bold;
      }
  }
  
  /*******************************/
  /********* Service CSS *********/
  /*******************************/
  .service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
  }
  
  .service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .service .service-img {
    position: relative;
    overflow: hidden;
  }
  
  .service .service-img img {
    width: 100%;
   
  }
  
  .service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, 0.7);
    transition: 0.5s;
    opacity: 0;
  }
  
  .service .service-item:hover .service-overlay {
    opacity: 1;
  }
  
  .service .service-overlay p {
    margin: 0;
    color: #ffffff;
  }
  
  .service .service-overlay ul {
    padding-left: 1.4rem;
    text-align: left;
    color: #ffffff;
    font-size: 16px;
  }
  .service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .service .service-text h3 {
  
    width:100%;
    font-size: 20px;
    font-weight: 700;
    color: #fdbe33;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #fdbe33;
    border-radius: 0;
    transition: 0.3s;
  }
  
  .service .service-item:hover a.btn {
    color: #ffffff;
  }
  @media (max-width: 820px) {
    .service .service-overlay ul {
        font-size: 12px;
    }
  }
  



/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
  position: relative;
  width: 100%;
}

@media(max-width: 991.98px) {
  .sidebar {
      margin-top: 45px;
  }
}

.sidebar .sidebar-widget {
  position: relative;
  margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 5px;
  font-size: 30px;
  font-weight: 700;
}
.sidebar .sidebar-widget .widget-title::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 5px;
  bottom: 0;
  left: 0px;
  background: #fdbe33;
}

.sidebar .sidebar-widget .category-widget {
  position: relative;
}

.sidebar .category-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar .category-widget ul li {
  margin: 0 0 12px 22px; 
  
}

.sidebar .category-widget ul li:last-child {
  margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
  display: inline-block;
  line-height: 23px;
}
.sidebar .category-widget ul li:hover {
  color: #fdbe33;
}

.sidebar .category-widget ul li::before {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fdbe33;
  left: 1px;
}


.sidebar .image-widget img {
  max-width: 100%;
  transition: .3s;
}

.sidebar .image-widget img:hover {
  transform: scale(1.1);
}

  /*******************************/
  /*********** Team CSS start **********/
  /*******************************/
  
  .team {
    position: relative;
    width: 100%;
    padding: 10px;
  }
  .team .team-img img {
    width: 50%;
    margin:  15px 25% ;
  
  }
  /*******************************/
  /*********** Team CSS end**********/
  /*******************************/
  
  /*--------------------------------------------------------------
  # Project start
  --------------------------------------------------------------*/
  
  div.gallery {
    border: 5px solid #d9d8d8;
    margin-bottom: 12px;
  
  }
  div.gallery:hover {
  border:5px solid #fdbe33;
    opacity: 0.5;
  }
  div.gallery img {
    width: 100%;
    height: auto;
  }
  div.desc {
    padding: 15px;
    text-align: center;
    font-size: 15PX;
    font-weight: bold;
    color: rgb(7, 2, 74);
  }
  
  * {
    box-sizing: border-box;
  }
  
  .responsive {
    padding: 0 6px;
    float: left;
    width: 25%;
  }
  .head {
    padding: 15px;
    text-align: left;
    font-size: 20PX;
    font-weight: bold;
  }
  
  @media only screen and (max-width: 768.98px) {
    .responsive {
      width: 50%;
      margin: 6px 0;
      
    }
  }
  
  @media only screen and (max-width: 360.98px) {
    .responsive {
      width: 100%;
    }
  }
  @media only screen and (max-width: 900px) {
    div.desc {
      font-size: 8px;
      font-weight: bold;
    }
  }
  @media only screen and (max-width: 900px) {
    .head {
      font-size: 8px;
      font-weight: bold;
    }
  }
  /* project completed */
  .project-completed {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px; 
    background-color: #ffffff;
  }
  
  .completed-text {
  font-size: 14px;
  font-weight: bold;
  color: #06a50b;
  animation: fade 2s ease-in-out infinite alternate;
}
.running-text {
  font-size: 14px;
  font-weight: bold;
  color: #0d25ff;
  animation: fade 2s ease-in-out infinite alternate;
}
.upcoming-text {
  font-size: 14px;
  font-weight: bold;
  color: #ff6600;
  animation: fade 2s ease-in-out infinite alternate;
}
  @keyframes fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  

  /*--------------------------------------------------------------
  # Project end
  --------------------------------------------------------------*/
  .mySlides {display: none;}
  img {vertical-align: middle;
   }
  
  /* Slideshow container */
  .slide-container {
    max-width: 700px;
    position: relative;
    margin: auto;
  }
   h2
   {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
  } .slide-container .mySlides img {
  margin-top: 10px;
  border: 3px solid #f3f3f3;
  }
  /* Caption text */
  
  /* Number text (1/3 etc) */
  .number text {
    color: #ffffff;
    font-size: 12px;
    padding: 16px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  
  .active {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 2s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
  .text {font-size: 10px}
  }
  /*--------------------------------------------------------------
  # gallery
  --------------------------------------------------------------*/
  
  /*******************************/
  /********** Video CSS **********/
  /*******************************/
  .back-video {
  position:absolute;
  right: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  
  }
  
    
  .video { 
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 250px;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
   } 
  
  
  
  /*******************************/
  /********* Contact CSS *********/
  /*******************************/

 .contact {
  padding: 80px 0;
  display: flex;
  background-color: #ffffff;
}
.contact .row {
  background-color: #030f27;
}
.contact .section-header p {
  margin-bottom: 0;
  color:  #fdbe33;
}

.contact .section-header h2 {
  color: #030f27;
  margin-bottom: 50px;
}

.contact-item {
  text-align: center;
  margin-bottom: 40px;
}

.contact-item i {
  font-size: 36px;
  color: #ff6b6b;
}

.contact-item h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color:#fdbe33;
}

.contact-item p {
  font-size: 16px;
  color:  #ffffff ;
} 

  h4 {
    color: #030f27;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
  }
  iframe{
    width: 100%;
    height: 500px;
    display: flex;
    color: #030f27;
    
  } 
  
  /* Clients Section
  --------------------------------*/
  
  .team img {
    opacity: 0.5;
    transition: 0.3s;
  }
  
  .team img:hover {
    opacity: 1;
  }
  
  
  /*******************************/
  /*********mobile *********/
  /*******************************/
  
  @media (max-width: 768.98px) {
      .contact .contact-text p {
          font-size: 12px;
      }
  }
  @media (max-width: 360.98px) {
      .contact .contact-text p  {
          font-size: 10px;
      }
  }
 @media (max-width: 768.98px) {
  iframe { 
    width: 98%;
    height: 500px;
    margin: 0 3px;
  }
}

@media (max-width: 768.98px) {
  h4 { font-size: 30px; }
}
 
  /*******************************/
  /********* Footer CSS **********/
  /*******************************/
  .footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #030f27;
    color: #ffffff;
  }
  .footer .footer-contact,
  .footer .footer-link,
  .footer .newsletter {
    position: relative;
    margin-bottom: 45px;
  }
  .footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fdbe33;
    text-align: left;
  }
  .footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #fdbe33;
  }
  .footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: 0.3s;
  }
  .footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
  }
  .footer .footer-link a:hover {
    color: #fdbe33;
    letter-spacing: 1px;
  }
  .footer .footer-contact p i {
    width: 25px;
  }
  .footer .footer-contact p span {
    background: url("../img/mapnew.png") no-repeat 0 0;
    background-size: 18px 18px;
    width: 18px;
    height: 18px;
    display: inline-block;
    margin: 2px 3p -2px 0;
  }
  .footer .footer-contact p span.tele {
    background: url("../img/contact.png") no-repeat 0 0;
    background-size: 18px 18px;
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 8px;
  }
  .footer .footer-contact p.mail {
    font-size: 14px;
  }
  .footer .footer-social {
    position: relative;
    margin-top: 20px;
  }
  .footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, 0.3);
    border-radius: 60px;
    transition: 0.3s;
  }
  .footer .footer-social a {
    animation: slide-in 2s ease-in forwards;
    opacity: 0;
  }
  
  @keyframes slide-in {
    from {
      opacity: 0;
      transform: translatex(150px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .footer .footer-social a i {
    font-size: 15px;
    color: white;
  }
  .footer .footer-social a:hover {
    background: #fdbe33;
    border-color: #fdbe33;
  }
  .footer .footer-social a:hover i {
    color: #030f27;
  }
  .footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
  }
  .footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer .footer-menu .f-menu a:hover {
    color: #fdbe33;
  }
  .footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  .footer .copyright {
    padding: 30px 15px;
  }
  .footer .copyright p {
    margin: 0;
    color: #ffffff;
  }
  .footer .copyright p a {
    color: #fdbe33;
    font-weight: 500;
    letter-spacing: 1px;
  }
  .footer .copyright p a:hover {
    color: #ffffff;
  }
  @media (max-width: 768px) {
      .footer .copyright p,
      .footer .copyright .col-md-6:last-child p {
          margin: 5px 0;
          text-align: center;
      }
  }
/* Floating WhatsApp button (desktop) */
.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 90px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}
.whatsapp_float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}
.whatsapp-icon {
  font-size: 32px;
  line-height: 0;
}

/* For smaller screens (mobile) */
@media screen and (max-width: 768px) {
  .whatsapp_float {
    width: 50px;
    height: 50px;
    bottom: 70px;
    right: 15px;
    font-size: 26px;
  }
  .whatsapp-icon {
    font-size: 28px;
  }
}






