/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap'); */

/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

*{
  padding: 0px;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "DM Sans", sans-serif; */
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Bricolage Grotesque", sans-serif;
  color: #444444;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  color: #ff6600;
  text-decoration: none;
}

.accordion {
  background-color: transparent;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.4s;
  font-weight: 600;

}

.active,
.accordion:hover {
  background-color: none;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}





a:hover {
  /* color: #ffbc2ce0; */
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {

}

.row {
  margin: 0 auto;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff6600;
  ;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2be4a2;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  #second_footer .footer-links {
    /* text-align: center; */
    text-align:left;
  }


  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;

  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
}


#header.header-transparent {
  /* background: white; */
  /* background:transparent; */

  background: #05375c;
  border-bottom: 2px solid #e3bfb3;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  /* background: linear-gradient(to bottom, #162b3a 0%, #1e3d59 60%, #009bff47 100%); */
}


#header.header-scrolled {
  /* background: #2f82c3; */
  /* background: linear-gradient(36deg, #2F82C3 0%, #1DD47D 100%); */
  /* background:#1e3d59; */
  background:#05375c;
  
  /* background:linear-gradient(36deg, #1c91ec 0%, #0FB76C 100%); */
  height: 76px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

#header.header-scrolled .navbar a {
  color: white;
  /* color:#000; */
}


/* Main nav links when header is scrolled */
#header.header-scrolled .navbar .nav-link {
  color: #fff !important;
}

/* Dropdown items when header is scrolled */
#header.header-scrolled .dropdown-menu .dropdown-item {
  color: #000 !important;
}

/* Hover color */
#header.header-scrolled .navbar .nav-link:hover {
  color: #fcd2c5 !important;
  transition: 0.4s;
}



#header.header-scrolled .dropdown-menu .dropdown-item:hover {
  /* background-color: #00a859 !important; your hover color */
  color: #e07a5f !important;               /* hover text color */
}

/* Animate underline for dropdown items */
/* Base dropdown item style */

/* #header.header-scrolled .nav-item.dropdown .dropdown-menu {
  left: 50% !important;
  transform: translateX(-85%) !important;
  right: auto !important;
} */


/* ===============================
   DESKTOP ONLY (Safe)
   =============================== */
@media (min-width: 992px) {
  #header.header-scrolled .nav-item.dropdown .dropdown-menu {
    left: 50% !important;
    transform: translateX(-85%) !important;
    right: auto !important;
    /* color:#000 !important; */
  }
  #header.header-scrolled .navbar .nav-link {
  color: #fff !important;
}
}

/* ===============================
   TABLETS & MOBILES
   =============================== */
@media (max-width: 991px) {
  #header.header-scrolled .nav-item.dropdown .dropdown-menu {
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    width: 100%;
    min-width: 100%;
    /* color:#000 !important; */
  }

  #header.header-scrolled .navbar .nav-link {
  color: #000 !important;
}
}












.dropdown-menu {
  /* background: #e8f9f0 !important; */
  background:#fff !important;
  border: none !important;
  border-radius: 8px !important;
  /*padding: 0 !important;*/        /* FIX: removes white inner padding */
  overflow: hidden;             /* for rounded corners to work clean */
  color:#000 !important;
}

/* Dropdown item styling */
.dropdown-menu .dropdown-item {
  position: relative;
  overflow: hidden;
  color: #000;
  padding: 12px 18px;           /* cleaner spacing */
}

/* Underline animation */







/* Hover effect */
.dropdown-menu .dropdown-item:hover {
  background-color: transparent !important;
  color: #e07a5f !important;
}

/* Active press (mobile/long press) */
.dropdown-menu .dropdown-item:active {
  background-color: #fff !important;
  color: #e07a5f !important;
}

.nav-item.dropdown .dropdown-menu {
  top: 150% !important;
  left: 50% !important;
  /* transform: translateX(-50%) !important; */
  transform: translateX(-85%) !important;
  right: auto !important;
}




/* ===============================
   RESPONSIVE DROPDOWN MENU
   =============================== */

/* Desktop & large screens */
@media (min-width: 992px) {
  .nav-item.dropdown .dropdown-menu {
    top: 150% !important;
    left: 50% !important;
    transform: translateX(-85%) !important;
    right: auto !important;
    min-width: 220px;
  }
}

/* Tablets (iPad portrait & landscape) */
@media (max-width: 991px) {
  .nav-item.dropdown .dropdown-menu {
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    width: 100%;
    min-width: 100%;
    border-radius: 6px !important;
  }

  .dropdown-menu .dropdown-item {
    padding: 14px 18px;
    font-size: 16px; /* iOS tap-friendly */
  }
}

/* Mobile devices (Android + iPhone) */
@media (max-width: 576px) {
  .dropdown-menu {
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .dropdown-menu .dropdown-item {
    padding: 16px 20px;
    font-size: 16px;
  }
}

/* Extra small iPhones (SE, mini) */
@media (max-width: 400px) {
  .dropdown-menu .dropdown-item {
    padding: 14px 16px;
    font-size: 15px;
  }
}





/* @media (max-width: 768px) {

  .nav-item.dropdown .dropdown-menu {
  left: 50% !important;
  /* transform: translateX(-50%) !important; *
  transform: translateX(0%) !important;
  right: auto !important;
}


} */




.hide-header {
  transform: translateY(-100%);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  /* color: #fff; */
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: -10px 0 0 0;
  /* max-height: 40px; */
  width: 200px;

}

.mailid .form-control {
  font-weight: 500;
  /* background: rgba(255,255,255,0.1); */
  background-color: #eaf1ff;
  border-radius: 10px;
  font-size: 15px;
  padding: 12px 15px;
  width: 100%;
  /*margin: 0px 0px 10px 0px;*/
  color: #000000;
  border: none;

}

.mailid .col-form-label {
  font-weight: 600;
}

.mailid .modal-title {
  font-weight: 600;
  font-size: 24px;

}

.mailid textarea.form-control {
  /*min-height: calc(1.5em + 0.75rem + 2px);*/
  min-height: 120px;

}

.modal-header {
  background: #fff;
  border: none;
}

.modal-body {
  background: #fff;
}

.modal-footer {
  background: #fff;
  border: none;
  display: flex;
  justify-content: center;

}

.modal-header .close {
  background: none;
  ;
  border: none;
  border-radius: 20px;

}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  /*color: #01036f;*/
  color: black;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ff6600;
  ;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }



  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;

  }
}






/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  /* font-family: "Open Sans", sans-serif; */
  font-family:"Bricolage Grotesque", sans-serif;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  /* color: rgba(255, 255, 255, 0.7); */
  /* color: black; */
  color:#fff;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.4s;
  font-weight: 600;
}




.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

/* .navbar>ul>li>a:after {
  position: absolute;
        content: "";
        top: 90%;
        left: 40%;
        width: 50%;
        height: 3px;
        background: black;
        transform: scaleX(0);
        transform-origin: right;
        transition:  0.4s;
} */

.navbar a:hover:after,
.navbar li:hover>a:after,
.navbar .active:after {
  /* transform: scaleX(1);
  transform-origin: left;
        transition: 0.4s; */
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  /* color: #fff; */
  /* color: #2f82c3; */
  color:#fcd2c5;
  /* font-weight: 600; */
  transition: 0.2s;
}



/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  /* color: #000000; */
  color:#c18b7c;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }



  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }


  .mySwiper-new p {
    color: black;
    padding: 10px;
    font-size: 22px;
    font-weight: 500;
  }

}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #161616;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li>a:before {
  left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: black;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: black;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  /* margin: 10px 20px;
  padding: 10px 0; */
  margin: 0px 0px;
  padding: 0px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #ff6600;
}


.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/
#home {
  width: 100%;
  background: url("../img/bg-bgrnd.jpg");
  /* background: aliceblue; */
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 180px 0 0 0;
  min-height: 100vh;
}

#home:before {
  content: "";
  background: url("../img/bg-bgrnd.jpg");
  /* background: aliceblue; */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#home h1 {
  margin: 0 0 20px 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(255, 255, 255, 0.8);
}

#home h1 span {
  color: #fff;
  border-bottom: 4px solid #ff6600;
  ;
}

#home h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
}

#home .btn-get-started {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #ff6600;
  ;
  text-transform: uppercase;
  position: relative;
}

#home .btn-get-started:hover {
  background: #17b57d;
}

#home .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/*.text_yellow{
  * color: #0FB76C !important; */
  /* color: #ec0003 !important; */
  /* color:#ff5b00 !important; */
  /* color:#ff8f00 !important; *
  color: linear-gradient(318deg, #1c91ec 0%, #1DD47D 100%) !important;
} */

.text_yellow {
  /* color:#e07a5f; */
  color:#E86A4A;
  /* background: linear-gradient(240deg, #1c91ec 0%, #0FB76C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important; */
}





.text_yellowf {

 /* color:#fff; */
 color:#fcb900;

 
}


.text-black3{
  color:#05375c !important;
}

.text_green{
  /* color: #1dd47d !important; */
  /* color: #1c91ec !important; */
  color: #1e3d59 !important;
  /* color:#0FB76C !important */
}



.text_green2{
  /* color: #1dd47d !important; */
  /* color: #1c91ec !important; */
  color: #000 !important;
  /* color:#0FB76C !important */
}

.text-subhead{
  /* color:#2f82c3 !important; */
  /* color:#1dd47d !important; */
  /* color:#1c91ec !important; */
  /* color: #1e3d59 !important; */
  color:black !important;
font-weight: 600;
  
}


.size-subhead{
  font-size:26px !important;
  line-height: 1.2;
}

.size-subhead span {
  color: #2424249e; /* your desired color */
}


.size-subhead1{
  font-size:22px !important;
  line-height: 1.2;
}

.size-subhead1 span {
  color: #2424249e; /* your desired color */
}



.home_button {
  /* background: #1dd47d; */
  /* background: linear-gradient(318deg, #4e9bd7 0%, #1DD47D 100%); */
  /* background: linear-gradient(160deg, #0b1c26 0%, #1e3d59 55%, #d38371 120%);  */
  /* background: linear-gradient(318deg, #1c91ec 0%, #0FB76C 100%); */
  background: linear-gradient(135deg, #ffe18f 0%, #ffc526 45%, #fcb900 100%);
  /* background: linear-gradient(135deg, #2c90ca 0%, #1e3d59 45%, #05375c 100%); */
  padding: 10px 35px;
  color: black !important;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  display: block;
  width: fit-content;
}





.home_button1 {
  /* background: #1dd47d; */
  /* background: linear-gradient(318deg, #4e9bd7 0%, #1DD47D 100%); */
  /* background:#ff8f00 ; */
  /* background:#05375c; */
  background: linear-gradient(135deg, #ffe18f 0%, #ffc526 45%, #fcb900 100%);
  padding: 10px 35px;
  color: black !important;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  display: block;
  width: fit-content;
  border:none;
}

#mainheading {
  margin: 0 0 20px 0;
  /*font-size: 46px;*/
  font-weight: 600;
  line-height: 56px;
  color: black;
  text-transform: none;
  background: #f4f9fd;
}

@media (min-width: 1024px) {
  #home {
    /* background-attachment: fixed; */
  }

  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}

@media (max-width: 991px) {
  #home {
    /* padding-top: 80px; */
  }

  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }

  #home .animated {
    /* animation: none; */
  }

  #home .home-img {
    text-align: center;

  }

  #home .home-img img {
    max-width: 50%;
    border-radius: 50px;
  }

  #home h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #home h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #home .home-img img {
    width: 80%;
  }


  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.home-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ff6600;
  ;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
 
  color: #010483;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }


  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }

  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }


  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #34e5a6;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #ff6600;
  ;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }


  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

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

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

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #0205a1;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

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

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

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

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

.member .pic{
  width: 35px;
    height: 35px;
    /* background: white; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    border-radius: 2px;
}

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

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

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

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

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

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

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

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

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

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

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



/* features */
.title-head {
  font-size: 34px;
  /* font-weight: 700; */
  color: black;
  text-align: left;

}

.title-subTitle {
  font-size: 34px;
  /* font-weight: 700; */
  /* color: black; */
  color:#E86A4A;
  text-align: left;

}

.line {
  background: #161616;
  margin: 2px auto;
  width: 50px;
  height: 4px;
  border-radius: 5px;
}

.ftrs {
  background: #e3e3e3;
}

.ftrs .ftrs_img {
  width: 70%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ftrs .ftrs_fcolmn {
  /* overflow: hidden; */
  position: relative;
  display: flex;
  align-items: center;
}

.ftrs .ftrs_contDiv {
  position: absolute;
  z-index: 9;
  top: 20%;
  left: 50%;
}

.ftrs .broad_box {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;

}

.ftrs .broad_box .btn {
  padding: 8px 35px;
  border-radius: 10px 10px 0px 10px;
  color: white;
  font-weight: 700;
  background: #cc0000;
  font-size: 18px;
}

.ftrs .sub-p {
  text-align: center;
  margin: 20px 0;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.5;
}

.sub-p {
  text-align: center;
  margin: 20px 0;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.5;
  font-size: 14px;
}

.ftrs h1 {
  font-weight: 700;
  font-size: 22px;
  color: black;
}

.ftrs .inner-flex {
  display: flex;
  align-items: flex-start;
}

.ftrs .ftrs-subtitle {
  /* color: #0245bc; */
  color: black;
  margin: 35px 0 10px 0;
  font-size: 25px;
  font-weight: 600;
}

.inner-flex .bi-1 {
  font-size: 44px;
  line-height: 44px;
  color: #ff5828;
}


.inner-flex .bi-2 {
  font-size: 44px;
  line-height: 44px;
  color: #e361ff;
}

.inner-flex .bi-3 {
  font-size: 44px;
  line-height: 44px;
  color: #ff6600;
}

.inner-flex .bi-4 {
  font-size: 44px;
  line-height: 44px;
  color: #11dbcf;
}

.inner-flex .ftrs-content {
  padding: 0 15px;
}

.ftrs-content p {
  color: black;
  font-weight: 400;

}

.row-cont img {
  width: 100%;
}

.row-cont {
  padding-top: 30px;
}

/* .....why..... */
.why-us .why-row {
  display: flex;
  justify-content: center;
  margin-top: 30px;

}

.why-row .col-lg-3 {
  margin: 20px 0;
}

.why-us .box {
  padding: 40px 21px;
  /* box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08); */
  /* box-shadow: rgba(99, 99, 99, 0.2) 2px 2px 2px 2px; */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  /* box-shadow: 0px 0px 4px 4px #000; */
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border-radius: 4px;
  transition: .3s;
  /* margin: 10px; */
}

.why-us .box:hover {
  box-shadow: rgb(255, 187, 44) 0px 0px 5px 0px, rgb(255, 187, 44) 0px 0px 1px 0px;
  /* box-shadow: rgb(255, 187, 44) 2px 2px 2px 2px; */
  /* box-shadow: rgb(255, 187, 44) 0px 6px 12px -2px, rgb(255, 187, 44) 0px 3px 7px -3px; */
}

.ftrs .box {
  padding: 21px 21px;
  /* box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08); */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border-radius: 4px;
  transition: .3s;
  /* margin: 10px; */
}

.box1 {
  padding: 1px 20px 1px 0px;
  /* box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08); */
  /*box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border-radius: 4px;
  transition: .3s;
  /* margin: 10px; */
}

.box1 i {
  font-size: 25px;
}

.sub-ttl {
  font-size: 20px;
  color: black;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 1px;
  text-align: center;
}

.in-span {
  /* color: #ff6600;; */
  /* color: #b23229; */
  color: #ff6600;
}

.why-us .box img {
  width: 70%;
  text-align: center;
  margin: 15px 0;
}

.why-us .why-text {
  margin: 15px 0 0 0;
  font-size: 17px;
  color: #222;
}

.why-us .box:hover img {
  transform: scale(1.1);
  transition: .3s;

}


/* .map-container {
            width: 100%;
            max-width: 100%;
            height: 420px;
            /* margin: 30px auto; *
            margin-top:85px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        } */





 /* Container */
.map-section {
    width: 100%;
    max-width: 100%;
    margin: 10px auto 30px;
    /* padding: 0 12px; */
}

/* Responsive Map Wrapper */
.map-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 28%; /* Desktop default (compact) */
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Map iframe */
.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tablets (iPad, landscape phones) */
@media (max-width: 1024px) {
    .map-wrapper {
        padding-bottom: 35%;
        border-radius: 12px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .map-wrapper {
        padding-bottom: 45%;
        border-radius: 10px;
    }

    .map-section {
        margin-top: 70px;
        padding: 0 10px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .map-wrapper {
        padding-bottom: 55%;
        border-radius: 8px;
    }

    .map-section {
        margin-top: 60px;
        padding: 0 8px;
    }
}


        


/* .whatwesub1,
.whatwesub1 .container,
.whatwesub1 .row {
    overflow: visible;
} */








.whatwesub1 {
    position: relative;
    width: 100%;
}

/* Mobile first — NO sticky */
.whatwesub1 .position-sticky {
    position: static !important;
}

/* ============================= */
/* TABLETS + DESKTOPS (STICKY) */
/* ============================= */
@media (min-width: 768px) {   /* Bootstrap md */
    .whatwesub1 {
        overflow: visible;   /* REQUIRED */
    }

    .whatwesub1 .position-sticky {
        position: sticky !important;
        top: 100px; /* adjust for header */
    }

    .whatwesub1 img {
        max-height: 80vh;
        object-fit: cover;
    }
}

/* ============================= */
/* BOOTSTRAP GRID SAFETY */
/* ============================= */
.whatwesub1 .container,
.whatwesub1 .row {
    overflow: visible;
}


.bor_box{
  
    /* border: 2px solid #cdc7c7; */
    border-radius: 30px;
    background: #fff1ed;
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px; */

}









.abt-text{
  font-size:20px;
}


.aboutus{
  position: relative;
  overflow: hidden;
}

/* .add_poly::before{
   content: "";
    position: absolute;
    top: 0%;
    right: 0%;
    width: 75%;
    height: 60%;
   
    background: linear-gradient(358deg, #f2fcff, #05375c);
    
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%); 
} */



.aboutus .parent_icon{
 font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 5px; */
    /* margin-bottom: 5px; */
    width: 50px;
    height: 50px;
    /* background: #1dd47d14; */
}




.aboutus .parent_icon1{
 font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 5px; */
    /* margin-bottom: 5px; */
    width: 50px;
    height: 50px;
    /* background: #1dd47d14; */
}


.aboutus .parent_icon2{
 font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 5px; */
    /* margin-bottom: 5px; */
    width: 50px;
    height: 50px;
    /* background: #1dd47d14; */
}

.aboutus .abtfeature {
  padding: 16px 18px;
  border-radius: 14px;
  transition: all 0.35s ease;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  transition: all 0.3s ease;
  /* box-shadow: rgb(5 55 92) 0px 3px 40px -32px inset, rgb(255 255 255) 0px 18px 36px -18px inset; */
}

.aboutus .abtfeature:hover {
  /* background: linear-gradient(
    135deg,
    rgba(11, 28, 38, 0.05),
    rgba(211, 131, 113, 0.08)
  ); */
  background:#fcb900;
  transform: translateY(-2px);
    
  p{
    color:#000 !important;
  }
  p span{
    color:#000 !important;
  }

i {
    color:#000 !important;
  }
  
}



#about1 {
  padding: 50px 0 0 0;
}


/*

/* -------- MASKED IMAGE AREA -------- 
.masked-box {
  position: relative;
  width: 100%;
  height: 360px;
}

.masked-image {
  width: 100%;
  height: 100%;
  background-image: url("../img/sea-image.jpg");
  background-size: cover;
  background-position: center;

  /* WAVE MASK IMAGE HERE *
  mask-image: url("../img/wave-mask.png");
  mask-repeat: no-repeat;
  /* mask-size: 100% 100%; *
  mask-size: contain;

  -webkit-mask-image: url("../img/wave-mask.png");
  -webkit-mask-repeat: no-repeat;
  /* -webkit-mask-size: 100% 100%; *
   -webkit-mask-size: contain;

  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

 -------- SHIP -------- 
.ship {
  position: absolute;
  bottom: 20px;
  left: 5%;
  width: 140px;
  transition: transform 0.1s linear;
  will-change: transform;
  pointer-events: none;
}

*/


.masked-img {
  width: 100%;
  -webkit-mask-image: url('../img/wave-mask8.png');
  mask-image: url('../img/wave-mask8.png');

  -webkit-mask-size: cover;
  mask-size: cover;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;
}

.masked-imgcon {
  width: 100%;
  -webkit-mask-image: url('../img/wave-mask5.png');
  mask-image: url('../img/wave-mask5.png');

  -webkit-mask-size: cover;
  mask-size: cover;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;
}






.masked-imgserv {
  width: 100%;
  -webkit-mask-image: url('../img/wave-mask6.png');
  mask-image: url('../img/wave-mask6.png');

  -webkit-mask-size: cover;
  mask-size: cover;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;
}




/* .services {
    position: relative;
    background: url('your-image.jpg') center/cover no-repeat;
    padding-top: 120px; /* space so wave is visible *
} */



/* ============================= */
/* BASE (ALL DEVICES) */
/* ============================= */

.services {
    position: relative;
    width: 100%;
    padding: 100px 0;   /* allow content to grow */
}

/* Background image */
.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/services_bg.jpg');
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

/* Overlay */
.services::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: -1;
}

/* Wave */
.services-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-size: cover;
    z-index: 2;
    pointer-events: none;
}

/* Service card base */
.services .service-card {
    background: #fff;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ============================= */
/* MOBILE + TABLET (≤ 991px) */
/* ============================= */

@media (max-width: 991px) {

    .services {
        height: auto;          /* ✅ FIX: no fixed height */
        overflow: visible;
        padding: 80px 0;
    }

    .services::before {
        animation: none;       /* performance */
        background-size: cover;
    }

    .services .service-card {
        padding: 1.25rem;      /* smaller padding */
        clip-path: none;       /* ✅ FIX: remove clip on tablet */
    }
}

/* ============================= */
/* DESKTOP ONLY (≥ 992px) */
/* ============================= */

@media (min-width: 992px) {

    .services {
        height: 600px;         /* desktop-only fixed height */
        overflow: hidden;
    }

    .services .service-card {
        padding: 1.75rem;
        clip-path: polygon(
            0 0,
            90% 0,
            100% 28px,
            100% 100%,
            0 100%
        );
    }
}

/* ============================= */
/* ANIMATIONS */
/* ============================= */

@keyframes slowZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.05) translateY(-10px); }
    100% { transform: scale(1); }
}





.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px; /* CHANGE WAVE HEIGHT HERE */
    display: block;
}


/* .services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2); /* overlay opacity 0.2 *
} */

/* Wave SVG sits at the top */





/* chatgpt: #E8A45C; */

#info {
  padding: 50px 0 0 0;
  /* transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s; */
  /* overflow: visible;  */
}

#info .content {
  display: flex;
  justify-content: center;
  /* background-color: #ecb1326c; */
  color: #fff;
  padding: 70px 0;
}

#info .count-box {
  /* border: 3px solid #ff6600;; */
  border-radius: 5px;
  transition: .2s;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px 10px 10px 10px;
}

#info .count-box:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border: none;
  transition: .2s;
}

#info .count-box .bi {
  color: #bb0852;
  transition: .2s;
}

#info .info-content {
  font-size: 22px;
  text-align: center;
  color: rgba(47, 54, 117, 1);
  border-right: 1px solid #fff;
  padding: 0 10px;
}

.info-img {
  float: left;
}

.inf-col .bi {
  float: left;
  font-size: 64px;
}

#info .count {
  font-size: 38px;
  font-weight: 600;
}

.fir-span {
  /* font-size: 22px; */
  font-weight: 600;
  padding-left: 24px;
  font-weight: 700;

}

.count-box i {
  position: absolute;
  top: 30px;
  left: 40px;
  transform: translateX(-50%);
  font-size: 30px;
  color: black;
  width: 45px;
  height: 45px;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.count-box img {
  position: absolute;
  top: 25px;
  left: 40px;
  transform: translateX(-50%);
  font-size: 30px;
  color: black;
  width: 45px;
  height: 45px;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.count-box {
  padding: 20px 20px 20px 20px;
  width: 90%;
  position: relative;
  text-align: center;
  /* background: #f1f6fe; */
  margin: 10px;
  color: rgba(1, 4, 136, 0.9);

}

#info .info-p {
  padding-left: 42px;
  padding-top: 5px;
}

#info .e-line {
  position: relative;
}

#info .e-line:after {
  position: absolute;
  content: '';
  background: white;
  right: 0;
  top: 0;
  height: 100%;
  width: 2px;
  border-radius: 5px;
}

/* .........swipe....... */
.clients .row {
  margin: 40px 0 0 0;
  display: flex;
  justify-content: center;
}

.clients .row .swiper-slide {
  text-align: center;
}

.clients .row .swiper-slide img {
  opacity: .8;
  transition: .2s;
}

.clients .row .swiper-slide img:hover {
  opacity: 1;
  transition: .2s;
}

.swiper-pagination {
  margin-top: 35px;
}

/* contact */
.contact-us {
  min-height: 100vh;
  margin-bottom: 20px;
}

.contact-us .contact-info {
  /* margin-bottom: 25px; */
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  margin: 25px 40px;
}

.contact-info .media-body p {
  color: #8a8a8a;
}

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

.contact-us label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
  color: black;
}

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

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

.contact-us .form-control {
  border: 1px solid #c7b6eb;
  border-radius: 5px;
  height: 40px;
  padding-left: 18px;
  font-size: 13px;
  background: transparent;
}

.contact-info__icon {
  margin-right: 20px;
}

.contact-info__icon .bi {
  color: #8f9195;
  font-size: 27px;
  margin-top: 10px;
  /* color: hsl(209, 94%, 46%); */
  color: rgba(1, 4, 136, 0.9);
}

.contact-info .media-body h3 {
  font-size: 16px;
  margin-bottom: 0;
  font-size: 16px;
  /* color: #2a2a2a; */
  color: black;
  font-weight: 500;
  padding-top: 10px;
}

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

.contact-us .cont-btn {
  /* font-family: "Montserrat", sans-serif; */
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 37px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #ff6600;
  ;
  text-transform: uppercase;
  position: relative;
  border: none;
}

.contact-us .long-row {
  height: 70px;
}

/* ......testimonials... */
.testimonials .mySwiper-tt .swiper-pagination {
  margin-top: 20px;
  position: absolute;
  bottom: 0;

}

.testimonials .mySwiper-tt {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 50px;
}

.testimonials .swip-wrap {
  position: relative;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px 30px;
  /* margin: 10px 25px; */
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: .3s;
}

.testimonials .stars {
  margin-bottom: 20px;
}

.testimonials .stars .bi {
  font-size: 20px;
  color: #ff6600;
  ;
  margin: 0 1px;
}

.testimonials p {
  color: black;
  font-weight: 400;
  font-style: italic;
}

.testimonials .profile .testimonial-img {
  width: 60px;
  border: 1px solid white;
  border-radius: 50%;
}

.testimonials .stars .blk {
  color: black;
}

.testimonials .profile h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .profile h4 {
  font-size: 14px;
  margin: 0;
  color: #999;
}



/* .....quote..... */
/* .req {
  padding: 130px 0;
  background-image: url(../img/banner.jpg);
  background-size: cover;
  background-position: left;
  margin: -60px 0 0 0;
  /* height: 100vh;
  width: 100%; */
.demo-pg {
  padding: 60px 0 0 0;
  position: relative;

}

#request {
  background-image: url(../img/curve-bg.png);
  background-size: cover;
  background-position: left;
  margin-top: -60px;
  padding: 100px 0;
  z-index: -4;
  /* z-index: -90; */
  background-attachment: fixed;

}

#request h3 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  color: rgba(1, 4, 136, 0.9);
  margin-bottom: 20px;
}

#request span {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 600;
}

#request .reg-btn {
  /* font-family: "Montserrat", sans-serif; */
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 10px;
  transition: 0.5s;
  background: black;
  color: #ff6600;
  ;
  text-transform: uppercase;
  position: relative;
  margin-top: 20px;

}


.features_icons {
  margin-top: -100px;   /* pull upward */
  position: relative;
  z-index: 10;
}

.highlight-item {
  background: linear-gradient(135deg, #ffe18f 0%, #ffc526 45%, #fcb900 100%);
  /* background: linear-gradient(135deg, #2c90ca 0%, #1e3d59 45%, #05375c 100%); */

  /* background: linear-gradient(135deg, #0b1c26 0%, #1e3d59 45%, #d38371 100%); */
/* color: #ffffff; */

  /* background: #ff5b00; */
  /* background: linear-gradient(318deg, #4e9bd7 0%, #1DD47D 100%); */
  /* background: linear-gradient(318deg, #1c91ec 0%, #0FB76C 100%); */
  /* background: linear-gradient(175deg, #1c91ec 0%, #434343 100%); */
  
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease; 
  align-items: center;
  justify-content: center;
  height:100px;
}

/*


.features_icons {
  /* background: #f0f6fb; *
  background: #e0e6eb;
}

.highlight-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem;
  transition: all 0.3s ease;
}


*/

.highlight-item .parent_content {
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 10px;
}

.highlight-item .parent_icon {
  /* color: #4e9bd7; */
  /* color:#fff; */
  color:black;
  /* background: #dcf0ff; */
  /* background: linear-gradient(318deg, #4e9bd7 0%, #1DD47D 100%); */
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  /* padding: 10px; */
  border-radius: 50%;
}

.highlight-item .parent_icon i {
  display: flex;
}


.highlight-item h6 {
  font-weight: 500;
  /* color: black; */
  /* color:#ffc6b5; */
  /* color:#fcd2c5; */
  color:black;
  /* color:#fff; */
  font-size: 18px;
  text-align: left;
}


.highlight-item p {
  font-size: 15px;
  text-align: left;
  color: black;
}


.highlight-item:hover {
  transform: translateY(-5px);
  /* box-shadow: rgba(0, 122, 255, 0.6) 0px 5px 15px; */
  

  /* box-shadow: rgba(0, 122, 255, 0.4) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px; */

  box-shadow: rgba(255, 180, 155, 0.747) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}



/* ===============================
   RESPONSIVE: Features Icons
   =============================== */

/* Large tablets & small laptops */
@media (max-width: 1200px) {
  .features_icons {
    margin-top: -70px;
    /* margin-top: 0; */
  }

  .highlight-item {
    padding: 22px 14px;
  }

  .highlight-item h6 {
    font-size: 17px;
  }

  .highlight-item p {
    font-size: 14px;
  }
}

/* Tablets (portrait & landscape) */
@media (max-width: 992px) {
  .features_icons {
    margin-top: -40px;
  }

  .highlight-item {
    padding: 20px 12px;
    border-radius: 10px;
  }

  .highlight-item .parent_icon {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .highlight-item h6 {
    font-size: 16px;
  }

  .highlight-item p {
    font-size: 14px;
  }
}

/* Small tablets & large phones */
@media (max-width: 768px) {
  .features_icons {
    margin-top: 0;          /* Remove overlap on mobile */
  }

  .highlight-item {
    padding: 18px 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin-top:10px;
  }

  .highlight-item .parent_content {
    margin-left: 8px;
  }

  .highlight-item h6,
  .highlight-item p {
    text-align: left;
  }
}

/* Mobile devices */
@media (max-width: 576px) {
  .features_icons {
    margin-top: 0;
  }

  .highlight-item {
    padding: 16px 12px;
    border-radius: 10px;
    transform: none;   
    margin-top:10px;     /* Disable hover lift on touch */
  }

  .highlight-item:hover {
    transform: none;
  }

  .highlight-item .parent_icon {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .highlight-item h6 {
    font-size: 15px;
  }

  .highlight-item p {
    font-size: 13.5px;
    line-height: 1.5;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .highlight-item {
    padding: 14px 10px;
    margin-top:10px;
  }

  .highlight-item .parent_icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .highlight-item h6 {
    font-size: 14.5px;
  }

  .highlight-item p {
    font-size: 13px;
  }
}

@media (max-width: 820px) {
  .features_icons {
    margin-top: 0;
  }

  .highlight-item {
    margin-top: 12px;
  }
}









#mision {
  padding: 50px 0;
  background: #DF8932;
  margin-top: -60px;
}

#social {
  background-image: url(../img/slider/banner.jpg);
  padding: 0;
}





@media (max-width: 768px) {
 
  
 



#header.header-transparent {
    /* background: white; */
    /* background: transparent; */
    background:#05375c;
    /* background: #1e3d59; */
    /* background: linear-gradient(to bottom, #162b3a 0%, #1e3d59 60%, #009bff47 100%); */
}


}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* background: #b9dbf4; */
  background: black;
  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

.contactus a {
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.contactus a:hover {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
}

.contactus_bg{
  /* background-color:#eae7e7; */
  background-color:#f4f4f4;
  border-radius: 10px;
}



#footer .footer-top .contactus {
  /*padding-top: 10px;
  padding-left: 30px;*/
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #010246;
  color: #fff;
  border-top: 4px solid #ff6600;
  ;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  /* font-family: "Montserrat", sans-serif; */
}

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

#footer .footer-top .social-links a:hover {
  background: #ff6600;
  ;
  /* color: #fff; */
  text-decoration: none;
}

#footer .footer-top h4 {
  color: #ffffffc4;
  transition: 0.3s;
  display: inline-block;
  line-height: 3;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;

}

#footer .footer-top .final_h4 {
  text-transform: capitalize;
  font-size: 27px;
  text-align: left;
}

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

#footer .footer-top .footer-links ul a i {
  font-size: 24px;
  color: white;
  padding: 10px;
  transition: .2s;
}

#footer .footer-top .footer-links ul a i:hover {
  transform: scale(1.1);
  transition: .2s;
  
}


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

#footer .footer-top .social_media {
  border-radius: 50%;
  border: 1px solid white;
  padding: 10px;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  /* color: #61ebba; */
  color: #cc0000;
  font-size: 18px;
  line-height: 1;
}

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

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

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

#footer .footer-top .footer-links ul a:hover {
  color: #cc0000;
}


#footer .footer-newsletter {
  text-align: right;
}

#footer .footer-newsletter img {

  margin: 0 0 20px 0;
}

#footer .footer-top h5 {
  font-size: 15px;
  font-weight: 600;
 
  color: white;
  padding: 15px 0;
}

#footer .footer-top .form-control {
  padding: 15px;
  /* color: orange; */
  font-size: 15px;
  font-weight: 600;
}

.whatsapp:hover .bi {
  color: white;
}

#footer .footer-newsletter .cmx-img {
  width: 135px;

}

#footer .footer-newsletter h4 {
  font-size: 18px;
  font-weight: 500;
}

#footer .copyright {
  border-top: 1px solid #010479;
  text-align: center;
  padding-top: 30px;
}



#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}


.anchor-two{
  color:#e07a5f !important;
}

.ftr a,
.ftr a:hover,
.ftr a:focus,
.ftr a:active {
  text-decoration: none !important;
}



/* Footer Base */
.ftr {
  background-color: #004375;
  padding: 15px 0;
}

/* Copyright */
.ftr .copyright {
  color: #fff;
  font-size: 14px;
}

.ftr .copyright a {
  color: #ffffff;
  text-decoration: none;
}

.ftr .copyright a:hover {
  text-decoration: underline;
}

/* Designed By */
.ftr .dream h6 {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

.ftr .dream a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

.ftr .dream a:hover {
  text-decoration: underline;
}

/* Tablet (≤ 991px) */
@media (max-width: 991px) {
  .ftr {
    padding: 18px 0;
  }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
  .ftr .copyright,
  .ftr .dream {
    text-align: center;
  }

  .ftr .dream h6 {
    margin-top: 8px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .ftr .copyright,
  .ftr .dream a {
    font-size: 13px;
  }
}


.right-social {
  position: fixed;
  top: 30%;
  /* right: 0; */
  width: 205px;
  z-index: 2;
  left: 91%;
}

/* .btn-whatsapp-pulse {
  background: #22bdd9;
  color: white;
  position: fixed;
  bottom: 50px;
  right: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  border:none;
} */







.right-social a {
  width: 100%;
  margin-bottom: 5px;
  display: inline-block;
  /* font-family: "Montserrat", sans-serif; */
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
  border-radius: 5px 0px 0px 5px;
  transition: all 0.3s ease-in-out;
  transform: rotate(-90deg);
  white-space: nowrap;
  color: white;
  background: #ff6600;
  ;

}

.right-social .vertical-btn {



  /* font-family: "Montserrat", sans-serif; */
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 10px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #ff6600;
  ;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}

.right-social .btn {
  /* width: 100px; */
}

.service-item .box1 img {
  min-width: 50px;
  max-width: 50px;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }



  .mySwiper-demo .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 0px;
  }
}


.why-us .icon-box {
  /* box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1); */
  padding: 50px 30px;

  background: #fff;
  min-width: 100%;
  min-height: 270px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.icon-box:hover {
  transform: translateY(-10px);
}

.icon-box:hover a {
  color: #22bdd9;
  transition: all ease-in-out 0.2s;
}

.why-us {
  min-height: 100vh;
  display: flex;
  /* align-items: center; */
  flex-direction: column;
}

.why-us .icon-box .icon {
  margin-bottom: 10px;
}

.why-us .icon-box .icon i {
  color: #22bdd9;
  font-size: 36px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
}

.why-us .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.why-us a {
  color: black;
  transition: all ease-in-out 0.2s;
}

#home .line-green span {
  color: #ff6600;
}



/* what-we   */

.whatwe .sub-p {
  text-align: center;
  margin: 20px 0;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.5;
}

.whatwesub .sub-p {
  text-align: center;
  margin: 20px 0;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.5;
}

.whatwesub .ftrs-subtitlehead {
  font-weight: 600;


}

.whatwesub .pro-box {
  background: aliceblue;
  border-radius: 10px;
  padding: 20px;
  transition: .3s;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
}

.pro-box:hover {
  transform: translateY(-10px);
  transition: .3s;
}

.pro-box:hover .bi {
  color: #ff6600;
  transition: all 0.3s ease-in-out;
}

.pro-box:hover p {
  color: #22bdd9;
  transition: all 0.3s ease-in-out;
}

.pro-box:hover .bx {
  color: black;
  transition: all 0.3s ease-in-out;
}

.whatwesub .pro-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.whatwesub .pro-box ul li h5 {
  /* height: 50px; */
}

.whatwesub .pro-box ul i {
  padding-right: 2px;
  /* color: #61ebba; */
  color: #22bdd9;
  font-size: 18px;
  line-height: 1;
}

.whatwesub .pro-box ul a {
  color: #000000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: 600;
  font-size: 15px;
}

.whatwesub .pro-box:hover ul a {
  color: #22bdd9;
  transition: .3s;
}

.whatwesub .pro-box:hover {
  transition: .3s;
  /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
}

.whatwe h1 {
  font-weight: 600;
  font-size: 20px;
  color: #0245bc;
}

.whatwesub h1 {
  font-weight: 600;
  font-size: 19px;
  /* color: black; */
  /* color:#e07a5f; */
  color:#E86A4A;
  line-height: 25px;
  /* padding-bottom: 10px; */
}

.whatwe .inner-flex {
  display: flex;
  align-items: flex-start;
}

.whatwesub .inner-flex {
  display: flex;
  align-items: flex-start;
}

.ftrs-content p {
  color: black;
  font-weight: 400;
  font-size: 17px;
  margin: 15px 0;
}


.service-thumb {
  background: #ff6601;
  padding: 30px 30px 30px 30px;
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 150px;
  width: 150px;
}

.whatwe .ftrs-subtitle {
  /* color: #0245bc; */
  color: black;
  margin: 35px 0 10px 0;
  font-size: 25px;
  font-weight: 600;
}

.whatwesub .ftrs-subtitle {
  /* color: #0245bc; */
  color: #0FB76C;
  margin: 35px 0 10px 0;
  font-size: 22px;
  font-weight: 600;
}


.whatwesub .bi-check {
  /* color: #0245bc; */
  font-size: 30px;
  color: #22bdd9;

}

.display-5 {
  margin-bottom: 0px;
}

.whatwesub .bi-cpu,
.bi-broadcast-pin,
.bi-cash-coin,
.bi-clipboard2-pulse,
.bi-laptop,
.bi-cast,
.bi-bar-chart-fill,
.bi-mortarboard,
.bi-airplane,
.bi-shield-lock,
.bi-layout-text-window-reverse,
.bi-clipboard2-data,
.bi-building-gear,
.bi-person-rolodex,
.bi-boxes,
.bi-disc,
.bi-graph-up-arrow,
.bi-app-indicator,
.bi-stack,
.bi-window-stack,
.bi-bezier2 {
  font-size: 60px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  /*align-self: center;*/
  margin-top: 15px;
}

.inner-flex .ftrs-content {
  padding: 0 15px;
}

.whatwe .box {
  padding: 21px 21px;
  /* box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08); */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border-radius: 4px;
  transition: .3s;
  /* margin: 10px; */
}

.whatwesub .box {
  padding: 21px 21px;
  /* box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08); */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border-radius: 4px;
  transition: .3s;
  /* margin: 10px; */
}

.whatwe {
  position:relative;
  padding: 80px 0;
  overflow: hidden;
  background:#fff;
  /* background:#fcb900; */
  /* background: url("../img/con_bg_7.jpg"); */
  /* background: #2f82c3; */
  /* background: linear-gradient(36deg, #2F82C3 0%, #1DD47D 100%); */
  /* background:linear-gradient(36deg, #1c91ec 0%, #0FB76C 100%); */
    /* background:linear-gradient(175deg, #1e3d59 0%, #eaeaea 100%); */
    /* background:linear-gradient(175deg, #1e3d59 0%, #eaeaea 100%); */
  /* background:linear-gradient(175deg, #1c91ec 0%, #eaeaea 100%); */
}








.whatwe::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cg transform='translate(0,120) scale(1,-1)'%3E%3Cpath fill='%2305375c' d='M0 80 C 240 60 480 60 720 80 C 960 100 1200 100 1440 80 L1440 120 L0 120 Z'/%3E%3C/g%3E%3C/svg%3E");

  animation: waveMoveTop1 5s linear infinite;
  /* background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%230a3757' d='M0 60 C 180 20 360 20 540 60 C 720 100 900 100 1080 60 C 1260 20 1440 20 1440 20 L1440 0 L0 0 Z'/%3E%3C/svg%3E") no-repeat top center; */
  background-size: cover;
}



@keyframes waveMoveTop1 {
    from {
        background-position-x: 0;
    }
    to {
        background-position-x: -1440px;
    }
}


/* .whatwe::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23030f26' d='M0 20 C 180 60 360 60 540 20 C 720 -20 900 -20 1080 20 C 1260 60 1440 60 1440 60 L1440 120 L0 120 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
} */




.whatwe1 {
  position:relative;
  padding: 80px 0;
  overflow: hidden;
  /* background:#fff; */
  background: url("../img/con_bg.png");
  /* background: url("../img/banner_new4.jpg"); */
  /* background: #2f82c3; */
  /* background: linear-gradient(36deg, #2F82C3 0%, #1DD47D 100%); */
  /* background:linear-gradient(36deg, #1c91ec 0%, #0FB76C 100%); */
    /* background:linear-gradient(175deg, #1e3d59 0%, #eaeaea 100%); */
    /* background:linear-gradient(175deg, #1e3d59 0%, #eaeaea 100%); */
  /* background:linear-gradient(175deg, #1c91ec 0%, #eaeaea 100%); */
}




.whatwesub {
  padding: 60px 0;
  overflow: hidden;
}









#social-about {
    background-image: url(../img/about_banner.jpg);
    background-size: 120%;           
    background-position: left center; 
    width: 100%;
    height: 500px;                   
    overflow: hidden;
    position: relative;              
    animation: cinematicPan 30s ease-in-out infinite alternate;
}

/* Keyframes for smooth continuous pan + zoom */
@keyframes cinematicPan {
    0% {
        background-size: 120%;
        background-position: left center;
    }
    100% {
        background-size: 125%;
        background-position: right center;
    }
}





/* #service-maritime {
    /* background-image: url(../img/maritime_banner.jpg); *
    background-image: url(../img/maritime_decarb.jpg);
    background-size: 100%;                   /* Start at true image size *
    background-position: right center;       /* Start from RIGHT *
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
    /* animation: cinePanRTL 30s ease-in-out infinite alternate; *
} */


#service-maritime {
    background-image: url(../img/service_banner1.jpg);
    background-size: cover;                 /* Ensure it covers container */
    background-position: center center;     /* Center for responsive look */
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;                           /* Default height for desktop */
    overflow: hidden;
    position: relative;
    /* animation: cinePanRTL 30s ease-in-out infinite alternate; */
}

/* Tablet devices (portrait & landscape, 768px - 1024px) */
@media (max-width: 1024px) {
    #service-maritime {
        height: 500px;
        background-position: center center;
    }
}

/* Small tablets and large phones (600px - 767px) */
@media (max-width: 767px) {
    #service-maritime {
        height: 400px;
        background-position: center top;   /* Focus on top of image */
    }
}

/* Mobile devices (up to 599px) */
@media (max-width: 599px) {
    #service-maritime {
        height: 300px;
        background-position: center top;
    }
}

/* Extra small devices (up to 399px) */
@media (max-width: 399px) {
    #service-maritime {
        height: 250px;
        background-position: center top;
    }
}










@keyframes cinePanRTL {
    0% {
        background-size: 100%;
        background-position: right center;   /* Starting point (RIGHT) */
    }
    100% {
        background-size: 108%;               /* Cinematic zoom-in */
        background-position: left center;    /* Move to LEFT */
    }
}



#contact_banner {
    background-image: url(../img/contact_banner.png);
    background-size: cover;                 /* Ensure it covers container */
    background-position: center center;     /* Center for responsive look */
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;                           /* Default height for desktop */
    overflow: hidden;
    position: relative;
    /* animation: cinePanRTL 30s ease-in-out infinite alternate; */
}

/* Tablet devices (portrait & landscape, 768px - 1024px) */
@media (max-width: 1024px) {
    #contact_banner{
        height: 500px;
        background-position: center center;
    }
}

/* Small tablets and large phones (600px - 767px) */
@media (max-width: 767px) {
    #contact_banner {
        height: 400px;
        background-position: center top;   /* Focus on top of image */
    }
}

/* Mobile devices (up to 599px) */
@media (max-width: 599px) {
    #contact_banner {
        height: 300px;
        background-position: center top;
    }
}

/* Extra small devices (up to 399px) */
@media (max-width: 399px) {
    #contact_banner {
        height: 250px;
        background-position: center top;
    }
}

/* #service-portshore {
    /* background-image: url(../img/service_maritime.jpg); */
    /* background-image: url(../img/banner_service_2.png); *
    background-image: url(../img/port_shore_3.jpg);
    background-size: 100%;                 /* Start at true image size *
    background-position: center 0%;
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;

    /* animation: cinematicVertical 28s ease-in-out infinite; *
} */





#service-portshore {
    background-image: url(../img/service_banner2.jpg);
    background-size: cover;               /* Responsive scaling */
    background-position: center top;      /* Good focal point */
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;                        /* Desktop */
    overflow: hidden;
    position: relative;
    /* animation: cinematicVertical 28s ease-in-out infinite; */
}

/* Large tablets & small laptops */
@media (max-width: 1200px) {
    #service-portshore {
        height: 600px;
        background-position: center top;
    }
}

/* Tablets (portrait & landscape) */
@media (max-width: 1024px) {
    #service-portshore {
        height: 500px;
        background-position: center top;
    }
}

/* Small tablets & large phones */
@media (max-width: 768px) {
    #service-portshore {
        height: 400px;
        background-position: center top;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    #service-portshore {
        height: 300px;
        background-position: center top;
    }
}

/* Extra small phones */
@media (max-width: 400px) {
    #service-portshore {
        height: 250px;
        background-position: center top;
    }
}










@keyframes cinematicVertical {
    0% {
        background-size: 100%;
        background-position: center 0%;     /* Start at top */
        filter: brightness(95%) contrast(105%) saturate(110%);
    }

    40% {
        background-size: 106%;              /* Smooth zoom-in */
        background-position: center 55%;    /* Cinematic descent */
        filter: brightness(100%) contrast(110%) saturate(115%);
    }

    80% {
        background-size: 110%;              /* Peak cinematic zoom */
        background-position: center 100%;   /* Reach bottom */
        filter: brightness(95%) contrast(105%) saturate(120%);
    }

    100% {
        background-size: 100%;
        background-position: center 0%;     /* Return to top */
        filter: brightness(95%) contrast(105%) saturate(110%);
    }
}




.oval_border{
  border-radius:50px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-top:80px;
}



/* #service-manpower {
    /* background-image: url(../img/manpower_banner.jpg); *
    background-image: url(../img/technical_manpower_2.jpg);
    background-size: 100%;
    background-position: center center;
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;

    /* animation: simpleCineZoom 22s ease-in-out infinite; *
} */




#service-manpower {
    background-image: url(../img/service_banner3.jpg);
    background-size: cover;               /* Responsive & distortion-free */
    background-position: center center;   /* Balanced focal point */
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;                        /* Desktop */
    overflow: hidden;
    position: relative;
    /* animation: simpleCineZoom 22s ease-in-out infinite; */
}

/* Large tablets / small laptops */
@media (max-width: 1200px) {
    #service-manpower {
        height: 600px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    #service-manpower {
        height: 500px;
    }
}

/* Small tablets & large phones */
@media (max-width: 768px) {
    #service-manpower {
        height: 400px;
        background-position: center top;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    #service-manpower {
        height: 300px;
        background-position: center top;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    #service-manpower {
        height: 250px;
    }
}









@keyframes simpleCineZoom {
    0% {
        background-size: 100%;
        background-position: center center;
        filter: brightness(95%) contrast(105%) saturate(110%);
    }

    40% {
        background-size: 108%;       /* Cinematic zoom-in */
        background-position: center 48%;  /* slight pan */
        filter: brightness(100%) contrast(110%) saturate(115%);
    }

    60% {
        background-size: 108%;       /* hold for realistic cinematic effect */
        background-position: center 48%;
        filter: brightness(100%) contrast(110%) saturate(115%);
    }

    100% {
        background-size: 100%;
        background-position: center center;
        filter: brightness(95%) contrast(105%) saturate(110%);
    }



    /* 0% {
        background-size: 110%;
        filter: brightness(95%) contrast(105%) saturate(110%);
    }

    50% {
        background-size: 118%;   /* Cinematic zoom-in *
        filter: brightness(100%) contrast(110%) saturate(115%);
    }

    100% {
        background-size: 110%;   /* Return smoothly *
        filter: brightness(95%) contrast(105%) saturate(110%);
    } */
}







/* #service-digital {
    background-image: url(../img/digital_performance_1.jpg);
    background-size: 100%;
    background-position: center center;
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;

    /* animation: smoothCine 22s ease-in-out infinite; *
} */



#service-digital {
    background-image: url(../img/service_banner4.jpg);
    background-size: cover;               /* Best for responsive banners */
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;                        /* Desktop */
    overflow: hidden;
    position: relative;
    /* animation: smoothCine 22s ease-in-out infinite; */
}

/* Large tablets / small laptops */
@media (max-width: 1200px) {
    #service-digital {
        height: 600px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    #service-digital {
        height: 500px;
    }
}

/* Small tablets & large phones */
@media (max-width: 768px) {
    #service-digital {
        height: 400px;
        background-position: center top;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    #service-digital {
        height: 300px;
        background-position: center top;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    #service-digital {
        height: 250px;
    }
}





@keyframes smoothCine {
    0% {
        background-size: 100%;
        background-position: center center;
        filter: brightness(95%) contrast(105%) saturate(110%);
    }

    40% {
        background-size: 108%;       /* Cinematic zoom-in */
        background-position: center 48%;  /* slight pan */
        filter: brightness(100%) contrast(110%) saturate(115%);
    }

    60% {
        background-size: 108%;       /* hold for smoothness */
        background-position: center 48%;
        filter: brightness(100%) contrast(110%) saturate(115%);
    }

    100% {
        background-size: 100%;
        background-position: center center;
        filter: brightness(95%) contrast(105%) saturate(110%);
    }
}


  /* #social-about {
    /* background-image: url(../img/plane-top2.jpg); */
    /* background-image: url(../img/top-img.avif); *
    background-image: url(../img/about_banner.jpg);
    /* background-position: bottom; *
    background-position: center;
    background-size: cover;
    padding: 0;
    width: 100%;
} */







.parallax {
  /* background-attachment: fixed; */
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
#social-about .overlay {
  /* background: url(../img/slide_bg.png) repeat scroll 0 0 transparent; */
  padding: 200px 0;
}


#social-contact {
    /* background-image: url(../img/plane-top2.jpg); */
    /* background-image: url(../img/top-img.avif); */
    background-image: url(../img/banner-cont.jpeg);
    background-position: right;
    background-size: cover;
    padding: 0;
    width: 100%;
}
.parallax {
  /* background-attachment: fixed; */
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
#social-contact .overlay {
  /* background: url(../img/slide_bg.png) repeat scroll 0 0 transparent; */
  padding: 200px 0;
}


.whatwe-ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}

.whatwesub-ul li {
  padding: 7px 0;
  display: flex;
  align-items: start;
}



.whatwe-ul i {
  padding-right: 2px;
  /* color: #61ebba; */
  color: #00339b;
  font-size: 18px;
  line-height: 1;
}

.whatwesub-ul i {
  padding-right: 2px;
  /* color: #61ebba; */
  color: #00339b;
  font-size: 18px;
  line-height: 1;
}


.whatwe-ul a {
  font-size: 16px;
  font-weight: 600;
  color: black;
}

.whatwesub-ul a {
  font-size: 16px;
  /*font-weight: 600;*/
  color: black;
}


.php-email-form {
  /* background: #fff;
  padding: 15px; */

  padding: 15px;
  height: 100%;
  border-radius: 15px;

}

.php-email-form .form-control {
  font-weight: 300;
  /* font-family: "Montserrat", sans-serif; */
  background-color: #fff;
  border-radius: 5px;
  font-size: 15px;
  padding: 12px 15px;
  width: 100%;
  margin: 0px 0px 10px 0px;
  color: #000000;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 4px;
  /* box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px; */
  /* box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px; */
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset; */
  position: relative;
  z-index: 2;

  border-radius: 15px;
}

.php-email-form .form-control:hover {
  /* background: white; */
}

.contact-h5 {
  font-size: 18px;
  font-weight: 600;
  color: black;
}

.careers .car-btn {
  background: #22bdd9;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.career-input input {
  font-size: 13px;
}

.career-input {
  overflow: hidden;
}

.php-email-form label {
  
  font-size: 15px;
  /* color: #656d78; */
  font-weight: 700;
  color: black;
  margin-bottom: 10px;

}

.banner-back {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.mySwiper-bnr .swiper-wrapper .swiper-slide {

  /* padding: 180px 0 0 0; */
  background: url("../img/bg_banner1.svg");
  background-position: center;
  background-size: cover;
  width: 100%;
  max-height: 100vh;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* #mainheading{
  animation: onscroll ;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-duration: .5s; 
  
  
}

@keyframes onscroll {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
} */

.row {
  margin: 0 auto;
}



.ftrs .ftrs-subtitle {
  color: #22bdd9;
  margin: 35px 0 10px 0;
  font-size: 25px;
  font-weight: 600;
}

.in-span {
  color: #ff6600;
  ;
}

.in-span1 {
  color: #ff6600;
  ;
}

.in-span2 {
  /* color: #feeba7; */
  /* color: #22bdd9; */


  color: #fff;
  /* font-size: 92px; */
  text-transform: uppercase;
  font-weight: 700;
  
  background: linear-gradient(to right, #095fab 10%, #22bdd9, 50%, #57d75b 60%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 1.5s linear infinite;

  /*font-size:32px;*/
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}


.in-span3 {
  color: #feeba7;
  /*font-size:46px;*/
}

.service-item .box1 img {
  min-width: 50px;
  max-width: 50px;
}

.row-cont img {
  width: 100%;
}

.services {
  /* background: linear-gradient(36deg, #719cbe 0%, #8bcdad 100%); */
  /* background:#ff8f00; */
  /* background:#1dd47d;
  clip-path: polygon(
  0 40px,
  15% 0,
  85% 0,
  100% 40px,
  100% 100%,
  0 100%
); */

}

.services .service-card {
  background: white;
  border-radius: 3px;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
  width: 100%;
  height: 100%;
  display: block;
  clip-path: polygon(0 0, 85% 0, 100% 40px, 100% 100%, 0 100%);
}

.services .service-card .service-icon {
  width: 56px;
  height: 56px;
  /* background: #2f82c3; */
  /* background:#1c91ec; */
  background:#1e3d59;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.services .service-card .service-icon i {
  font-size: 25px;
  color: white;
  display: flex;
}

.services .service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: black !important;
}

.services .service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
}

.services .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* color: #e66b1f; */
  /* color:#ff5b00; */
  /* color:#0fb76c; */
  /* color:#e07a5f; */
  color:#E86A4A;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  color: #fff;
  /* background:#2f82c3; */
  /* background:#1c91ec; */
  background:#1e3d59;
  /* background:#fcb900; */

  
}

.service-card:hover h4,
.service-card:hover p

{
  /* color: #ffc526 !important; */
  color: #fff !important;
}

.service-card:hover .service-icon{
   width: 56px;
  height: 56px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon i{
  color:#013973!important;

}

/* .services .service-card:hover h4,.services .service-card:hover p {
  color: #fff;
} */






.services .service-card .service-link i {
  transition: transform 0.3s ease;
}

.services .service-card:hover .service-link {
  color: #fff;
  transition: all 0.3s ease;
}

.services .service-card .service-link:hover i {
  transform: translateX(4px);
}

.services .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}


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

}



/* ===============================
   RESPONSIVE – SERVICE CARDS
   =============================== */

/* Large tablets & small laptops */
@media (max-width: 1200px) {
  .services .service-card {
    padding: 1.75rem;
    clip-path: polygon(0 0, 88% 0, 100% 32px, 100% 100%, 0 100%);
  }

  .services .service-card h4 {
    font-size: 1.2rem;
  }

  .services .service-card p {
    font-size: 0.92rem;
  }
}

/* Tablets (portrait & landscape) */
@media (max-width: 992px) {
  .services .service-card {
    padding: 1.5rem;
    clip-path: polygon(0 0, 90% 0, 100% 28px, 100% 100%, 0 100%);
  }

  .services .service-card .service-icon {
    width: 52px;
    height: 52px;
  }

  .services .service-card .service-icon i {
    font-size: 22px;
  }

  .services .service-card h4 {
    font-size: 1.15rem;
  }

  .services .service-card p {
    font-size: 0.9rem;
  }
}

/* Small tablets & large phones */
@media (max-width: 768px) {
  .services .service-card {
    padding: 1.4rem;
    transform: none;                 /* Remove lift on touch */
    clip-path: none;                 /* Cleaner mobile look */
    border-radius: 8px;
  }

  .services .service-card:hover {
    transform: none;
  }

  .services .service-card .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.2rem;
  }

  .services .service-card .service-icon i {
    font-size: 21px;
  }

  .services .service-card h4 {
    font-size: 1.1rem;
  }

  .services .service-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .services .service-card .service-link {
    font-size: 15px;
  }
}

/* Mobile devices */
@media (max-width: 576px) {
  .services .service-card {
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }

  .services .service-card .service-icon {
    width: 44px;
    height: 44px;
  }

  .services .service-card .service-icon i {
    font-size: 20px;
  }

  .services .service-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }

  .services .service-card p {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .services .service-card .service-link {
    font-size: 14.5px;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .services .service-card {
    padding: 1.1rem;
  }

  .services .service-card .service-icon {
    width: 40px;
    height: 40px;
  }

  .services .service-card .service-icon i {
    font-size: 18px;
  }

  .services .service-card h4 {
    font-size: 1rem;
  }

  .services .service-card p {
    font-size: 0.82rem;
  }
}






#what-services {

  /* background-image: url(../img/top-img.avif); */
  background-image: url(../img/serv-banner.jpg);
  background-position: right;
  background-size: cover;
  padding: 0;
  width: 100%;
}

.parallax {
  /* background-attachment: fixed; */
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

#what-services .overlay {
  /* background: url(../img/slide_bg.png) repeat scroll 0 0 transparent; */
  padding: 200px 0;
}

#industry-page {
  background-image: url(../img/project-banner.jpg);
  background-position: right;
  background-size: cover;
  padding: 0;
  width: 100%;
}

#industry-page .overlay {
  /* background: url(../img/slide_bg.png) repeat scroll 0 0 transparent; */
  padding: 200px 0;
}

#careers-page {
  background-image: url(../img/banner-quote.jpg);
  background-position: right;
  background-size: cover;
  padding: 0;
  width: 100%;
}

#careers-page .overlay {
  /* background: url(../img/slide_bg.png) repeat scroll 0 0 transparent; */
  padding: 200px 0;
}

.member-info p {
  font-weight: 600;
  font-size: 16px;
}

.products {
  /* background:#0a3757; */
  background: linear-gradient(175deg, #05375c 0%, #0a3757 100% 100%);
  /* background: white; */
  
  max-height: fit-content;
  min-height: 100vh;
}

/* FLEX PARENT */
.parent_products {
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* DEFAULT TILES */
.parent_products .parent_products_img {
  transition: flex 0.6s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  min-width: 25%;
}

/* FIRST IMAGE BIGGER INITIALLY (active class) */
.parent_products .parent_products_img.active {
  flex: 2 !important;
}

/* BEFORE HOVER — NORMAL */
.parent_products:not(:hover) .parent_products_img {
  flex: 1;
}

/* WHEN HOVERING THE WHOLE CONTAINER — RESET ALL */
.parent_products:hover .parent_products_img {
  flex: 1 !important;
}

/* ONLY HOVERED EXPANDS */
.parent_products:hover .parent_products_img:hover {
  flex: 2.8 !important;
  transform: scale(1.02);
}

/* REMOVE FIRST ITEM PRIORITY DURING HOVER */
.parent_products:hover .parent_products_img.active:not(:hover) {
  flex: 1 !important;
}

.parent_products .parent_products_img .parent_a_tag  {
 min-height: 300px;
}

/* IMAGE BG — FIX (YOU MISSED height earlier) */
.parent_products .parent_products_img .parent_a_tag .product_bg_image {
  background-blend-mode: overlay;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  height: 100%;
  width: 100%;
  min-height: 100%;
  /* FIX */
  display: block;
  /* FIX */
}

/* IMAGES */
.parent_products .parent_products_img .parent_a_tag .product_1 {
  /* background-image: url(https://sse-website.s3.ap-south-1.amazonaws.com/home-page/Category-home.jpg),linear-gradient(transparent, transparent); */

   background-image: url(../img/product_1.jpg),linear-gradient(transparent, transparent);
}

.parent_products .parent_products_img .parent_a_tag .product_2 {
 background-image: url(../img/product_2.jpg),linear-gradient(transparent, transparent);
}

.parent_products .parent_products_img .parent_a_tag .product_3 {
  background-image: url(../img/product_3.jpg),linear-gradient(transparent, transparent);
}

.parent_products .parent_products_img .parent_a_tag .product_4 {
 background-image: url(../img/product_4.jpg),linear-gradient(transparent, transparent);
  /* background-image: url(../img/product_demo.png),linear-gradient(transparent, transparent); */
}

.parent_products .parent_products_img .parent_a_tag .product_5 {
   background-image: url(../img/product_5.jpg),linear-gradient(transparent, transparent);
}

/* TEXT */
.parent_products .parent_products_img .parent_products_name h5{
    /* color: #000000; */
    color:#ffffff;
  text-align: center;
  font-size: 16px;
}


.mySwiper-demo {
  width: 100%;
  height: 100%;
  background: #000;

  background-position: center;
  background-size: cover;
  width: 100%;
  max-height: 100vh;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mySwiper-demo .swiper-slide {
  font-size: 18px;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*padding: 40px 60px;*/
  display: flex;
  justify-content: center;
}

.mySwiper-demo .parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: bottom;
  background-image: url(../img/banner.jpg);


}

.mySwiper-demo .parallax-bg::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.partner .member:hover .bi {
  border-color: #ff6600;
  color: #ff6600;
  transition: .3s;
}

.contact-adrs {
  display: flex;
  align-items: center;
  /* flex-direction: column; */
  /* justify-content: space-between; */
}


.get-quote {

  background: #161616;
  background-attachment: fixed;
  background-size: cover;
  height: 100%;
  padding: 0;
}

.get-quote .inner-qte {
  background: url(../images/dot.png);
  background-repeat: repeat;
  padding: 60px 20px;
}

.get-quote .center h2 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 20px;
  color: white;
}

.get-quote .qte-p {
  white-space: normal;
  width: 70%;
  /* margin: 0 auto; */
  color: white;
  font-size: 15px;
}

.get-quote .click-qte {
  background: #22bdd9;
  border: 0;
  padding: 10px 24px;
  color: white;
  transition: 0.4s;
  border-radius: 4px;
  font-weight: 600;
}

.get-quote .first {
  background: url(../img/plumbing.jpg);
  position: relative;
}

.get-quote .first::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 3px;
  background: #22bdd9;
}

.member-info .aligning {
  margin: 0;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 36px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}


.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 47px;
  right: 43px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-whatsapp-pulse:hover {
  color: white;
}



.secondmini_title {
  font-weight: 500;
  font-size: 16px;
  color: black;
  margin: 15px 0;
}



.swiper {
  width: 100%;
  height: 100%;
  min-height: 100vh;

}

.mySwiper-new .swiper-wrapper .swiper-slide {
  /* background-image: url(../img/banner.jpg); */

 
  width: 100%;
  background-size: cover;
  min-height: 100vh;
  background-position: center;
  padding: 95px 0 0 0;
  transition: transform 6s ease;


 /*
display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
*/


}

/* .mySwiper-new .swiper-slide  {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */


/*

.slide1 {
  background-image: url(../img/banner_first.jpg);
  /* background-size: contain; *
  position: relative;
}

.slide2 {
  background-image: url(../img/banner_second.jpg);
  position: relative;

}

.slide3 {
  background-image: url(../img/banner2.jpg);
  position: relative;
}


*/

.swiper-slide-active {
  /* filter: blur(0px); */
  transform: scale(1.15);

}


/* Carousel image */
.carousel-item {
  position: relative;
}

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

/* Caption – desktop */
.carousel-caption.banner-caption {
  position: absolute;
  top: 15%;              /* move content up */
  left: 12%;
  max-width: 520px;      /* tighter width */
  transform: none;       /* remove forced centering */
  text-align: left;
  color: #fff;
  z-index: 2;
}


/* Text sizing */
.carousel-caption h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.carousel-caption p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 480px;
}


/* Mobile responsive */
@media (max-width: 768px) {

  .carousel-item img {
    height: 65vh;
  }

  .carousel-caption.banner-caption {
    top: 15%;
    left: 5%;
    right: 5%;
    transform: translateY(-50%);
    max-width: 100%;
    /* text-align: center; */
  }

  .carousel-caption h1 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .carousel-caption p {
    font-size: 0.95rem;
  }
}











.zoom-wrapper {
  overflow: hidden;
}

.zoom-wrapper img {
  animation: zoomEffect 10s ease-in-out infinite;
  /* transform-origin: center center; */
  transform-origin: right center;
  will-change: transform;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

/* Apply zoom only on active slide */
.carousel-item:not(.active) img {
  animation: none;
}








.icon-wrap {
  display: inline-block;
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  cursor: pointer;
}

.draw-icon {
  width: 50px;
  height: 50px;

  fill: none;
  stroke: #0FB76C;
  stroke-width: 2.2;
  stroke-linejoin: round;
  stroke-linecap: round;

  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.2s ease;
}

/* When JS adds .drawn => animation starts */
.drawn {
  stroke-dashoffset: 0;
}



.fs-4{
  font-size:26px !important;
}






.banner-h1 {
  /* background: #f4f9fd; */
  padding: 5px 0 5px 10px;
  border-radius: 2px;
  opacity: 1;
  font-size: 38px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  line-height: 1.2;
}

.slide1::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  /* background-color: rgb(0, 0, 0, 0.4); */
}

.slide2::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgb(0, 0, 0, 0.4);
}

.about-p {
  font-size: 15px;
}

.home-title span {
  position: relative;
  overflow: hidden;
  display: block;
  line-height: 1.2;
}

.home-title span::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: white;
  animation: a-ltr-after 2s cubic-bezier(.77, 0, .18, 1) forwards;
  transform: translateX(-101%);
}

.home-title span::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  animation: a-ltr-before 2s cubic-bezier(.77, 0, .18, 1) forwards;
  transform: translateX(0);
}

.home-title span:nth-of-type(1)::before,
.home-title span:nth-of-type(1)::after {
  animation-delay: 1s;
}

.home-title span:nth-of-type(2)::before,
.home-title span:nth-of-type(2)::after {
  animation-delay: 1.5s;
}

@keyframes a-ltr-after {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(101%)
  }
}

@keyframes a-ltr-before {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(200%)
  }
}


.glowing {
  color: #fff;
  animation: glow 1s ease-in-out infinite alternate;
}


@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 2px #fff, 0 0 5px white, 0 0 1px white, 0 0 10px black, 0 0 1px black, 0 0 1px #000000, 0 0 1px black;
  }


  to {
    text-shadow: 0 0 2px #fff, 0 0 5px white, 0 0 1px white, 0 0 10px black, 0 0 1px black, 0 0 1px black, 0 0 1px black;
  }
}

.descrip {
  font-weight: 500;
  padding: 0 25px;
  max-width: 90%;
  text-align: center;
  font-size: 15px;
}

.recent-work-wrap {
  /* width: 280px; */

}

.recent-work-wrap img {
  width: 100%;
  padding: 7px;
  overflow: hidden;
}

.pro-box:hover .no-hover:hover {
  color: black;
}

.serv-responce {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 480px) {
  .serv-responce {
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  


.anhor_two {
    text-align: center;
  }


  .btn-whatsapp-pulse {
    position: fixed;
    bottom: 37px;
    right: 43px;
    font-size: 30px;
    padding: 25px;

  }

  .final_colm{
    justify-content: center;
  }


}


.text-shadowb{
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}


.text-shadowp{
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}



.mySwiper {
  width: 100%;
  height: 100%;

}

.swiper-slide {
  background-position: center;
  background-size: cover;
}

.swiper-slide img {
  display: block;
  width: 100%;
}


.world_map {
  /* background-image: url(../img/map.jpg); */
  /* width: 100vw; */
  /* overflow: hidden; */
  position: relative;
}

.world_map h2 {
  position: absolute;
  top: 10%;
  left: 30%;
  font-size: 5vmin;
}


.cont {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin: 80px auto 30px;
}

.select-btn {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-radius: 8px;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.select-btn .btn-text {
  font-size: 17px;
  font-weight: 400;
  color: #333;
}

.select-btn .arrow-dwn {
  display: flex;
  height: 21px;
  width: 21px;
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  background: rgb(91, 73, 255);
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.select-btn.open .arrow-dwn {
  transform: rotate(-180deg);
}

.list-items {
  position: relative;
  margin-top: 15px;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  max-height: 220px;
  overflow-y: scroll;
  overflow-x: hidden;
  display: none;
}

.select-btn.open~.list-items {
  display: block;
}

/* Always show the scrollbar of the dropdown */
.select-btn.open~.list-items::-webkit-scrollbar {
  width: 8px;
  height: 0;
}

.select-btn.open~.list-items::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .2);
  border-radius: 8px;
}

.select-btn.open~.list-items::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, .3);
}

.list-items .item {
  display: flex;
  align-items: center;
  list-style: none;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 15px;
  border-radius: 8px;
}

.list-items .item:hover {
  background-color: #e7edfe;
}

.item .item-text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

.item .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  border-radius: 4px;
  margin-right: 12px;
  border: 1.5px solid #c0c0c0;
  transition: all 0.3s ease-in-out;
}

.item.checked .checkbox {
  background-color: rgb(91, 73, 255);
  border-color: rgb(91, 73, 255);
}

.checkbox .check-icon {
  color: #fff;
  font-size: 11px;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}

.item.checked .check-icon {
  transform: scale(1);
}




/* finaal drop */
.sec-center {
  position: relative;
  max-width: 100%;
  text-align: center;
  z-index: 200;
  display: inline-block;
}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.dark-light:checked+label,
.dark-light:not(:checked)+label {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 20000;
  display: block;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  transition: all 200ms linear;
  box-shadow: 0 0 25px rgba(255, 235, 167, .45);
}

.dark-light:checked+label {
  transform: rotate(360deg);
}

.dark-light:checked+label:after,
.dark-light:not(:checked)+label:after {
  position: absolute;
  content: '';
  top: 1px;
  left: 1px;
  overflow: hidden;
  z-index: 2;
  display: block;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-color: #102770;
  background-image: url('https://assets.codepen.io/1462889/moon.svg');
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 200ms linear;
  opacity: 0;
}

.dark-light:checked+label:after {
  opacity: 1;
}

.dark-light:checked+label:before,
.dark-light:not(:checked)+label:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  display: block;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  background-color: #48dbfb;
  background-image: url('https://assets.codepen.io/1462889/sun.svg');
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 200ms linear;
}

.dark-light:checked+label:before {
  background-color: #000;
}

.light-back {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
  overflow: hidden;
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
  background-position: center;
  background-repeat: repeat;
  background-size: 4%;
  height: 100%;
  width: 100%;
  transition: all 200ms linear;
  opacity: 0;
}

.dark-light:checked~.light-back {
  opacity: 1;
}

.dropdown:checked+label,
.dropdown:not(:checked)+label {
  position: relative;
  
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  height: 50px;
  transition: all 200ms linear;
  border-radius: 4px;
  width: 220px;
  letter-spacing: 1px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: flex-start;
  -ms-flex-pack: center;
  text-align: center;
  border: none;
  cursor: pointer;
  color: #102770;
}

.dark-light:checked~.sec-center .for-dropdown {
  background-color: #102770;
  color: #ffeba7;
  box-shadow: 0 12px 35px 0 rgba(16, 39, 112, .25);
}

.dropdown:checked+label:before,
.dropdown:not(:checked)+label:before {
  position: fixed;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
  cursor: auto;
  pointer-events: none;
}

.dropdown:checked+label:before {
  pointer-events: auto;
}

.dropdown:not(:checked)+label .uil {
  font-size: 24px;
  margin-left: 10px;
  transition: transform 200ms linear;
}

.dropdown:checked+label .uil {
  transform: rotate(180deg);
  font-size: 24px;
  margin-left: 10px;
  transition: transform 200ms linear;
}

.section-dropdown {
  position: absolute;
  padding: 5px;
  background-color: #111;
  top: 70px;
  left: -7%;
  width: 100%;
  border-radius: 4px;
  display: block;
  box-shadow: 0 14px 35px 0 rgba(9, 9, 12, 0.4);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 200ms linear;
}

.dark-light:checked~.sec-center .section-dropdown {
  background-color: #fff;
  box-shadow: 0 14px 35px 0 rgba(9, 9, 12, 0.15);
}

.dropdown:checked~.section-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.section-dropdown:before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  content: '';
  display: block;
  z-index: 1;
}

.section-dropdown:after {
  position: absolute;
  top: -7px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #111;
  content: '';
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.dark-light:checked~.sec-center .section-dropdown:after {
  border-bottom: 8px solid #fff;
}

.sec-center a {
  position: relative;
  color: #fff;
  transition: all 200ms linear;
  
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  margin: 2px 0;
  text-align: left;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  -ms-flex-pack: distribute;
}

.dark-light:checked~.sec-center .section-dropdown a {
  color: #102770;
}

.dark-light:checked~.sec-center .section-dropdown a:hover {
  color: #ffeba7;
  background-color: #102770;
}

a .uil {
  font-size: 22px;
}

.dropdown-sub:checked+label,
.dropdown-sub:not(:checked)+label {
  position: relative;
  color: #fff;
  transition: all 200ms linear;
  
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  text-align: left;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  -ms-flex-pack: distribute;
  cursor: pointer;
}

.dropdown-sub:checked+label .uil,
.dropdown-sub:not(:checked)+label .uil {
  font-size: 22px;
}

.dropdown-sub:not(:checked)+label .uil {
  transition: transform 200ms linear;
}

.dropdown-sub:checked+label .uil {
  transform: rotate(135deg);
  transition: transform 200ms linear;
}

.dropdown-sub:checked+label:hover,
.dropdown-sub:not(:checked)+label:hover {
  color: #102770;
  background-color: #ffeba7;
}

.dark-light:checked~.sec-center .section-dropdown .for-dropdown-sub {
  color: #102770;
}

.dark-light:checked~.sec-center .section-dropdown .for-dropdown-sub:hover {
  color: #ffeba7;
  background-color: #102770;
}

.section-dropdown-sub {
  position: relative;
  display: block;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  max-height: 0;
  padding-left: 10px;
  padding-right: 3px;
  overflow: hidden;
  transition: all 200ms linear;
}

.dropdown-sub:checked~.section-dropdown-sub {
  pointer-events: auto;
  opacity: 1;
  max-height: 999px;
}

.section-dropdown-sub a {
  font-size: 14px;
}

.section-dropdown-sub a .uil {
  font-size: 20px;
}


@media screen and (max-width: 991px) {

  .dark-light:checked+label,
  .dark-light:not(:checked)+label {
    top: 20px;
    right: 20px;
  }
}





/* footer Wave */






/* footer wave end */














/* second footer */


/* ===========================
   Footer Main Styling
   =========================== */
#second_footer {
  padding: 0;
  color: #fff;
  font-size: 14px;
  position: relative; /* For waves overlay */
}

/* Footer Top Section */
#second_footer .footer-top {
  padding: 60px 0 30px 0;
  /* background: #001f3f;  */
  /* background:#0b1c26; */
  /* background:#1e3748; */
  background:#030f26;
}

/* Footer Info Boxes */
#second_footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #010246;
  color: #fff;
  border-top: 4px solid #ff6600;
  text-align: center;
  padding: 30px 20px;
}

#second_footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0;
  line-height: 1;
  font-weight: 700;
}

#second_footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Social Links */
#second_footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#second_footer .footer-top .social-links a:hover {
  background: #ff6600;
  text-decoration: none;
}

/* Footer Titles */
#second_footer .footer-top h4 {
  color: black;
  transition: 0.3s;
  display: inline-block;
  line-height: 2.4;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
}

#second_footer .footer-top .final_h4 {
  text-transform: capitalize;
  font-size: 27px;
  text-align: left;
}

/* Footer Links Columns */
#second_footer .footer-top .footer-links {
  margin-bottom: 30px;
  padding-left: 20px;
}

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

#second_footer .footer-top .footer-links ul li {
  padding: 2px 0;
  display: flex;
  font-weight: bold;
  align-items: center;
}

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

#second_footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  font-size: 16px;
}

#second_footer .footer-top .footer-links ul a:hover {
  color:#fcd2c5;
  transition: 0.3s;
}

#second_footer .footer-top .footer-links ul a i {
  font-size: 24px;
  color: white;
  padding: 10px;
  transition: .2s;
}

#second_footer .footer-top .footer-links ul a i:hover {
  transform: scale(1.1);
  transition: .2s;
}

/* Second Column Paragraphs */
#second_footer .second_col p {
  font-size: 16px;
  line-height: 1.7;
  color: black;
  font-weight: 600;
}

/* List spacing */
#second_footer .final_colm .first-ul {
  /* margin-right: 30px; */
}

.final_colm {
  justify-content: flex-start;
}

/* Social Items */
#second_footer .social-list {
  list-style: none;
  flex-wrap: wrap;
}

#second_footer .soc-item {
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  margin-right: 0.5rem;
}

#second_footer .soc-item .bi {
  color: #fff;
  font-size: 16px;
}

#second_footer .soc-item a .bi-facebook {
  color: #1877f2;
}

#second_footer .soc-item a .bi-youtube {
  color: #ff0000;
}

#second_footer .soc-item a .bi-instagram {
  color: #C13584;
}

#second_footer .soc-item a .bi-linkedin {
  color: #0077b5;
}

#second_footer .soc-item a .bi {
  font-size: 22px;
  transition: .2s;
}

/* Instagram Gradient */
.instagram-gradient {
  background: radial-gradient(circle at 30% 107%, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 21px;
}

/* Footer Newsletter */
#second_footer .footer-newsletter {
  text-align: right;
}

#second_footer .footer-newsletter img {
  margin: 0 0 20px 0;
}

#second_footer .footer-newsletter .cmx-img {
  width: 135px;
}

#second_footer .footer-newsletter h4 {
  font-size: 18px;
  font-weight: 500;
}

/* Footer Copyright */
#second_footer .copyright {
  border-top: 1px solid #010479;
  text-align: center;
  padding-top: 30px;
}

#second_footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/* Whatsapp hover effect */
.whatsapp:hover .bi {
  color: white;
}


/* .whatsapp-footer

 {
    position: fixed;
    right: 5px;
    bottom: 5px;
    width: 70px;
    z-index: 9990;
} */



.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

/* Hover effect (desktop only) */
@media (hover: hover) {
    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    }
}

/* Tablets */
@media (min-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

/* Desktop / Large screens */
@media (min-width: 1200px) {
    .whatsapp-float {
        width: 70px;
        height: 70px;
        right: 24px;
        bottom: 24px;
    }

    .whatsapp-float img {
        width: 34px;
        height: 34px;
    }
}

/* iOS safe-area support (important for iPhone) */
@supports (bottom: env(safe-area-inset-bottom)) {
    .whatsapp-float {
        bottom: calc(16px + env(safe-area-inset-bottom));
        right: calc(16px + env(safe-area-inset-right));
    }
}







/* ===========================
   Footer Waves Overlay
   =========================== */

/* Waves container */
/* Wrapper for waves on TOP of footer */
.waves {
  position: absolute;
  top: -120px;          /* pull waves UP so they sit above footer */
  left: 0;
  width: 100%;
  height: 120px;       /* fixed height for top wave band */
  overflow: hidden;
  z-index: 99;         /* above footer background */
  pointer-events: none;
}

/* Individual wave layers */
.wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 120px;
  background-repeat: repeat-x;
}

/* Blue wave layers */

.call_p{
  padding-left:20px;
}


#wave1 {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 120px;

    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%230a3757' d='M0 60 C 180 100 360 100 540 60 C 720 20 900 20 1080 60 C 1260 100 1440 100 1440 60 L1440 120 L0 120 Z'/%3E%3C/svg%3E"); */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23030f26' d='M0 80 C 240 60 480 60 720 80 C 960 100 1200 100 1440 80 L1440 120 L0 120 Z'/%3E%3C/svg%3E");

    background-repeat: repeat-x;
    background-size: 1440px 120px;
    background-position: 0 0;

    animation: waveMove 5s linear infinite;
    z-index: 1;
}

@keyframes waveMove {
    from {
        background-position-x: 0;
    }
    to {
        background-position-x: -1440px;
    }
}







#wave2 {
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%231e3d59' fill-opacity='0.6' d='M0 85 C 360 50 1080 150 1440 85 L1440 150 L0 150 Z'/%3E%3C/svg%3E"); */
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%23122b3a' fill-opacity='0.85' d='M0 95 C 360 60 1080 150 1440 95 L1440 150 L0 150 Z'/%3E%3C/svg%3E"); */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%23122b3a' fill-opacity='0.75' d='M0 90 C 360 120 1080 60 1440 90 L1440 150 L0 150 Z'/%3E%3C/svg%3E");

  /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 150"><path fill="%230b63bd" fill-opacity="0.4" d="M0 77 C 360 50 1080 150 1440 77 L1440 150 L0 150 Z"/></svg>'); */
  animation: waveAnim 15s linear infinite;
  z-index: 2;
}

#wave3 {
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%231e3d59' fill-opacity='0.65' d='M0 110 C 360 140 1080 30 1440 110 L1440 150 L0 150 Z'/%3E%3C/svg%3E"); */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%230b1c26' fill-opacity='1' d='M0 110 C 360 140 1080 90 1440 110 L1440 150 L0 150 Z'/%3E%3C/svg%3E");

  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%232f6f8f' fill-opacity='0.45' d='M0 95 C 360 130 1080 30 1440 95 L1440 150 L0 150 Z'/%3E%3C/svg%3E"); */

  /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 150"><path fill="%230862f7" fill-opacity="0.3" d="M0 87 C 360 130 1080 20 1440 87 L1440 150 L0 150 Z"/></svg>'); */
  animation: waveAnim 20s linear infinite;
  z-index: 3;
}

#wave4 {
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%235bbcd6' fill-opacity='0.25' d='M0 110 C 360 70 1080 140 1440 110 L1440 150 L0 150 Z'/%3E%3C/svg%3E"); */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%232f6f8f' fill-opacity='0.35' d='M0 125 C 360 80 1080 150 1440 125 L1440 150 L0 150 Z'/%3E%3C/svg%3E");

  /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 150"><path fill="%23004aad" fill-opacity="0.2" d="M0 97 C 360 70 1080 140 1440 97 L1440 150 L0 150 Z"/></svg>'); */
  animation: waveAnim 25s linear infinite;
  z-index: 4;
}

/* Wave scrolling animation */
@keyframes waveAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Footer content sits above the footer background */
#second_footer {
  position: relative;
  /* background: navy; */
  background:#0b67d5;
  /* padding-top: 140px;     */
  color: #fff;
}

#second_footer .container {
  position: relative;
  z-index: 10;
}












/* select option */

.select-box {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #60666d;
  z-index: 1;
  width: 20%;
}

.select-box__current {
  position: relative;
  cursor: pointer;
  outline: none;
  width: 100%;
}

.select-box__current:focus+.select-box__list {
  opacity: 1;
  -webkit-animation-name: none;
  animation-name: none;
}

.select-box__current:focus+.select-box__list .select-box__option {
  cursor: pointer;
}

.select-box__current:focus .select-box__icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.select-box__icon {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  opacity: 1;
  color: #0FB76C;
  transition: 0.2s ease;
  font-size: 25px;
}

.select-box__value {
  display: flex;
  justify-content: flex-start;
  align-items: center;

}

.select-box__input {
  display: none;
}

.select-box__input:checked+.select-box__input-text {
  display: block;
  width: auto;
  margin: 0;
  padding: 15px;
  background-color: transparent;
  font-weight: 700;
  font-size: 22px;
  color: white;
  padding-left: 25px;
}

.select-box__input-text {
  display: none;
  width: auto;
  margin: 0;
  padding: 15px;
  background-color: transparent;
  position: relative;
}


.select-box__input-text::after {
  background: black;
  border-radius: 5px;
  position: absolute;
  content: '';
  width: 50%;
  margin: 0 auto;
  height: 3px;
  left: 31%;
  top: 78%;

}

.select-box__list {
  position: absolute;
  width: 100%;
  padding: 0;
  list-style: none;
  opacity: 0;
  -webkit-animation-name: HideList;
  animation-name: HideList;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: step-start;
  animation-timing-function: step-start;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.select-box__option {
  display: block;
  padding: 15px;
  background-color: #fff;
}

.select-box__option:hover,
.select-box__option:focus {
  color: #546c84;
  background-color: #fbfbfb;
}

@-webkit-keyframes HideList {
  from {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

@keyframes HideList {
  from {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

.mySwiper-new p {
  color: black;
  padding: 10px;
  font-size: 19px;
}

.feature_slide .head_p {
  font-size: 17px;
}

@media only screen and (max-width: 1138px) {
  .slide1 {
    background-image: url(../img/banner1_media.jpg);
    position: relative;
  }

  .slide2 {
    background-image: url(../img/banner2_media.jpg);
    position: relative;
  }

  .mySwiper-new .swiper-wrapper .swiper-slide {
    /* background-image: url(../img/banner.jpg); */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    min-height: 100vh;
    background-position: top;
    padding: 95px 0 0 0;
  }

  .world_map h2 {
    position: absolute;
    top: 10%;
    left: 40%;
    font-size: 5vmin;
  }

}

@media only screen and (max-width: 991px) {
  .slide1 {
    background-image: url(../img/banner1_media.jpg);
    /* background-size: contain; */
    position: relative;
  }

  .mySwiper-new p {
    color: black;
    padding: 10px;
    font-size: 23px;
    font-weight: 500;
  }

  .ftrs .ftrs_fcolmn {
    /* overflow: hidden; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature_slide .head_p {
    font-size: 23px;
  }

  .ftrs-content p {
    color: black;
    font-weight: 400;
    font-size: 23px;
    margin: 15px 0;
  }

  .parent_products .parent_products_img {

    min-width: 100%;

  }


}

@media only screen and (min-width: 768px) {
  .world_map h2 {
    position: absolute;
    top: 10%;
    left: 35%;
    font-size: 5vmin;
  }

}

@media (min-width: 769px) and (max-width: 2000px) {
  .world_map h2 {
    position: absolute;
    top: 10%;
    left: 40%;
    font-size: 5vmin;
  }
}

@media only screen and (max-width: 768px) {
  .final_colm{
    /* justify-content: center; */
    justify-content: start;
  }
}



/* Scope styles only to this section */
.dream .footer-links {
  /* display: inline-flex; */
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}

/* Anchor styling */
.dream .footer-links a {
  color: #fff;
  text-decoration: none;
 
  transition: color 0.3s ease;
}

/* Hover effect */
.dream .footer-links a:hover {
  color: #fcd2c5;
}

/* Optional: second link tweak */
.dream .footer-links .anchor-two {
  padding-left: 0; /* gap already handles spacing */
}
@media (max-width: 768px) {
  .dream .footer-links {
    /* display:flex; */
    /* justify-content: space-between; */
    font-size:12px;
  }
}
