/*mobile view starts*/

@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}
body{
    max-width: 1920px;
    max-height: 1080px;
    margin:auto;
    font-size: 10px;
}
/* ----------------------------
   Navbar Links Base Style
----------------------------- */
.navbar-nav .nav-link {
  color: #000000;                 /* Default text color */
  text-decoration: none;          /* Remove underline */
  position: relative;
  display: inline-block;
  padding-bottom: 5px;            /* Spacing for underline */
  transition: color 0.3s ease;    /* Smooth color change */
  font-weight: 600;
}

/* ----------------------------
   Underline Effect
----------------------------- */
.navbar-nav .nav-link::after {
  content: "";
  display: block;
  width: 0%;                      /* Hidden by default */
  height: 2px;
  background-color: #4E4E4E;      /* Default underline color */
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* ----------------------------
   Hover State
----------------------------- */
.navbar-nav .nav-link:hover {
  color: #ec3e13;                 /* Orange on hover */
}
.navbar-nav .nav-link:hover::after {
  width: 50%;                     /* Show underline */
}

/* ----------------------------
   Active State (Custom Class)
   JS will toggle .nav_active
----------------------------- */
.navbar-nav .nav-link.nav_active {
  color: #BB5700 !important;      /* Orange stays when active */
  font-weight: 600;               /* Bold text when active */
}
.navbar-nav .nav-link.nav_active::after {
  width: 50%;                     /* Keep underline visible */
  background-color: #4E4E4E;      /* Underline color when active */
}

/* ----------------------------
   Active Hover State
----------------------------- */
.navbar-nav .nav-link.nav_active:hover::after {
  background-color: #002244;      /* Dark blue underline when hovering active link */
}


/* Remove default Bootstrap hamburger */
.navbar-toggler-icon {
    background-image: none !important;
}

/* Base styles for the bars */
.toggler-icon {
    width: 30px;
    height: 3px;
    background-color: #135938;
    display: block;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* ========= OPEN STATE (no .collapsed class) ========= */
.navbar-toggler:not(.collapsed) .top-bar {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .bottom-bar {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========= CLOSED STATE (with .collapsed class) ========= */
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0) translate(0, 0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0) translate(0, 0);
}

/* Optional: change bar color depending on state */
.navbar-toggler.collapsed .toggler-icon {
    background-color: #777777;
}

.navbar-toggler:not(.collapsed) .toggler-icon {
    background-color: #135938;
}

/* Remove outline and borders on focus/active */
.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}

.text-justify{
    text-align: justify !important;
}

/* Individual backgrounds */
.header-ownership::before {
    background-image: url('../../images/owner_service.png'); 
}
.header-lien::before { 
    background-image: url('../../images/lien_services.png'); 
}
.header-valuation::before { 
    background-image: url('../../images/condition_services.png'); 
}

/* Card box */
.product-box {
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px #00000029;
}

/* Product Header with background image + dark overlay */
.product-header {
    position: relative;
    text-align: center;
    padding: 25px 18px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

/* Background image (different for each card) */
.product-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Overlay */
.product-header::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
}

/* Product Items */
.product-item {
    display: flex;
    align-items: center;
    gap: 30px;                /* slightly more gap between icon & text */
    padding: 14px 7px;       /* increased padding for more breathing space */
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #B5DCEB; /* Default border (blue) */
    border-radius: 8px;
    margin: 12px 12px;        /* more consistent outer spacing */
    box-shadow: 0 2px 6px #00000029;
    transition: 0.2s ease;
}

/* Hover effect */
.product-item:hover {
    color: #f97316;                  
    border-color: #f97316;           
    background-color: #FFF3E9;      
    transition: all 0.3s ease;       
}

.product-item:hover img {
    transform: none;                 
    transition: transform 0.3s ease;
}

/* Icon inside product items */
.product-item img {
    height: 30px;
    width: auto;
}

/* ---------- Column Specific Styles (Updated) ---------- */

/* 1st and 3rd Columns - Shared Light Blue Background */
.col-lg-6 .product-box, 
.col-lg-3:last-child .product-box {
    background: #F1F9FC;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px #00000029;
}

/* 2nd Column - Distinct Background and Border */
.col-lg-3:nth-child(2) .product-box {
    background: #FFF5F3;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px #00000029;
}

.col-lg-3:nth-child(2) .product-item {
    border: 1px solid #EBCFC9;
}

/* Hover effect override for 2nd column */
.col-lg-3:nth-child(2) .product-item:hover {
    color: #f97316;
    border-color: #B5DCEB;
    background-color: #F1F9FC;
}



nav{
    max-width: 1920px;
    margin: auto;
}
html {
  scroll-behavior: smooth;       
  scroll-padding-top: 70px;      
}

.carousel-pagination-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cfcfcf;
    list-style: none;
    margin: 0px 8px;
    margin-top: 20px;
}
.play-btn button{
   background-color: rgb(243, 5, 5);
   color:rgb(255, 255, 255);
   border-radius: 10px;
   padding:.7rem 1.8rem;
   z-index: 99;
   cursor: pointer;
   border: none;
}
.mobile-pagination-bottom .active{
    width:50px !important;
    border-radius: 5px !important;
    background-color: #FFA100 !important;
    border-bottom: 0px solid transparent !important;
}
.btn-vertical-line{
    content: '';
    height: 33px;
    width: 2px;
    margin-top: 25px;
    background-color: #EDEDED;
}
/* .footer-icon{
    fill:#1CCDD3;
    background-color: white;
    font-size: 16px !important;
    width: 32px;
    height: 32px;
    margin: 8px;
    border-radius: 50%;
}
.footer-icon:hover{
    fill:white !important;
    background-color:#1CCDD3 ;
} */
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color,var(--swiper-theme-color));
    width: 25px !important;
    height: 5px !important;
    border-radius: 5px !important;
    transition: all .2s ease;
}
.lh-20{
    line-height: 20px !important;
}
.lh-30{
    line-height: 30px;
}
.lh-38{
    line-height: 30px;
}

.fs-13{
    font-size: 13px !important;
}
.fs-12{
    font-size: 0.8rem !important;
}
.fs-14{
    font-size: 0.9rem !important;
}
.fs-15{
    font-size: 15px !important;

}
.fs-16{
    font-size: 16px !important;
}
.fs-17{
    font-size: 17px !important;
}
.fs-18{
    font-size: 16px !important;
}
.fs-21{
    font-size: 21px !important;
}
.fs-22{
    font-size: 18px !important;
}
.fs-24{
    font-size: 20px !important;
}
.fs-34{
    font-size: 34px !important;
}
.fs-25{
    font-size: 25px !important;
}
.fs-28{
    font-size: 22px !important;
}
.fs-38{
    font-size: 25px !important;
}
.fs-45{
    font-size: 30px !important;
}
.fs-65{
    font-size: 28px !important;
}
.fw-bold700{
    font-weight: 700 !important;
}
.fw-bold500{
    font-weight: 500 !important;
}
.fw-700{
    font-weight: 700 !important;
}
.fw-400{
    font-weight: 400 !important;
}
.fw-300{
    font-weight: 300 !important;
}
.fw-500{
    font-weight: 500 !important;
}
.fw-600{
    font-weight: 600 !important;
}
.fw-800{
    font-weight: 800 !important;
}
.header-responsive{
    font-size: 22px;
}
.highlight_color{
    color:#42495B !important;
}
.highlight_colors{
    color:#FFA100;
}
/* .bn-fade-blue{
   background-color: #21315F;
   color: white;
} */
.bn-fade-blue {
  position: relative;
  overflow: hidden;           /* hide animated background outside */
  background-color: #21315F;  /* initial bg */
  color: white;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}

.bn-fade-blue::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;                /* start completely hidden */
  width: 100%;
  height: 100%;
  background: #1ccdd3;        /* hover background color */
  transition: left 0.5s ease-in-out;
  z-index: -1;  
                
}
.btn-data {
  position: relative;
  overflow: hidden; /* hide ::before overflow */
  border: 2px solid #1E2C5B;
  color: #1E2C5B;
  background: transparent;
  z-index: 1; /* keep text above background */
  transition: color 0.4s ease-in-out;
}

.btn-data::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* start hidden on left */
  width: 100%;
  height: 100%;
  background: #1ccdd3; /* slide-in background color */
  transition: left 0.5s ease-in-out;
  z-index: -1; /* behind text */
}

.btn-data:hover::before {
  left: 0; /* slides in smoothly */
}

.btn-data:hover {
  color: white; /* change text color on hover */
  border-color: #1ccdd3; /* optional: match border to hover color */
}

.bn-fade-blue:hover::before {
  left: 0;                    /* slide in from left to right */
}

.bn-fade-blue:hover {
  color:#ffffff;   
       border-color: #1ccdd3;
       background-color:#1E2C5B;     
}

.set-color {
  position: relative;
  overflow: hidden;
  background: #ec3e13;
  color: #fff;
  border: none;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}

.set-color::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;       /* hide off-screen */
  width: 100%;
  height: 100%;
  background: #1ccdd3;
  transition: left 0.5s ease-in-out;
  z-index: -1;       /* stay behind text */
}

.set-color:hover::before {
  left: 0;           /* slide in from left */
}

.set-color:hover {
  color: #fff;      
    border-color: #1ccdd3;
       background-color:transparent;   
}


.arrow_img{
    background-color: #21315F;
   color: white;
}
.faded-black{
    color:rgb(89, 88, 88);
}
.highlight_color:hover{
    color:#42495B !important;
}
.h-color{
    color:#7A839E;
}
.h1-color{
    color: #1CCDD3;
}
.h2-color{
    color:#151515 ;
}
.h3-color{
 color: #464646;
}
.h4-color{
    color: #42495B;
}
.h5-color{
    color: #FFA100;
}
.h_color{
    color: #276CC8;
}
.commom-color{
    color: #707070;
}
.fade-black{
    color: #D9DBDE;
}
.highlight_colorset1{
    color:#21877f;
}
.highlight_colorset2{
    color: #FFA100;
}
.highlight_colorset3{
    color:#003D50;
}
.highlight_colorset4{
    color:#5A0074;
}
.highlight_colorset5{
    color: #72A75B;
}
.highlight_colorset6{
    color:#276CC8 ;
}
.highlight_colorset7{
    color: #C82727 ;
}
.highlight_colorset8{
    color: #F0D908;
}
.highlight_colorset9{
    color: #AA1574;
}

.swiper-slide{
    height: auto !important;
}
.swiper-button-prev{
    display: block;
    position: absolute;
    left:-2.9rem;
} 
.ms-dot{
    margin-left: 12px;
}
/* .swiper {
    width: 600px;
    height: 350px;
} */
.main-logo{
    width: 134px;
    height: auto;
}
.common-padding{
    padding:0px 20px;
}
#home{
    background-size: 100%;
    width:100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow:visible;
    z-index: 0;
    
}
#home .banner-div{
    background-image: url('../../images/mobile-banner.png');
    background-size: cover;
    position: relative;
    background-position: bottom;
    width: auto;
    height: 100vh;
    min-height: 950px;
    max-height: 1080px;
    z-index: 0;
}
.vertical-line-left{
    border-left:3px solid #21315F;
    height: 35px !important;
}
.Banner-right{
    top:9rem;
    width:100%;
    height:80%; 
}

.faded-color{
    color:rgb(122, 120, 120)!important;
}
.faded-color:hover{
    color:#FFA100 !important;
}
#Videoplayer{
    top: 21%;
    width:73%;
    left: 15%;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
}

.styling{
    color: #21315F;
  }
#about-us{
    background-image:url('../../images/about_bg.png');
    width: auto;
    height:auto;
    margin-top: 0rem;
}
#about-us .about-section{
    width:100%;
    height: auto;
    margin-top: 5rem;
    left:-10px;
    max-width: 700px !important;

}
.vertical-line{
    width: fit-content;
    border-left: 2px solid #1CCDD3 !important;
   
}
.dot{
    height: 18px;
    width: 18px;
    background-color:#1CCDD3;
    border-radius: 50%;
    left: -20px;
}
#ulrs-configure{
    width:100%;
   height: auto; 
}

#ulrs-configure img{
   width: 67%;
   height: auto;
   /* max-width: 390px; */
   transition: all .5s ease;
   z-index: 0;
}
#ulrs-configure img:hover{
   animation: tilt .2s linear 1;
   transform: scale(1.05);
 }
 @keyframes tilt {
    0%{
        transform: scale(1);
        box-shadow: 5px 5px  10px 0px solid gray
    }
    100%{
        transform:scale(1.05) ;
    }
 }
#services{
    /* padding-top: 134px; */
    filter:drop-shadow(0px 20px 0px #1CCDD3);  
}
#services .services{
   background: url('../../images/services_img.png');
   background-repeat: no-repeat;
   background-position: center 57%;
   width:100%;
   height: 410px;
   display:flex;
   position: relative;
   margin-top: 5rem;
   box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
   clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0% 75%) !important;
   margin:0px 0px;
}
#services .container-fluid{
    background: #1e343fb3;
    height: 100%;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);   
}
#services-intial .sub-list .heading-color{
    font-size: 16px;
    color:#353535;
    display: flex;
    align-self: center;
    margin-left:10px;
    margin-top:5px;
}
.carousel{
    position: relative;
    overflow: hidden;
    /* flex: 1 0 auto; */
    width: 100%;
}
.carousel-slides{
    display: flex;
    transition: transform .7s ease-in-out;
    touch-action: pan-y;
}

.carousel-slides .slide{
    flex: 0 0 100%;
    width: 100%;
}

.pagination-button #animateButton .mobile-tab{
    width: 10px;
    height: 10px !important;
    border-radius: 5px !important;
    border: 1px solid rgba(0, 0, 0, 0.17);
    background-color: #D2D2D2;
    transition: all ease .3s;

}
.pagination-button .active .active{
    width: 50px !important;
    background-color: #FFA100 !important;
    transition: all ease .3s;
}
.pagination-button .active {
    border:0px solid transparent !important;
}
.horizontal-line{
    border:2px solid #1CCDD3;
    width: 80px;
    position: relative;
    display: flex;
    align-items: center;
    top:2.5rem;
}
.horizontal-line::before{
    content: '';
    width: 17px;
    height: 17px;
    background-color: #1CCDD3;
    left: -15px;
    border-radius: 50%;
    position: absolute;
}
.horizontal-line::after{
    content: '';
    width: 17px;
    height: 17px;
    background-color: #1CCDD3;
    right: -15px;
    border-radius: 50%;
    position: absolute;
}
.horizontal-line1 {
    border: 2px solid #1CCDD3;
    width: 80px;
    position: absolute;
    top: 100%; /* place it just below the heading */
    left: 0%;
    transform: translateX(76%);
}

.horizontal-line1::before,
.horizontal-line1::after {
    content: '';
    width: 17px;
    height: 17px;
    background-color: #1CCDD3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.horizontal-line1::before {
    left: -15px;
}

.horizontal-line1::after {
    right: -15px;
}

.sub-listbar .sub-list2 .back_ground{
    background-color:#FFF3E0;
    height: 100px;
}
#services-intial .sub-list{
    padding: 0px;
    margin-top:1rem ;
    background-color: white;
}
#contact-us .contact{
    position: relative;
    width:100%;
    height: auto;
    /* min-width: 450px; */
}
.ulrs-img{
   background-color: #E8FFFF;
   width: 100%;
   position: relative;
   /* padding: 30px; */
}
.ulrs-img .circle{
    position: absolute;
    border : 100px solid #d7eaf96b;
    z-index: 0;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    left:-50px;
    top:42%;
 }
 .ulrs-img .solid-circle{
    width: 150px;
    height: 150px;
    background-color: #D7EAF9;
    position: absolute;
    border-radius: 50%;
    right: -50px;
 }
 .ulrs-img .content-holder{
    position: relative;
    z-index: 1;
 }
.inner{
    overflow: hidden;
}
.inner img{
    transition: all 1.5s ease;
}
.inner:hover img{
    transition:scale(1.5) !important;
}
/* .service-section{
    margin-top:-6rem;
} */
.set-width{
    width:60px;
    height: auto;
}
.list-style-none{
    list-style: none;
}
.shadowing{
    box-shadow: 0px 2px 5px 1px #00000029;
}
.set-width-card{
    height: 100%;
}
.btn-orange{
    background-color: orange;
    color: white;
}
.btn-orange:hover{
    background-color: orange;
    color: white;
}

#Initial .bg-color{
    background-color: #FFF3E0;
}
hr{
    opacity: 1;
}
.set-width{
    width: 100px;
    height: 100px;
}
.swiper-slide .card-1{
    background: linear-gradient(#ffffff, #fffefe 50%,#21877f  50%, #21877f);
    background-size: 100% 200%;
    /*trasition effect for background*/
    transition: all 1s;
}
.swiper-slide .card-1:hover{
    background-position: 100% 100%;
    cursor: pointer;
}
.swiper-slide .card-2{
    background: linear-gradient(#ffffff, #fffefe 50%,#FFA100  50%, #FFA100);
    background-size: 100% 200%;
    /*trasition effect for background*/
    transition: all 1s;
}
.swiper-slide .card-2:hover{
    background-position: 100% 100%;
    cursor: pointer;
}
.swiper-slide .card-3{
    background: linear-gradient(#ffffff, #fffefe 50%,#003D50  50%, #003D50);
    background-size: 100% 200%;
    /*trasition effect for background*/
    transition: all 1s;
}
.swiper-slide .card-3:hover{
    background-position: 100% 100%;
    cursor: pointer;
}
.swiper-slide .card-4{
    background: linear-gradient(#ffffff, #fffefe 50%,#5A0074  50%, #5A0074);
    background-size: 100% 200%;
    /*trasition effect for background*/
    transition: all 1s;
}
.swiper-slide .card-4:hover{
    background-position: 100% 100%;
    cursor: pointer;
}
.swiper-slide .card-5{
    background: linear-gradient(#ffffff, #fffefe 50%,#72A75B  50%, #72A75B);
    background-size: 100% 200%;
    /*trasition effect for background*/
    transition: all 1s;
}
.swiper-slide .card-5:hover{
    background-position: 100% 100%;
    cursor: pointer;
}
.swiper-slide .card-6{
    background: linear-gradient(#ffffff, #fffefe 50%,#276CC8  50%, #276CC8);
    background-size: 100% 200%;
    /*trasition effect for background*/
    transition: all 1s;
}
.swiper-slide .card-6:hover{
    background-position: 100% 100%;
    cursor: pointer;
}
.swiper-slide .card-7{
    background: linear-gradient(#ffffff, #fffefe 50%,#C82727  50%, #C82727);
    background-size: 100% 200%;
    /*trasition effect for background*/
    transition: all 1s;
}
.swiper-slide .card-7:hover{
    background-position: 100% 100%;
    cursor: pointer;
}
.swiper-slide .card-8{
    background: linear-gradient(#ffffff, #fffefe 50%,#F0D908  50%, #F0D908);
    background-size: 100% 200%;
    /*trasition effect for background*/
    transition: all 1s;
}
.swiper-slide .card-8:hover{
    background-position: 100% 100%;
    cursor: pointer;
}
.swiper-slide .card-9{
    background: linear-gradient(#ffffff, #fffefe 50%,#AA1574  50%, #AA1574);
    background-size: 100% 200%;
    /*trasition effect for background*/
    transition: all 1s;
}
.swiper-slide .card-9:hover{
    background-position: 100% 100%;
    cursor: pointer;
}
.swiper-slide .card:hover p{
   color:white !important;
   
}
.swiper-slide .card:hover h5{
    color:white !important;
 }

#testimonals{
    background-image: url('../../images/testimonals.png');
    background-repeat: no-repeat;
    width:auto;
    background-position: center;
    margin-top:4.5rem;
}
#testimonals .border-drafting{
    border-radius: 40px;
    opacity: 0.8;
}
#testimonals .btn-orange{
    background-color: white;
    color: orange;
    padding: 10px 10px;
    width: 38px;
    height: 38px;
}
#testimonals .btn-orange:hover{
    background-color: orange;
    color: white;
}
.moving-down{
    margin-top:5rem !important;
}
.double-quotes-image{
    width: 80px !important;
    margin-bottom:15px ;
}
#Initial{
    background-image:url('../../images/services-bg.png');
    width:auto;
    height:auto;
}
.contact-us-input{
    padding:5px 10px 5px 10px;
    outline: none;
    border:none;
    width: 100%;
    color: #8E8E8E;
    background: transparent;
    height: 3rem;
    border-bottom: 1px solid #8E8E8E;
    border-radius: 0;
    margin-top:1rem ;
    font-size: 16px;
}
.btn-outline-success {
  position: relative;
  overflow: hidden;
  color: #ffffff !important;
  background-color: #21315F !important;
  border: transparent !important;
  
  z-index: 1;
  transition: color 0.4s ease-in-out;

  /* 🔹 Equal spacing */
  padding: 5px 25px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* space between text and icon */
  font-size: 1.2rem; /* optional for consistent sizing */
}

.btn-outline-success::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1ccdd3;
  transition: left 0.5s ease-in-out;
  z-index: -1;
  border-radius: 25px;
}

.btn-outline-success:hover::before {
  left: 0;
}

.btn-outline-success:hover {
  color: #fff !important;
  border-color: transparent !important;
}

.btn-outline-success:focus,
.btn-outline-success:active {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}




#footer{
   background-image:url('../../images/footer-bg.png');
   background-repeat: no-repeat;
   background-size: cover;
   width:auto;
   margin-top: 5rem;
}
.logo-footer{
    width: 150px;
    height:auto;
    margin-bottom:1.5rem;
}
.footer-other-links{
    color:#ffffff;
    text-decoration: none !important;
}
.icon-styles{
    height: 20px;   
}

.footer-other-links:hover{
    color:aqua !important;
    transform: scale(1.0) !important;
    transition: all .1s ease !important ;
    padding-left: .5rem !important;
}
.footer-other-link{
    color:white !important;
    text-decoration: none !important;
}
.footer-other-link:hover{
    color: #ffffff !important;
}
#footer .container-fluid {
    height: 100%;
    width: 100%;
    color:#ffffff;
    /* background: #1b2fb7da; */
}
#footer .container-fluid ul{
    list-style: none;
    padding-left: auto;
}
#footer .container-fluid ul li a{
    text-decoration: none;
    color:#ffffff;
}
#footer .container-fluid ul .link:hover{
    transform: scale(1.0);
    transition: all .1s ease ;
    padding-left: .5rem;
}
#footer .container-fluid ul .link a:hover{
    color:aqua;
}
.footer-links{
    text-decoration: none !important;
    color:#ffffff;
    font-size: 18px;
    /* margin-left: 1rem; */
    margin-right:1rem;
}
.footer-links:hover{
    color:aqua !important;
    transform:  scale(1.1);
    transition: all .1s ease;
}

.fixed-size{
    width: 50%;
    height:auto;
}
#footer .text-color:hover{
   color: orange !important;
}
.contact-label {
    font-size: 16px;
    color: #fff;
}
.contact-text img {
  filter: brightness(0) invert(1);
}
.image-holder{
    padding-top:90px;
    padding-bottom:120px;
}
.image-holder1{
    padding-top:60px;
   
}
.w-90{
    max-width: 650px;
    width:85% !important;
}
hr.divider
{ 
   margin-top: 0em;
   border-width: 2px;
} 
.active
{
    color: #FFA100;
} 
.tab {
    overflow: hidden;
    border-bottom: 1px solid #02101e;
}
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}
/* .tab button.active {
    background-color: #ccc;
} */
.tabcontent {
    display: none;
    border-top: none;
}


  #terms .page-heading{
    text-align: center;
    color: #016479 !important;
    font-weight: 700;
    font-family: Poppins,sans-serif;
    font-size: 28px;
    letter-spacing: .42px;
  }
  #terms .section-heading{
    padding-top: 10px;
    text-align: left;
    font-family:  Poppins,sans-serif;
    letter-spacing: .42px;
    color: #151515;
    font-weight: 700;
    font-size: 22px;
  }
  #terms .sub-heading{
    font-weight: 500;
    font-size: 20px;
  }
  @media screen (min-width:320px) and (max-width:350px){
    .vl-1{
       left: 35px;
       height: 58% !important;;
    }
  }

@media screen and (min-width: 320px) and (max-width: 395px) {
   .horizontal-line {
        border: 2px solid #1CCDD3;
        width: 80px;
        position: relative;
        display: flex;
        align-items: center;
        top: 2.7rem;
    }
    .horizontal-line1 {
        left: 50%;
        transform: translateX(-32%);
    }
    .set-pad{
        top:5.5rem;
    }
    .vl-1{
       left: 35px;
       height: 58% !important;;
    }
    #services .services{
    background: url('../../images/services_img.png');
    background-repeat: no-repeat;
    background-position: center 57%;
    width:100%;
    height: 560px;
    display:flex;
    position: relative;
    margin-top: 5rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0% 75%) !important;
    margin:0px 0px;
    }
    .set-top{
        top:5.0rem !important;
    }
    .set-pad{
        top:5.5rem !important;
    }
}
@media screen and (min-width: 396px) and (max-width: 768px) {
    #services {
        padding-top: 30px;
        filter: drop-shadow(0px 20px 0px #1CCDD3);
    }
    .horizontal-line {
        border: 2px solid #1CCDD3;
        width: 80px;
        position: relative;
        display: flex;
        align-items: center;
        top: 3.0rem;
    }
    .set-top{
        top:5.0rem !important;
    }
    #services .services{
    background: url('../../images/services_img.png');
    background-repeat: no-repeat;
    background-position: center 57%;
    width:100%;
    height: 460px;
    display:flex;
    position: relative;
    margin-top: 5rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0% 75%) !important;
    margin:0px 0px;
    }
    .horizontal-line1 {
        left: 50%;
        transform: translateX(-40%);
    }
    .set-pad{
        top:6.0rem !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .horizontal-line1 {
        left: 50%;
        transform: translateX(-40%);
    }
     .set-top{
        top:2.0rem !important;
    }
    .set-pad{
        top:6.3rem !important;
    }
    #services {
        padding-top: 30px;
        filter: drop-shadow(0px 20px 0px #1CCDD3);
    }
    .horizontal-line {
        border: 2px solid #1CCDD3;
        width: 80px;
        position: relative;
        display: flex;
        align-items: center;
        top: 2.2rem;
    }
    
}
/*tabview starts*/
@media only screen and (min-width:767px){
    
    .lh-md-38{
        line-height: 38px !important;
    }
    .ms-md-dot{
        margin-left: 0px;
    }
    #ulrs-configure img{
        width: 90%;
        height: auto;
        max-width: 700px;
        transition: all .5s ease;
        z-index: 0;
     }
    #home{
        background-size: 100%;
        width:100%;
        display:flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow:visible;
        z-index: 0;
    } 
    #home .banner-div{
        background-image: url('../../images/mobile-banner.png');
        background-size: cover;
        position: relative;
        background-position: bottom;
        width: auto;
        height: 100vh;
        z-index: 0;
        min-height: 1080px;
        padding-top: 3rem;
    }
    .w-90 {
        max-width: 630px;
        width: 100% !important;
    }
    #Videoplayer{
        top: 21%;
        width: 89%;
        left: 8.5%;
        border-bottom-right-radius: 50px;
        border-top-left-radius: 50px;
    }
    #services .services{     
        clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0% 60%) !important;
     }
    .fs-38{
        font-size: 38px !important;
    }
    .fs-45{
        font-size: 45px !important;
    }
    .fs-28{
        font-size: 28px !important;
    }
    .fs-65{
        font-size: 65px !important;
    }
    .fs-18{
        font-size: 18px !important;
    }
    .fs-22{
        font-size: 22px !important;
    }
    .fs-24{
        font-size: 24px !important;
    }
    .vertical-line{
        width: fit-content;
        border-left: 2px solid #1CCDD3 !important;
       
    }
}

/*Desktop starts*/
@media only screen and (min-width:992px){
    body{
        font-size: 16px;
    }
    .set-pad{
        top:6.5rem;
    }
    #about-us{
        background-image:url('../../images/about_bg.png');
        width: auto;
        height:auto;
        margin-top: 9rem;
    }
    .top-height-config{
        margin-top:6rem;
    }
    .pagination-button .active {
        border-bottom:5px solid #1CCDD3 !important;
    }
    .common-padding{
        padding:0px 100px;
    }
    .icon-moving-left{
        width: fit-content;
        left:-8%;
        display: flex !important;
        height: 100%;
        flex-direction: column;
        justify-content: space-between;
    }
    #home{
        background-size: 100%;
        width:100%;
        display:flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow:visible;
        z-index: 0;
    }
    #home .banner-div{
        background-image: url('../../images/banner-img/Group\ 5108.png');
        background-size: cover;
        position: relative;
        width:auto;
        height: 100vh;
        min-height: 830px;
    max-height: 1080px;
    }
    #Videoplayer{
        top: 21%;
        width: 89%;
        left: 6.5%;
        border-bottom-right-radius: 50px;
        border-top-left-radius: 50px;
    }
    #services .services{
    background: url('../../images/services_img.png');
    background-repeat: no-repeat;
    background-position: center 57%;
    width:100%;
    height: 350px;
    display:flex;
    position: relative;
    margin-top: 5rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0% 75%) !important;
    margin:0px 0px;
    }
    .fixed-size{
        width: 100%;
        height:auto;
    }
    .sub-listbar .sub-list2 .image-icon{
        width: 70px;
        height: auto;
    }
    .sub-listbar .sub-list2 .image-icon{
        width: 50px;
        height: auto;
    }
    #about-us{
        background-image:url('../../images/about_bg.png');
        width: auto;
        min-height:568px;
        margin-top: 9rem;
    }
    #contact-us .contact{
        position: relative;
        width:100%;
        height: auto;
        /* min-width: 430px; */
    }
    #contact-us{
        background-image:url('../../images/contact-bg.svg');
        background-repeat: no-repeat;
        background-position:cover;
        width:auto;
        height:750px;
    }
   
    #contact-us{
        background-image:url('../../images/contact-bg.svg');
        background-repeat: no-repeat;
        background-position:cover;
        width:auto;
        height:auto;
    }
    .w-90{
        max-width: 750px;
        width:100% !important;
    }
    .fs-38{
        font-size: 38px !important;
    }
    .fs-45{
        font-size: calc(50px - .5rem) !important;
    }
    .fs-28{
        font-size: 28px !important;
    }
    .fs-65{
        font-size: 65px !important;
    }
    .fs-18{
        font-size: 18px !important;
    }
    .fs-22{
        font-size: calc(22px - .17rem) !important;
    }
    .fs-24{
        font-size: calc(24px - .17rem) !important;
    }
}
@media screen and (min-width:1313px) and (max-width:1538px){
    .icon-moving-left{
        left: -12% !important ;
    }
}
@media screen and (min-width:993px) and (max-width:1313px){
    .icon-moving-left{
        left: -15% !important;
    }
}

/* Media Query for Our Works */
@media only screen and (max-width:590px){
    .swiper-container-width{
        width: 100% !important;
    }
}
@media only screen and (min-width:590px) and (max-width:1050px){
    .swiper-container-width{
        width: 85% !important;
    }
}
@media only screen and (min-width:1050px) and (max-width:1150px){
    .swiper-container-width{
        width: 75% !important;
    }
}
@media only screen and (min-width:1150px) and (max-width:1200px){
    .swiper-container-width{
        width: 100% !important;
    }
}
@media only screen and (min-width:1200px) and (max-width:1340px){
    .swiper-container-width{
        width: 90% !important;
    }
}
@media only screen and (min-width:1340px) and (max-width:1520px){
    .swiper-container-width{
        width: 100% !important;
    }
}
@media only screen and (min-width:1520px) and (max-width:1690px){
    .swiper-container-width{
        width: 85% !important;
    }
}
@media only screen and (min-width:1690px){
    .swiper-container-width{
        width: 75% !important;
    }
}

/* Media Query for vertical lines */
/* media query for vertical line 1 */
@media only screen and (max-width:416px){
    .vl-1{
       left: 35px;
       height: 57%;;
    }
   }
@media only screen and (min-width:416px) and (max-width:527px){
    .vl-1{
       left: 35px;
       height: 57%;;
    }
   }
@media only screen and (min-width:527px) and (max-width:767px){
    .vl-1{
       left: 35px;
       height: 55.7%;;
    }
   }
@media only screen and (min-width:767px) and (max-width:988px){
    .vl-1{
       left: 35px;
       height: 35%;;
    }
}
@media only screen and (min-width:989px) and (max-width:992px){
     .vl-1{
       left: 35px;
       height: 30%;;
    }
}
@media only screen and (min-width:992px) and (max-width:1082px){
    .vl-1{
       left: 35px;
       height: 30%;;
    }
   }
   @media only screen and (min-width:1082px) and (max-width:1097px){
    .vl-1{
       left: 35px;
       height: 30%;;
    }
   }
   @media only screen and (min-width:1097px) and (max-width:1147px){
    .vl-1{
       left: 35px;
       height: 30%;;
    }
   }
   @media onl screen and (min-width:1147px) and (max-width:1186px){
    .vl-1{
       left: 35px;
       height: 35%;;
    }
   }
   @media only screen and (min-width:1186px) and (max-width:1245px){
    .vl-1{
       left: 35px;
       height: 30%;;
    }
   }
   @media only screen and (min-width:1245px) and (max-width:1504px){
    .vl-1{
       left: 35px;
       height: 30%;;
    }
   }
   @media only screen and (min-width:1504px) and (max-width:1840px){
    .vl-1{
       left: 35px;
       height: 30%;;
    }
   }
@media only screen and (min-width:1840px){
 .vl-1{
    left: 36px;
    height: 33%;;
 }
}

/* media query for vertical lines 2 */

@media only screen and (min-width:767px) and (max-width:786px){
    .vl-2{
        left:13%;
        height: 115% !important;
    }
}
@media only screen and (min-width:786px) and (max-width:787px){
    .vl-2{
        left:13%;
        height:120% !important;
    }
}
@media only screen and (min-width:787px) and (max-width:987px){
    .vl-2{
        left:13.6%;
        height: 120% !important;
    }
}
@media only screen and (min-width:987px) and (max-width:993px){
    .vl-2{
        left:13.9%;
        height: 120% !important;
    }
}
@media only screen and (min-width:993px) and (max-width:1081px){
    .vl-2{
        left:13.5%;
        height: 120% !important;
    }
}
@media only screen and (min-width:1082px) and (max-width:1146px){
    .vl-2{
        left:13.8%;
        height: 130% !important;
    }
}
@media only screen and (min-width:1147px) and (max-width:1186px){
    .vl-2{
        left:14%;
        height: 130% !important;
    }
    .vl-1{
       left: 35px;
       height: 30%;;
    }
}
@media only screen and (min-width:1186px) and (max-width:1205px){
    .vl-2{
        left:14.2%;
        height: 130% !important;
    }
}
@media only screen and (min-width:1205px) and (max-width:1244px){
    .vl-2{
        left:14%;
        height: 130% !important;
    }
}
@media only screen and (min-width:1244px) and (max-width:1361px){
    .vl-2{
        left:14.2%;
        height: 120% !important;
    }
}
@media only screen and (min-width:1361px) and (max-width:1839px){
    .vl-2{
        left:14.5%;
        height: 124% !important;
    }
}
@media only screen and (min-width:1509px) and (max-width:1707px){
    .vl-2{
        left:14.8%;
        height: 124% !important;
    }
}
@media only screen and (min-width:1707px) and (max-width:1789px){
    .vl-2{
        left:14.9%;
        height: 124% !important;
    }
}
@media only screen and (min-width:1789px) and (max-width:1839px){
    .vl-2{
        left:14.99%;
        height: 140% !important;
    }
}
@media only screen and (min-width:1839px){
    .vl-2{
        left:15%;
        height: 135% !important;
    }
}