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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  background: #fff;
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s, color 0.3s;
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.form-control:focus {
  box-shadow: none;
}

*:before,
  *:after {
    box-sizing: border-box;
    transition: 0.5s ease-in-out;
  }

button:focus,
.btn:focus {
  box-shadow: none !important;
  outline: none;
}

::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #b08cac;
}

::placeholder {
  color: #b08cac;
}

/* ===== Scrollbar CSS ===== */

/* Firefox */

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--white);
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling on mobile devices */
  ;
}

/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
  width: 0px;
  /* Hide the scrollbar */
  height: 0px;
  /* Hide the horizontal scrollbar */
  ;
}

*::-webkit-scrollbar-track {
  background: var(--white);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
  border: 3px none var(--white);
}

/* Show the scrollbar on hover and during scrolling */

*::-webkit-scrollbar {
  transition: width 0.3s ease;
}

*::-webkit-scrollbar:hover {
  width: 15px;
  /* Show the scrollbar on hover */
  height: 15px;
  /* Show the horizontal scrollbar on hover */
  ;
}

.alert{
  font-size: 13px;
}

.alert-dismissible .btn-close{
  padding:5px;
  right:11px;
  background:none;
  background-color: var(--accent-color);
}

.myclass .alert-dismissible .btn-close{
  top:10px;
}

:root {
    --bg-color: #ffffff;
    --text-color: #000;
    --accent-color: #0D9AD3;
    --switch-bg: #ccc;
    --switch-circle: #013F75;
  }

  body.dark {
    --bg-color: #000;
    --bg-color2:#323233;
    --bg-color4:#044968;
    --bg-color5:#17181a;
    --text-color: #f5f5f5;
    --switch-bg: #0D9AD3;
  }

  body.dark .section1{
    background-color: var(--bg-color2);
  }

  body.dark .section3{
    background-color: var(--bg-color4);
  }

  body.dark .section4{
    background-color: var(--bg-color5);
  }

header{
    position: absolute;
    z-index: 99;
    left:0;
    right:0;
    top: 0;
}

.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1060; 
  background: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  border-radius: 0;
  /* transform: translateY(0); */
}

.navbar.is-sticky .navbar-brand{
  box-shadow:0 5px 8px rgba(0,0,0,0.2);
}

.clearfix{
    clear:both;
}

.topbar{
    background: transparent;
    padding:20px 0;
}

.text-right{
    float: right;
}

.text-right ul li{
    display: inline-flex;
    justify-content: center;
    background:#fff;
    border-radius: 50%;
    width:24px;
    height:24px;
    margin:0 4px;
}

.text-right ul li:hover{
  background-color: var(--accent-color);
}

.text-right ul li:hover a{
  color:#fff;
}

.text-right ul li a{
    display: flex;
    font-size: 14px;
    text-align: center;
    color:#5f7b91;
    align-items: center;
    background:transparent;
    margin-right:0;
    justify-content: center;
    width:24px;
    height:24px;
}

.navbar {
    background-color: var(--bg-color);
    box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
    border-radius:10px;
    padding-left:11px;
    padding-right:11px;
    /* position: relative; */
    padding-top:15px;
    padding-bottom:0;
    transition: all 0.5s ease-in-out;
  }
  .navbar .navbar-brand{
    margin: 0;
    position: absolute;
    background: var(--bg-color);
    border-radius: 50%;
    padding: 10px 0px;
    top: 10px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navbar-brand img {
    height: 111px;
  }
  .nav-item{
    margin-right: 20px;
  }
  .nav-link {
    color: var(--text-color);
    font-weight: 400;
    font-size: 12px;
    padding-bottom: 26px;
    padding-top: 20px;
    border-radius: 25px 25px 0 0;
    transition: 0.5s all ease-in-out;
    padding-left:8px !important;
    padding-right:8px !important;
  }
  .nav-link.active, 
  .nav-link:hover {
    color: #fff !important;
    /* font-weight: 800; */
    background:#0D9AD3;
    border-radius: 25px 25px 0 0;
  }
  .navbar .btn-forum {
    background-color: #0D9AD3;
    color: #fff;
    border-radius: 20px;
    padding: 5px 27px;
    font-weight: 800;
    font-size: 12px;
  }

  .navbar .btn-pricing{
    background-color: var(--switch-circle);
    color: #fff;
    border-radius: 20px;
    padding: 5px 27px;
    font-weight: 800;
    font-size: 12px;
  }

  /* #google_translate_element .goog-te-gadget{
    font-size: 0 !important;
    width:100px !important;
  }

  #google_translate_element .goog-te-gadget .goog-te-combo{
    width:100px !important;
    height:30px !important;
    border-radius:20px !important;
    padding:5px 7px !important;
  }

  #google_translate_element .goog-te-gadget span{
    display: none !important;
  } */

 /* Hide only the label text, not the dropdown */
#google_translate_element .goog-te-gadget {
  font-size: 0 !important; /* hides 'Select Language' text */
  white-space: nowrap;
}

/* Restore font-size for dropdown itself */
#google_translate_element .goog-te-gadget select {
  font-size: 14px !important;
}

/* Style dropdown */
#google_translate_element .goog-te-combo {
  width: 100% !important;
  height: 32px !important;
  border-radius: 20px !important;
  padding: 4px 10px !important;
  border: 1px solid #ccc;
  background: #fff;
}

/* Remove Google icon & powered text spacing */
#google_translate_element img,
#google_translate_element span {
  display: none !important;
}



  .theme-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
  }

  .theme-switch input {
    display: none;
  }

  .sliderbtn {
    position: relative;
    /* width: 90px; */
    width:100%;
    height: 35px;
    border:2px solid #d9d9d9;
    border-radius: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-color);
    box-sizing: border-box;
    transition: background 0.3s;
  }
  
  .switch-text {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 1;
    color: var(--text-color);
    transition: color 0.3s;
  }
  
  .switch-text.dark {
    opacity: 0;
  }
  
  .sliderbtn::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 29px;
    height: 29px;
    background: var(--switch-circle);
    border-radius: 50%;
    transition: transform 0.3s;
    z-index: 2;
  }

  input:checked + .sliderbtn::before {
    /* transform: translateX(55px); */
    transform: translateX(114px);
  }
  
  input:checked + .sliderbtn .light {
    opacity: 0;
  }
  
  input:checked + .sliderbtn .dark {
    opacity: 1;
    text-align: left;
    padding-left:8px;
  }

  .banner-content {
    position: absolute;
    z-index: 5;
    max-width: 500px;
    top:247px;
  }
  .banner-content h1 {
    font-weight: 700;
    font-size: 52px;
    color:#fff;
    margin-bottom:21px;
  }
  .banner-content h1 span{
    font-size: 32px;
    font-weight: 500;
  }
  .banner-content p {
    font-size: 16px;
    margin-top: 15px;
    color:#fff;
    font-weight: 400;
    line-height: 24px;
  }


  [class^=btn-] {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 15px 25px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius:25px;
}

  .btn-2 {
    color: #000; 
    position: relative; 
    background:#fff;
    margin-top:25px;
    text-transform: capitalize;
    font-size: 13px;
    box-shadow:0 5px 5px rgba(0,0,0,0.5);
    width:163px;
    height:42px;
    text-align: center;
  }

  .btn-2 span{
    font-size: 13px;
    color: #000;
    position: absolute;
    left:0;
    right: 0;
    margin: auto;
    z-index: 1;
    transition: 0.5s color ease-in-out;
  }
  
  .btn-2::before,
  .btn-2::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .btn-2::before {
    right: -50px;
    border-right: 50px solid transparent;
    border-bottom: 50px solid #0D9AD3; 
    transform: translateX(-100%);
    z-index: -1;
  }
  
  .btn-2::after {
    left: -50px;
    border-left: 50px solid transparent;
    border-top: 50px solid #0D9AD3; 
    transform: translateX(100%);
    z-index: -1;
  }
  
  .btn-2:hover span{
    color: #fff; 
  }
  
  .btn-2:hover::before {
    transform: translateX(-49%);
    z-index: 0;
  }
  
  .btn-2:hover::after {
    transform: translateX(49%);
    z-index: 0;
  }

  .video-banner {
    width: 100%;
    height: 900px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
    z-index: 0;
  }

  .video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:20% 38%;
    position: relative;
    z-index:0;
  }

  .video-banner::after {
    content: "";
    position: absolute;
    inset: 0;
   /* background: linear-gradient(90deg, rgba(65, 143, 173, 0.35) 24%, rgba(1,63,117,0.70) 63%);*/
    background-overlay removed
    pointer-events: none; 
    z-index: 1;
  }


  .mask-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
  }
  
  .mask-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13,154,211,0.3);
    pointer-events: none;
    clip-path: circle(21%);
    left: -69%;
    top: -45%; 
    z-index: 2;
    display: none;
  }

  /*.banner-content::after {
    content: "";
    position: absolute;
    width: 780px;
    height: 780px;
    left: -39%;
    top: -110%;
    border-radius: 50%;
    background: rgba(13,154,211,0.30); 
    pointer-events: none;
    z-index: -1;
  }*/
 round-shape removed

  .blue-shape{
    position: absolute;
    bottom: 117px;
    right: 0;
    height:90%;
    width:100%;
    background-color: #0d9ad3;
    z-index:-1;
  }

  .about{
    background: url(../images/abstract.png) no-repeat bottom right var(--bg-color);
    padding:50px 0 220px;
    background-size: cover;
  }

  .about .img-part{
    position: relative;
  }

  .about .img-part .main-img{
    width:524px;
    height:576px;
    border-radius: 15px;
  }

  .about .img-part .bottom-img{
    position:absolute;
    bottom:-105px;
    right: 17px;
    width:290px;
    height:320px;
    border-radius:15px;
    border:8px solid #fff;
  }

  .about .text-part h3{
    font-weight: 400;
    font-size: 30px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 16px;
    margin-bottom:20px;
  }

  .about .text-part h2{
    font-size: 68px;
    color: var(--text-color);
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 30px;
  }

  .about .text-part h2 span{
    font-size: 68px;
    font-weight: 800;
    color: var(--accent-color);
  }

  .about .text-part p{
    font-size: 16px;
    color: var(--text-color);
    font-weight: 400;
    margin-bottom:15px;
    line-height: 24px;
  }

  .btn-3 {
    color: #fff; 
    position: relative; 
    background:var(--accent-color);
    margin-top:25px;
    text-transform: capitalize;
    font-size: 13px;
    width:163px;
    height:45px;
    text-align: center;
    border:2px solid transparent;
  }

  .btn-3 span{
    font-size: 13px;
    color: #fff;
    position: absolute;
    left:0;
    right: 0;
    top:13px;
    margin: auto;
    z-index: 1;
    transition: 0.5s color ease-in-out;
  }
  
  .btn-3::before,
  .btn-3::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .btn-3::before {
    right: -50px;
    border-right: 50px solid transparent;
    border-bottom: 50px solid #fff; 
    transform: translateX(-100%);
    z-index: -1;
  }
  
  .btn-3::after {
    left: -50px;
    border-left: 50px solid transparent;
    border-top: 50px solid #fff; 
    transform: translateX(100%);
    z-index: -1;
  }
  
  .btn-3:hover span{
    color: #000; 
  }
  
  .btn-3:hover::before {
    transform: translateX(-49%);
    z-index: 0;
  }
  
  .btn-3:hover::after {
    transform: translateX(49%);
    z-index: 0;
  }

  .btn-3:hover{
    border:2px solid var(--accent-color);
  }


  .desktop-video{
    background: url(../images/laptop-top-bg.png) no-repeat center var(--bg-color);
    width: 100%;
    height: 618px;
    background-size: 100%;
    position: relative;
    object-fit: cover;
    margin-bottom: 480px;
  }

  .desktop-video img{
    position: relative;
    top:180px;
  }

  .desktop-video video{
    object-fit: cover;
    position: absolute;
    top: 214px;
    width: 1061px;
    height: 480px;
  }

  .core-value{
    background: url(../images/corevalue-bg.png) no-repeat;
    background-size: cover;
    padding-top:354px;
    padding-bottom:30px;
  }

  .core-value h3{
    font-weight: 400;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 16px;
    margin-bottom:20px;
  }

  .core-value h2{
    font-size: 68px;
    color: #000;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 30px;
  }

  .core-value h2 span{
    font-size: 68px;
    font-weight: 800;
    color: var(--accent-color);
  }

  .core-value p{
    font-size: 16px;
    color: #000;
    font-weight: 400;
    margin-bottom:15px;
    line-height: 24px;
  }

  .five-fundamentals{
    background:#BCDEEB;
    padding:50px 0 20px;
  }

  .five-fundamentals .head{
    text-align: center;
  }

  .five-fundamentals .head h3{
    font-weight: 400;
    font-size: 23px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 16px;
    margin-bottom:20px;
  }

  .five-fundamentals .head h2{
    font-size: 46px;
    color: #000;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 30px;
  }

  .five-fundamentals .head h2 span{
    color:#013F75;
    font-size: 46px;
    font-weight: 800;
  }

  .five-fundamentals .head p{
    font-size: 16px;
    color: #3F5467;
    font-weight: 400;
    margin-bottom:40px;
    line-height: 24px;
  }

  .custom-box {
    position: relative;
    border: 2px solid #004080;
    border-radius: 8px;
    background-color: transparent;
    padding: 20px;
  }

  .custom-box h2 {
    position: absolute;
    top: -13px;
    left: 20px;
    background-color: #BCDEEB;
    padding: 0 8px;
    font-size: 22px;
    font-weight: bold;
    color: #000;
  }

  .custom-box p {
    font-size: 13px;
    line-height: 1.5;
    color: #3F5467;
  }

  .client_partnerships{
    padding:50px 0 0;
  }

  .client_partnerships h2{
    font-size: 46px;
    color: var(--text-color);
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 40px;
  }

  .client_partnerships h2 span{
    color:#013F75;
    font-size: 46px;
    font-weight: 800;
  }

  .client_partnerships .map{
    border-radius: 30px;
    overflow: hidden;
  }

  .carousel_container{
    background: linear-gradient(to right,  #0d9ad3 0%,#013f75 100%);
    padding:25px 15px;
    border-radius: 35px 0 0 0;
  }

  .logo-carousel .slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    margin:0 10px;
  }

  .logo-carousel .slide img {
    max-height: 80px; 
    width: auto;
    object-fit: contain;
    margin: 0 auto;
  }

  .slick-list{
    margin:0 60px;
  }

  /* Custom Arrows */
.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #0d9ad3;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 5;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px; 
  cursor: pointer;
}

.slick-prev:hover, .slick-next:hover {
  background: #ffffff;
  color:#0d9ad3;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

/* Hide the default text indent trick */
.slick-prev:before,
.slick-next:before {
  display: none;
}

 .split-bg {
  display: flex;
  height: 75vh;
  width: 100%;
  position: relative;
  background:#0d9ad3;
}

.left-bg {
  flex: 0 0 72%;
  background: #DAF4FF;
  border-radius:0 0 120px 0;
}

.right-bg {
  flex: 0 0 28%;
}

.content-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.content-wrapper h2{
  font-size: 46px;
  color: #000;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 40px;
} 

.content-wrapper h2 span{
  color:#013F75;
  font-size: 46px;
  font-weight: 800;
}

.customclass{padding-right:30px;width:72%;}
.customclass .btn-3 span{top:14px;}
.customclass2{
  padding-left:80px;
  width:28%;
}

.content-wrapper .info-box h2{
  font-size: 46px;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.content-wrapper .info-box h2 span{
  color:#fff;
  font-size: 46px;
  font-weight: 800;
}

.form-box {
  background: transparent;
}

.form-box input{height:68px;}

.form-box input, 
.form-box textarea {
  width: 100%;
  padding: 10px 16px;
  margin: 8px 0;
  border: 1px solid #88D8F9;
  border-radius: 10px;
  font-size: 14px;
  resize: none;
}

.split-bg .btn-3{
  padding:12px 25px;
}

.form-box button {
  margin-top: 10px;
  padding: 10px 20px;
  background: #0077b6;
  border: none;
  color: white;
  font-size: 15px;
  border-radius: 25px;
  cursor: pointer;
}

.form-box button:hover {
  background: #005f8c;
}

.info-box h4{
  font-size: 25px;
  color:#fff;
  font-weight: 500;
  padding-bottom:15px;
}

.info-item {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.info-icon {
  background: rgba(4, 93, 129, 0.51);
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink:0;
}

.info-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color:#fff;
}

.info-text strong {
  font-size: 16px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: white;
  color: #0096db;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  /* background: #0077b6; */
  color: white;
}

.footer {
  background: var(--bg-color);
  padding: 20px 0;
}
.footer .footer-logo img {
  max-height:110px;
  /* filter: grayscale(100%); */
}
.footer .nav-link {
  color: var(--text-color);
  font-size: 15px;
  margin: 0 12px;
  text-decoration: none;
  transition: color 0.3s;
  padding-bottom:10px;
}
.footer .nav-link:hover, .footer .nav-link.active {
  color: var(--switch-circle) !important;
  background: transparent;
}
.footer .nav a:last-child{
  margin-right:0;
  padding-right:0;
}
.footer .copyright {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}


/*services page*/

.image-banner{
  height:580px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 100px;
}

.image-banner img{
  width:100%;
  height:100%;
}

.image-banner::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(65, 143, 173, 0.35) 24%, rgba(1, 63, 117, 0.70) 63%);
  pointer-events: none;
}

.image-banner .page_heading{
  color:#fff;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  margin: auto;
  z-index:9;
}

.image-banner .page_heading h3{
  font-size: 52px;
  text-transform: capitalize;
  font-weight: 500;
}

.image-banner .page_heading h2{
  text-transform: capitalize;
  font-size: 72px;
  font-weight: 800;
}

.service-we-offer{
  text-align: center;
  padding:60px 0;
  background: url(../images/abstract2.png) no-repeat bottom left;
}

.service-we-offer h3{
  font-size: 30px;
  letter-spacing:24px;
  color: var(--text-color);
  text-transform: uppercase;
  padding-bottom: 25px;
  padding-left: 25px;
}

.service-we-offer h1{
  color: var(--text-color);
  font-size: 68px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.service-we-offer h1 span{
  font-weight: 800;
  color: var(--accent-color);
}

.service-we-offer p{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-color);
}

.plant-design{
  background: url(../images/lighthouse-bg-img.png) no-repeat top center;
  width: 100%;
  height: 750px;
  background-size: 100%;
  position: relative;
  object-fit: cover;
  border-radius: 0 0 220px 0;
  padding:88px 0 58px;
  font-family: "Poppins", sans-serif;
}


.plant-design h3{
  color:#fff;
  font-size: 40px;
  font-weight: 500;
  padding-bottom:15px;
}

.plant-design h2{
  font-weight: 800;
  font-size: 72px;
  color:#fff;
  text-transform: capitalize;
}

.plant-design p{
  font-size: 16px;
  color:#fff;
  font-weight: 400;
  margin-top:30px;
  line-height: 24px;
}

.plant-design .carousel {
  position: relative;
  max-width: 100%;
  width: clamp(520px, 48vw, 700px);
  overflow: visible;
  clip-path: inset(0 -100vw 0 60px);
  -webkit-clip-path: inset(0 -100vw 0 0px);
}

.plant-design .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.plant-design .carousel img {
  width: 420px;
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
  margin-right: 20px;
  flex-shrink: 0;
}

.plant-design .arrows {
  display: flex;
  gap: 15px;
  margin-top:30px;
}

.plant-design .arrow {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: white;
  color: var(--accent-color);
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border:2px solid var(--accent-color);
}

.plant-design .arrow:hover {
  background: var(--accent-color);
  color:#fff;
  border:2px solid transparent;
}


@media(max-width: 900px) {
  .content {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .carousel {
    max-width: 100%;
  }
  .carousel img {
    width: 100%;
    height: auto;
  }
  .arrows {
    left: 20px;
    bottom: 20px;
  }
}

.white-abstract{
  background: url(../images/abstract.png) no-repeat bottom right var(--bg-color);
  padding:50px 0 100px;
  background-size: cover;
  position: relative;
}

.white-abstract .carousel-left{
  position: relative;
  width: clamp(520px, 48vw, 700px);
  overflow: visible;
  clip-path: inset(0 60px 0 -100vw);
  -webkit-clip-path: inset(0 60px 0 -100vw);
}

.white-abstract .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.white-abstract .carousel-left img {
  width: 420px;
  height: 450px;
  object-fit: cover;
  border-radius: 16px;
  margin-right: 20px;
  flex-shrink: 0;
}

.white-abstract .arrows-left {
  display: flex;
  gap: 15px;
  margin-top:30px;
}

.white-abstract h3{
  font-size: 40px;
  font-weight: 500;
  color: var(--text-color);
  padding-bottom:15px;
}

.white-abstract h2{
  font-weight: 800;
  font-size: 72px;
  color: var(--text-color);
  text-transform: capitalize;
}

.white-abstract p{
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  margin-top:30px;
  line-height: 24px;
}

.white-abstract .arrow{
  width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border:2px solid transparent;
}

.white-abstract .arrow:hover{
  background:#fff;
  color:var(--accent-color);
  border:2px solid var(--accent-color);
}

.service-rates{
  background:#BCDEEB;
  padding:50px 0 20px;
  text-align: center;
}

.forspace{
 bottom:122px !important;
}

  
/*services page*/


/* clients partners page */

.partner-video{
  padding:50px 0;
}

.partner-video .video-desc{
  padding:25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partner-video .video-desc .site-link{
  text-align: right;
}

.partner-video .video-desc .site-link p{
  padding-bottom:10px;
}

.partner-video .video-desc .site-link .btn-3{
  margin-top:10px;
  padding:13px 12px;
}

.optlink{
  background: url(../images/abstract2.png) no-repeat bottom left var(--bg-color);
  padding:50px 0;
}

.optlink .imgetc{
  background: #fff;
  border-radius: 10px;
  padding:20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.optlink .imgetc p{
  color: #000;
  padding-bottom:10px;
}

.optlink .imgetc .btn-3{
  display: inline-table;
  margin-top:15px;
  padding:12px 25px;
}

.optlink p{
  color: var(--text-color);
  line-height: 24px;
  padding-bottom:15px;
  font-size:16px;
  font-weight: 400;
}

.partner-logos{
  background-color: #bcdeeb;
  padding:50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logos .logo-box{
  background-color: #fff;
  border-radius: 20px;
  padding:15px;
  text-align: center;
  margin:0 50px;
}

.partner-logos .logo-box  img{
  margin-bottom:15px;
}

.partner-logos .logo-box p{
  padding-bottom:15px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.partner-logos .logo-box .btn-3{
  display: inline-table;
  padding:12px 25px;
}

/* clients partners page */

/* industry involvement page */

.top100{
  padding:50px 0;
  background-color: var(--bg-color);
}

.top100 h3{
  font-weight: 500;
  font-size: 40px;
  text-transform: capitalize;
  color: var(--text-color);
  padding-bottom:15px;
}

.top100 h2{
  font-weight: 800;
  font-size: 72px;
  color: var(--text-color);
  text-transform: capitalize;
  padding-bottom:25px;
  line-height: 87px;
}

.top100 p{
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 15px;
}

.optlink h3{
  font-weight: 500;
  font-size: 40px;
  text-transform: capitalize;
  color: var(--text-color);
  padding-bottom:15px;
}

.optlink h2{
  font-weight: 800;
  font-size: 72px;
  color: var(--text-color);
  text-transform: capitalize;
  padding-bottom:25px;
  line-height: 87px;
}

/* industry involvement page */


/* blog page */

.blog-body{
  padding:80px 0;
}

.blog-body h2{
  color: var(--text-color);
  font-size: 44px;
  font-weight: 400;
  padding-bottom:40px;
  text-transform: capitalize;
}

.blog-body h2 span{
  font-weight: 800;
  color: var(--accent-color);
}

.blog-body h4{
  color: var(--text-color);
  font-size: 29px;
  font-weight: 400;
  padding-bottom:25px;
  text-transform: capitalize;
}

.blog-body h4 span{
  font-weight: 800;
  color: var(--accent-color);
}

.blog-body img.img-fluid{
  margin-bottom:25px;
  border-radius: 20px;
  max-height:309px;
  width:100%;
}

.blog-body h3{
  font-size: 18px;
  font-weight: 500;
  padding-bottom:20px;
  color: var(--text-color);
  width: 95%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog-body .btn-3{
  padding:12px 25px;
}

.blog-body .published .icon{
  background: var(--accent-color);
    padding: 10px;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
}

.blog-body .published .writer-date p{
  padding-bottom: 5px;
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 12px;
  color: #3F5467;
  font-weight: 500;
}

.blog-body .published .writer-date h6{
  font-weight: 800;
  color: #3F5467;
  text-transform: capitalize;
  font-size: 12px;
  padding:0;
  margin:0;
}

.blog-body .published ~ p{
  line-height: 24px;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 400;
  margin-bottom:15px;
}

.latestnews{
  display: flex;
  justify-content: space-between;
}

.latestnews img{
  width:100px;
  height:100px;
  border-radius:20px;
}

.latestnews .newstexts{
  width:calc(100% - 100px);
}

.latestnews .newstexts h3{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom:10px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 13px;
}

.latestnews .newstexts h3 a{
  color: var(--text-color);
}

.latestnews .newstexts p{
  font-size: 13px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-pagination {
  border-top: 1px solid #cde1eb;
  border-bottom: 1px solid #cde1eb;
  padding: 0;
}

.custom-pagination .page-item {
  margin: 0 2px;
}

.custom-pagination .page-link {
  border: none;
  color: var(--text-color);
  font-weight: 500;
  border-radius: 0;
  background: transparent;
  font-size: 18px;
  width:47px;
  height:53px;
}

.custom-pagination .page-link.prev, .custom-pagination .page-link.next{
  border:1px solid #ccc;
  border-radius:50% !important;
  font-size: 10px;
  color: var(--text-color);
}

.custom-pagination .page-link.active {
  background: var(--accent-color);
  color: #fff;
  border-radius: 3px;
}

.custom-pagination .page-link:hover {
  background: var(--accent-color);
  color: #fff;
}

.custom-pagination .page-link:focus{
  box-shadow:none;
}

.custom-pagination li:first-child .page-link,
.custom-pagination li:last-child .page-link {
  border-radius: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-pagination .justify-content-center li .page-link{
  width:47px;
  height:53px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-body select{
  border-radius:10px;
  border:1px solid #88D8F9;
  font-size: 17px;
  color: #656060;
}

.borderraidus{
  border-radius:39px !important;
}

/* blog page */


/* our employment page */

.employment{
  padding:80px 0;
}

.employment .form-select{
  border-radius:10px;
  border:1px solid #88D8F9;
}

.search-container {
  position: relative;
}

.search-container .btn-3 span{top:8px;}

.search-input {
  border-radius: 10px;
  padding-left: 35px;
  border:1px solid #88D8F9;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #888;
}

.employment h5{
  font-weight: 500;
  color:var(--text-color);
}

.employment div{
  color: rgba(0,0,0,0.7);
  font-size: 16px;
  line-height:24px;
}

.job-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  transition: box-shadow 0.3s;
}
.job-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.job-card .btn-3{
  padding:7px 25px;
}
.job-card .btn-3 span{top:8px;}
.job-title {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 24px;
  padding-bottom:10px;
}
.job-meta {
  font-size: 16px;
  color: #3F5467 !important;
  font-weight: 500;
}

.job-card .brief{
  font-weight: 500;
  color:#a38b8b;
}

.pagination .page-link{
  border-radius:50%;
}

.pagination .active > .page-link{
  background: var(--accent-color);
  border-left:0;
  border-right:0;
  border-radius:50%;
}

.more-text h3{
  padding:20px 0;
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
}

.more-text ul li{
  display: block;
  list-style: disc;
  list-style-position: inside;
  background:url(../images/tick.png) no-repeat top 5px left;
  padding-left:34px;
  padding-bottom:12px;
}

.more-text ul li:last-child{
  padding-bottom:0;
}

/* our employment page */

/*chat button*/

.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #0d9ad3;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 9999;
}

.chat-button:hover {
  transform: scale(1.1);
  background-color: #007bbd;
}

.chat-button i {
  font-size: 28px;
}

/*------------forum page----------*/

.main-box{
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  background-color: #fff;
}

.main-box .text-dark .text-primary{
  background:var(--switch-circle);
  padding:3px 10px;
  border-radius:15px;
  margin-left:8px;
  font-size:11px;
  color:#fff !important;
  display: inline-block;
}

.forum-page-top-margin{
  margin-top:150px;
}

.forum-title-head{
  background:var(--accent-color);
  color: #fff;
  position: relative;
  font-size: 14px;
  padding:18px;
}

.custom-padding{
  padding:5px 32px;
}

.custom-padding .text-muted{font-size:12px; margin-top:5px;}

.customtext{
  line-height: 25px;
  font-size: 14px;
}

.thread-title{
  color:var(--accent-color);
  font-size: 14px;
}

.custom-pagination2 .pagination{
  gap:0.5rem;
}

.custom-pagination2 .pagination .page-item:first-child .page-link{
  border-radius:50%;
}

.custom-pagination2 .pagination .page-item:last-child .page-link{
  border-radius:50%;
}

.online-status p{
  font-size: 14px;
  line-height: 24px;
}

.blue-border{
  border:1px solid #0D9AD3;
}

.blue-border h5{
  color:#0D9AD3;
  font-weight:500;
}

.blue-border h6{
  color:#646363;
}

.blue-border .prose{
  line-height: 24px;
}

.blue-border p{
  font-size: 14px;
}

.btn-reply {
  color: #fff; 
  position: relative; 
  background:var(--accent-color);
  margin-top:25px;
  text-transform: capitalize;
  font-size: 13px;
  width:270px;
  height:42px;
  text-align: center;   
  border:2px solid transparent;
  border-radius:25px;
  display: block;
  overflow: hidden;
  font-weight: 700;
  padding:15px 25px;
}

.btn-reply span{
  font-size: 13px;
  color: #fff;
  position: absolute;
  left:0;
  right: 0;
  top:12px;
  margin: auto;
  z-index: 1;
  transition: 0.5s color ease-in-out;
}

.btn-reply::before,
.btn-reply::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.btn-reply::before {
  right: -50px;
  border-right: 50px solid transparent;
  border-bottom: 50px solid #fff; 
  transform: translateX(-100%);
  z-index: -1;
}

.btn-reply::after {
  left: -50px;
  border-left: 50px solid transparent;
  border-top: 50px solid #fff; 
  transform: translateX(100%);
  z-index: -1;
}

.btn-reply:hover span{
  color: #000; 
}

.btn-reply:hover::before {
  transform: translateX(-49%);
  z-index: 0;
}

.btn-reply:hover::after {
  transform: translateX(49%);
  z-index: 0;
}

.btn-reply:hover{
  border:2px solid var(--accent-color);
}

.blue-border .font-bold{font-weight:600; color: var(--accent-color);}

.main-box .card-body p.text-dark{
  font-size: 16px;
  line-height: 24px;
}

.main-box .card-body .text-muted .text-primary{
  color: var(--accent-color);
}

.main-box .table-bordered{
  font-size: 14px;
}

.btn-new2{
  color: #000; 
  position: relative; 
  background:#fff;
  text-transform: capitalize;
  font-size: 13px;
  width:190px;
  height:42px;
  text-align: center;   
  border:2px solid transparent;
  border-radius:25px;
  display: block;
  overflow: hidden;
  font-weight: 700;
  padding:15px 25px;
}

.btn-new {
  color: #000; 
  position: relative; 
  background:#fff;
  text-transform: capitalize;
  font-size: 13px;
  width:160px;
  height:42px;
  text-align: center;   
  border:2px solid transparent;
  border-radius:25px;
  display: block;
  overflow: hidden;
  font-weight: 700;
  padding:15px 25px;
}

.btn-new span, .btn-new2 span{
  font-size: 13px;
  color: #000;
  position: absolute;
  left:0;
  right: 0;
  top:12px;
  margin: auto;
  z-index: 1;
  transition: 0.5s color ease-in-out;
}

.btn-new::before,
.btn-new::after,
.btn-new2::before,
.btn-new2::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.btn-new::before, .btn-new2::before {
  right: -50px;
  border-right: 50px solid transparent;
  border-bottom: 50px solid var(--accent-color); 
  transform: translateX(-100%);
  z-index: -1;
}

.btn-new::after, .btn-new2::after {
  left: -50px;
  border-left: 50px solid transparent;
  border-top: 50px solid var(--accent-color); 
  transform: translateX(100%);
  z-index: -1;
}

.btn-new:hover span, .btn-new2:hover span{
  color: #fff; 
}

.btn-new:hover::before, .btn-new2:hover::before {
  transform: translateX(-49%);
  z-index: 0;
}

.btn-new:hover::after, .btn-new2:hover::after {
  transform: translateX(49%);
  z-index: 0;
}

.btn-new:hover, .btn-new2:hover{
  border:2px solid #fff;
}

.login-register-btn{
  border:0;
  padding:8px 10px;
  background:#ddd;
  font-size:14px;
  transition:0.3s all ease-in-out;
}

.border-b-2{
  background:var(--switch-circle);
  color:#fff;
}

#loginForm label, #registerForm label, #applyJobForm label, form.custom-padding label{
  font-weight: bold;
  color: #013F75;
  font-size: 14px;
}

.btn-back{
  color: #fff; 
  position: relative; 
  background:#6e6d6d;
  margin-top:25px;
  text-transform: capitalize;
  font-size: 13px;
  width:120px;
  height:42px;
  text-align: center;   
  border:2px solid transparent;
  border-radius:25px;
  display: block;
  overflow: hidden;
  font-weight: 700;
  padding:15px 25px;
}

.btn-back span{
  font-size: 13px;
  color: #fff;
  position: absolute;
  left:0;
  right: 0;
  top:12px;
  margin: auto;
  z-index: 1;
  transition: 0.5s color ease-in-out;
}

.btn-back::before,
.btn-back::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.btn-back::before {
  right: -50px;
  border-right: 50px solid transparent;
  border-bottom: 50px solid #fff; 
  transform: translateX(-100%);
  z-index: -1;
}

.btn-back::after {
  left: -50px;
  border-left: 50px solid transparent;
  border-top: 50px solid #fff; 
  transform: translateX(100%);
  z-index: -1;
}

.btn-back:hover span{
  color: #000; 
}

.btn-back:hover::before {
  transform: translateX(-49%);
  z-index: 0;
}

.btn-back:hover::after {
  transform: translateX(49%);
  z-index: 0;
}

.btn-back:hover{
  border:2px solid #5c5b5b;
}

.extraclass{
  background: #ddd9d9;
  padding: 9px 18px;
  border-radius: 20px;
  font-size: 14px;
  color: #000;
}


/*request pricing*/

.pricing-card { background:#fff; border-radius:12px; box-shadow:0 4px 16px rgba(0,0,0,0.05); }
.badge-box { width:46px; height:46px; border-radius:10px; background:#eef4ff; display:flex; justify-content:center; align-items:center; font-weight:700; color:#0d6efd; }
.pricing-card h3{
    font-size: 25px;
    letter-spacing: 20px;
    color: var(--text-color);
    text-transform: uppercase;
    padding-bottom: 25px;
}

.pricing-card h1{
    color: var(--text-color);
    font-size: 46px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.pricing-card h1 span{
  font-weight: 800;
  color: var(--accent-color);
}

#pricingForm input[type="text"],
#pricingForm input[type="email"],
#pricingForm input[type="tel"],
#pricingForm input[type="file"],
#pricingForm textarea{
    width: 100%;
    padding: 10px 16px;
    margin: 8px 0;
    border: 1px solid #88D8F9;
    border-radius: 10px;
    font-size: 14px;
    resize: none;
}

#pricingForm input[type="file"] + small.text-muted{font-size: 12px;}

#pricingForm p{
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
}

#pricingForm select{
    width: 100%;
    padding: 10px 16px;
    margin: 8px 0;
    border: 1px solid #88D8F9;
    border-radius: 10px;
    font-size: 14px;
    resize: none;
}

.whyus img{
  width:60px;
  height:auto;
}

.whyus{
  border: 3px solid #0D9AD3;
  border-radius: 50px 0 50px;
  padding: 40px 25px;
}

.whyus h2{
  font-size: 25px;
  font-weight: 700;
  margin-bottom:30px;
}

.whyus h2, .faq h2{
  color: var(--text-color);
  font-size: 36px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.whyus h2 span, .faq h2 span{
  font-weight: 800;
  color: var(--accent-color);
}

.whyus p{
  font-size: 14px;
}

.whyus h5{
  font-size: 16px;
  font-weight: 700;
  margin-bottom:20px;
}

.toggle-btn{
  background: var(--switch-circle);
  padding: 5px 10px;
  border-radius: 15px;
  margin-left: 8px;
  font-size: 11px;
  color: #fff !important;
}

.whyus ul li{
  padding-bottom:16px;
  background:url(../images/tick.png) no-repeat top left;
  padding-left:34px;
}

.faq .accordion-button{
  font-weight:600;
  font-size: 16px;
}

.userlogin p{
  font-size:14px;
  line-height:20px;
}

.userlogin .alert-dismissible .btn-close{top:11px;}

/*request pricing*/

.btn-edit{
  padding: 0;
  background: #138903;
  width: 32px;
  height: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
}

.btn-show{
  padding: 0;
  background: #0D9AD3;
  width: 32px;
  height: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
}

.input-group .btn-primary{
  background-color: var(--switch-circle);
  border:var(--switch-circle);
}

.userpref{
  margin-left:15px;
  font-size: 20px;
  color: var(--bg-color);
}

.header-gear {
  position: relative;
  display: inline-block;
}

.gear-btn {
  background: transparent;
  border: none;
  font-size: 23px;
  cursor: pointer;
  color: var(--bg-color);
  padding-top:5px;
}

.gear-dropdown {
  position: absolute;
  top: 42px;
  right: 0;
  width: 180px;
  background: var(--bg-color);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: none;
  z-index: 1000;
  overflow: hidden;
  padding:15px;
}

.gear-dropdown a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 14px;
}

.gear-dropdown a:hover {
  background: #f1f5ff;
}

.gear-dropdown hr {
  margin: 6px 0;
  border: none;
  border-top: 1px solid #eee;
}

.gear-dropdown .logout {
  color: #dc3545;
}
