@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Sinhala:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Tamil:wght@100..900&display=swap');
:root {
    --primary: #0a1d3c;
    --secondary: #f0ab00;
}

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

body {
    font-family: "Oswald", Open Sans, Arial, Helvetica, sans-serif !important;
}

p {
    font-family: 'Oswald', Noto Sans Sinhala, Arial, Helvetica, sans-serif !important;
}

.nav-link {
    color: var(--primary) !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: var(--primary) !important;
}

section {
 
    text-align: center;
    width: 100%;
    
}


 /* Base styles */
  .device-div { 
    text-align: center;
    width: 100%;
    height: 100vh;
    display: none; /* Hide all by default */
  }

  /* Mobile styles */
  @media (max-width: 767px) {
    .mobile-div {
      display: block;
    }
  }

  /* Tablet styles */
  @media (min-width: 768px) and (max-width: 1023px) {
    .tablet-div {
      display: block;
    }
	
	.serviceCard{
		  height: auto !important;
	}
  }

  /* Desktop styles */
  @media (min-width: 1024px) {
    .desktop-div {
      display: block;
    }
  }


.sub {
    position: relative;
}

.specials {
    height: 100%;
    font-size: 20px;
    text-align: justify;
}

.box {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.box:last-child {
    bottom: 0;
}

.box:last-child.cur {
    top: auto;
}

.cur {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.center {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.cur .center {
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(0);
}

#dots {
    display: none;
    position: fixed;
    right: 20px;
    top: 50%;
    z-index: 11;
    padding: 10px;
}

#dots span {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 50%;
}

#dots span.active {
    background: var(--secondary);
}

#changeSubButton {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 1000;
    color: blue;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h2-placeholder {
    font-family: 'Oswald', 'Open Sans', Arial, Helvetica, sans-serif !important;
    font-weight: 600 !important;
}

a {
    text-decoration: none !important;
}

p {
    line-height: 1.65;
    font-size: 16px;
    font-family: 'Oswald', 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 400;
    margin-bottom: 1em;
}

.sidebar {
    position: fixed;
    width: 250px;
    height: 100%;
    right: -250px;
    background: var(--primary);
    ;
    transition: left 0.4s ease;
    z-index: 2000;
}

.modal-backdrop {
    z-index: 1 !important;
}

#logo {
    /* background-color: var(--primary);*/
    border-radius: 0px 0px 0px 0px;
    /*box-shadow: 0 0 10px #fdfdfd;*/
    width: 70%;
}

.logo {
    font-size: 25px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.sidebar a {
    color: #fff;
    text-decoration: none;
}

.sidebar a:hover {
    color: var(--secondary);
}

.menu-content ul {
    padding-left: 0 !important;
}

.menu-item {
    height: 100%;
    width: 100%;
    list-style: none;
    transition: all 0.4s ease;
}


.submenu-active .menu-item {
    transform: translateX(-56%);
}

.menu-title {
    color: var(--secondary);
    font-size: 18px;
    padding: 16px;
    font-weight: 700;
}

.menu-content {
    position: relative;
    height: 100%;
    width: 100%;
    margin-top: 0px;
     overflow:hidden;
    
}

.item a,
.submenu-item {
    padding: 10px 15px;
    display: inline-block;
    width: 100%;
    font-size: 18px;
    border-bottom: 2px solid #ffffff1f;
}

.item i {
    font-size: 12px;
}

.item h4 {
    font-size: 18px;
}

.item a:hover,
.submenu .menu-title:hover,
.submenu-item:hover {
    background: #0000006b;
}

.submenu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    cursor: pointer;
}

.submenu {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: calc(-100% - 26px);
    background: var(--primary);
    display: none;
}

.show-submenu~.submenu {
    display: block;
    overflow-y: scroll;
}

.submenu .menu-title {
    border-radius: 12px;
    cursor: pointer;
}

.submenu .menu-title i {
    margin-right: 10px;
    color: var(--secondary);
    font-size: 18px;
}

.navbar,
.main {
    width: 100%;
    transition: ease 0.51s;
    z-index: 1000;
}

/*.sidebar.open ~ .navbar,
.sidebar.open ~ .main{
    left: 0;
    width: calc(100% - 260px);
}
*/

.sidebar.open {
    right: 0px;
    transition: ease 0.51s;
}

.sidebar {
    transition-timing-function: linear;
    transition: ease 0.51s;
}

#sidebar-close {
    font-size: 24px;
    color: #0b2d48;
    float: right;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    background: #fff;
    width: 2.4rem;
    height: 2.4rem;
    margin: 10px;
}

#sidebar-close:hover {
    border: 2px solid var(--secondary);
    color: #fff;
    background: #0b2d48;
    transition: all .25s;
}

.nav-toggle-close {
    height: 60px;
}

.page-nav .navbar {
    background: var(--primary);
}

.navbar {
    position: fixed !important;
    color: #fff;
    /* padding: 0px 20px !important;*/
    font-size: 25px;
    background: #fbfbfb00;
    cursor: pointer;
    /*border-bottom: 1px solid #fff;*/
    justify-content: center !important;
    background-color: #0a1d3c54;
    border-bottom: #ffffff6e 1px solid;
}

.babel {
    /*width: 30vw;
display: flex !important;*/
}

.babel ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.babel li {
    list-style-type: none;
    display: inline;
    color: #fff;
}

.babel img {
    width: 50px;
}

.hidden {
    top: -100px;
    /* Adjust as needed */
}

.navbar i {
    float: inline-end;
}

/* Targeting .nav-img img and .nav-toggle when .fleet-active class is added to navbar */

.past-news {
    background-color: var(--primary);
    height: 75px;
}

.nav-social {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.nav-social i {
    font-size: 28px;
    color: #fff;
    padding: 10px;
}

.nav-social i:hover {
    color: var(--secondary);
}

.search {
    width: 100%;
    padding: 10px;
}

.search .search-input {
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease;
    border: none;
}

.search .active {
    width: 100%;
    padding: 10px;
    text-align: center;
}

.nav-social .search-input.active {
    width: 200px;
    /* Adjust width as needed */
    border: 1px solid var(--primary);
    height: 40px;
}

.nav-social .search-input::placeholder {
    color: #000;
    opacity: 1;
    padding: 2px;
    font-size: 18px;
}

.nav-img {
    position: relative;
    /*width: 20vw;
display: flex;
 justify-content: center;
  height: 50px;*/
}

.nav-img a {
    text-align: center !important;
}

.nav-toggle {
    width: 5vw;
}

.slider-logo-left {
    position: absolute;
    z-index: 2;
    top: 110px;
    left: 0;
    max-width: 100%;
    padding: 10px;
    display: flex;
}

.slider-logo-left img {
    width: 150px;
}

.slider-logo-right {
    position: absolute;
    z-index: 2;
    top: 110px;
    left: 80%;
    max-width: 100%;
    padding: 10px;
    display: flex;
}

.main {
    position: relative;
    /* display: flex;*/
    align-items: center;
    justify-content: center;
    /*height: 100vh;*/
    z-index: 100;
    background: #fff;
}

/* .scroll-container,
.scroll-area {
  max-width: 100%;
  height: 100vh;
  font-size: 60px;
  width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

 section {
    font-size: 50px;
    text-align: center;
    width: 100%;
    /*height: 100vh;*/

}

.sub {
    position: relative;
}

.box {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.box:last-child {
    bottom: 0;
}

.box:last-child.cur {
    top: auto;
}

.cur {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.center {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.cur .center {
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(0);
}

#dots {
    display: none;
    position: fixed;
    right: 20px;
    top: 50%;
    z-index: 11;
}

#dots span {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 50%;
}

.scroll-container {
    overflow: auto;
    -webkit-scroll-snap-type: y mandatory;
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}

.scroll-area {
    scroll-snap-align: start;
}

.scroll-container,
.scroll-area {
    margin: 0 auto;
}

.scroll-area {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.scroll-area:nth-of-type(1) {
    background: #49b293;
}

.scroll-area:nth-of-type(2) {
    background-image: url("../images/cofn.webp");
}

.scroll-area:nth-of-type(3) {
    background-image: url("../images/fallen.webp");
}

.scroll-area:nth-of-type(4) {
    background: #8360A6;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

*/
/* Hide scrollbar for IE, Edge and Firefox */

.scroll-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.tab-content>.tab-pane {
    min-height: 600px;
}

/*.container{
min-height: 400px;
}*/

.video {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/fleet-bg.webp);
    background-size: cover;
}

.video video {
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100vh;
}

.cofn {
    position: absolute;
    /* top: 100px;*/
    padding: 10px;
}



.cofn h1 {
    font-size: 4vw;
    text-transform: uppercase;
    line-height: 1.2 !important;
    color: #0b2d48;
    font-weight: 800 !important;
    text-shadow: 1px 1px 10px #fff;
}

.cofn h3 {
    font-size: 2rem;
    color: var(--secondary);
    text-transform: uppercase;
    line-height: 1.2;
    padding-bottom: 25px;
    font-weight: 600 !important;
    text-shadow: 1px 1px 5px black;
}

.cofn .cofn-logo {
    width: 10%;
}

.cofn .cofn-link img {
    transition: opacity 0.3s ease-in-out;
    /*width: 20%;*/
}

.cofn .cofn-link img:hover {
    filter: grayscale(100%);
}

.fallen {
    position: absolute;
    /*top: -40vh;*/
    width: 70%;
    right: 0vh;
    padding: 10px;
}

.fallen-img {
    position: absolute;
    left: 0;
    top: 400px;
    text-align: left;
    z-index: -1;
}

.main-section {
    height: 400px;
}

.seaops {
    position: relative;
    /* top: 100px;
  width: 70%;*/
    right: 0;
    padding: 10px;
    padding-top: 100px !important;
}

.seaops .seaops-link img {
    transition: opacity 0.3s ease-in-out;
    /* width: 15%;*/
}

.seaops .seaops-link img:hover {
    filter: grayscale(100%);
}

.fallen h1 {
    font-size: 4vw;
    text-transform: uppercase;
    line-height: 1.2 !important;
    color: #0b2d48;
    font-weight: 800 !important;
    /*text-shadow: 1px 1px 10px #000;*/
}

.fallen p {
    font-size: 2rem;
    color: #f9f8f8;
    /* text-transform: uppercase; */
    line-height: 1.2;
    padding-bottom: 25px;
    font-weight: 600 !important;
    /*text-shadow: 2px 3px 3px black;*/
}

.fallen .fallen-link img {
    transition: opacity 0.3s ease-in-out;
    /* width: 20%;*/
}

.fallen .fallen-link img:hover {
    filter: grayscale(100%);
}

 section .animate {
    transition: 1s;
}



.sec-2 .animate {
    transform: translateX(-100%);
}

.sec-2.show-animate .animate {
    transform: translateX(0);
}

.sec-2.hide-animate .animate {
    transform: translateX(-100%);
}

.sec-1 {
    background: url('../images/cofn.webp') !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100vh;
    background-size: cover !important;
}

.sec-1-1 {
    background: url('../images/cofnnew.webp') !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100vh;
    background-size: cover !important;
}

.sec-2 {
    background: url('../images/fallen01.webp') !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100vh;
    background-size: cover !important;
}

.sec-2-1 {
    background: url('../images/fallenbg01.webp') !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100vh;
    background-size: cover !important;
}

.sec-3 {
    background: url('../images/seaops03boat.webp') !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100vh;
    background-size: cover !important;
}

.sec-3-1 {
    background: url('../images/seaops01-min.webp') !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100vh;
    background-size: cover !important;
}
.sec-3-2 {
    background: url('../images/hydro03.jpg') !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100vh;
    background-size: cover !important;
}


.fallen-img-an {
    opacity: 0;
    transform: translateX(1000px);
    animation: fadeInRight 1s ease-out forwards;
    z-index: -1;
}

.seaops-img {
    opacity: 0;
    transform: translateX(1000px);
    animation: fadeInRight 1s ease-out forwards;
    z-index: -1;
}

.seaops h1 {
    font-size: 4vw;
    text-transform: uppercase;
    line-height: 1.2 !important;
    color: #fff;
    font-weight: 800 !important;
}

.hydro h1 {
    font-size: 4vw;
    text-transform: uppercase;
    line-height: 1.2 !important;
    color: #fff;
    font-weight: 800 !important;
}

.seaops p {
    color: #fff;
    line-height: 1.5;
    padding-bottom: 25px;
    font-weight: 500 !important;
}

.seaops .btn,
.cofn .btn,
.fallen .btn,
    {
    display: inline-block;
    border: 1px solid #fff;
    background-color: #fff0;
    color: #fff;
    font-family: 'Oswald', 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 2vw;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-appearance: none;
    transition: all 0.3s ease-in-out;
    text-align: center;
    border-radius: 0px;
}

.fleet .btn {
    display: inline-block;
    background-color: #fff0;
    color: #fff;
    font-family: 'Oswald', 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 2vw;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-appearance: none;
    transition: all 0.3s ease-in-out;
    text-align: center;
    border: none;
}

.fleet-link {
    position: relative;
    display: inline-block;
    height: 70px;
    border: 0px solid white;
}

.fleet-link img:hover {
    filter: grayscale(100%);
}

.fleet-link img {
    transition: opacity 0.3s ease-in-out;
    /*width: 15%;*/
}

.news-sec .btn {
    display: inline-block;
    border: 1px solid var(--primary);
    background-color: #fff0;
    color: var(--primary);
    font-family: 'Oswald', 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 2vw;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-appearance: none;
    transition: all 0.3s ease-in-out;
    text-align: center;
    border-radius: 0px;
}

.news-link {
    position: relative;
    z-index: 10;
}

.news-link img {
    transition: opacity 0.3s ease-in-out;
}

.news-link img:hover {
    filter: grayscale(100%);
}

.seaops .btn:hover {
    color: #f5aa03;
    background: var(--primary);
}

.section-title {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 2rem;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--secondary);
    border: 10px solid var(--primary);
    border-radius: 28px;
}

.sec-4 {
    background-repeat: no-repeat !important;
    /*width: 100%;*/
    height: unset !important;
    background-size: cover !important;
}

.fleet {
    background-image: url('../images/fleetnew.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    height: 100vh;
}

#breadcrumb {
    display: flex;
    padding: 0;
    margin: 0;
}

.breadcrumbs {
    background-color: #0000001a;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 2px 0;
    margin-bottom: -2.5rem;
    list-style: none;
}

.breadcrumb ul li {
    display: inline;
    font-size: 14px;
    font-weight: 501;
}

.breadcrumb li::after {
    content: "\00BB";
    padding: 0px 5px;
}

.breadcrumb ul li a {
    color: #000 !important;
}

/* Define animation for fleet content */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Define animation for fleet image */

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animation to fleet content */

.fleet-content {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease-out forwards;
}

/* Apply animation to fleet image */

.fleet-image {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease-out forwards;
}

.fleet .product-item {
    width: 200px;
    height: 200px;
}

.fleet .owl-stage-outer {
    padding: 10px;
}

.fleet .owl-prev span,
.fleet .owl-next span {
    color: var(--secondary);
}

.fleet .product-item:hover {
    -webkit-box-shadow: 0px 0px 11px 0px rgba(255 255 255 / 95%);
    -moz-box-shadow: 0px 0px 11px 0px rgba(255 255 255 / 95%);
    box-shadow: 0px 0px 11px 0px rgba(255 255 255 / 95%);
}

.fleet h1 {
    font-size: 4vw;
    text-transform: uppercase;
    line-height: 1.2 !important;
    color: #fff;
    font-weight: 800 !important;
}

.fleet p {
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 2;
    padding-bottom: 25px;
    font-weight: 600 !important;
}

.fleet .owl-prev span,
.fleet .owl-next span {
    color: #fff;
}

.sec-5 {
    background-color: #fff;
    position: relative;
     height: 100vh;
}

.sec-5 .waves {
    position: absolute;
    width: 100%;
    height: 100vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 317px;
    left: 0;
    bottom: 0;
    z-index: 0;
}

.owl-nav {
        text-align: center;
    position: absolute;
    top: 30%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    }
.owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav .owl-next {
        font-size: 4rem !important;
        font: bold !important;
    }

.parallax>use {
    animation: move-forever 25s cubic-bezier(.4, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 400s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 60s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 80s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 100s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/*Shrinking for mobile*/

@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
    .content {
        height: 30vh;
    }
    h1 {
        font-size: 24px;
    }
}

.tender {
    background-color: var(--primary);
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tender .btn {
    display: inline-block;
    border: 2px solid #f5aa03;
    padding: 8px 13px;
    background-color: var(--primary);
    color: #fff;
    font-family: 'Oswald', 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-appearance: none;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.tender .btn:hover {
    color: #f5aa03;
    background: var(--primary);
}

.add-box {
	border: 2px solid #fff;
        margin: 10px;
}


.sec-6 {
    background: url('../images/product_1-bg.webp') !important;
    background-size: auto;
    /*  width: 100%;*/
    background-size: cover !important;
    height: unset !important;
    background-repeat: repeat-y;
    /* Repeat vertically */
    /*height: 100vh !important;*/
}

.sec-5 .units  {   
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 5% 0;
    background-color: #fff;
    height: 100%;
}
.units .carousel-indicators [data-bs-target] {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 2px solid #fff;
}

.units .carousel-indicators {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 0% !important;
    margin-bottom: 1rem;
    margin-left: 0% !important;
    list-style: none;
    top: 1;
}

.units .carousel-indicators [data-bs-target]:hover {
    border: 2px solid var(--secondary);
    background-color: #fff !important;
}

.units .carousel-indicators>div {
    padding: 2% 3% !important;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #091e3c !important;
    border-radius: 50%;
}

.units h1 {
    font-size: 4vw;
    text-transform: uppercase;
    line-height: 1.2 !important;
    color: var(--primary);
    font-weight: 800 !important;
}

.units p {
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    padding-bottom: 25px;
    font-weight: 600 !important;
}

.body-img {
    height: 300px;
    width: 300px;
    margin-top: -100px;
    opacity: 0.2;
}

.unit-card {
    background-color: var(--primary) !important;
    color: #444;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    margin: 8px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.95) 0px 5px 15px;
    cursor: pointer;
    box-shadow: rgb(255 255 255 / 95%) 0px 1px 3px 1px;
}

.unit-card:hover {
    --_i: 100%;
}

.unit-card * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
}

.unit-title {
    height: 100px;
    /*background-color: #0b2443;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.unit-title h3 {
    font-size: 2rem;
    color: #f5aa03;
    text-transform: uppercase;
    font-weight: 700 !important;
}

.unit-card img {
    vertical-align: top;
    max-width: 100%;
    backface-visibility: hidden;
    width: 80%;
    /* background: #06142b;*/
}

.unit-card .unit-body {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1em;
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    height: 350px;
}

.unit-card h3 {
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.unit-card h3 span {
    display: block;
    font-weight: 700;
}

.unit-card a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.unit-card:hover>img,
.unit-card.hover>img {
    opacity: 0.5;
    transform: scale(1.1);
}

.unit-card:hover:after,
.unit-card.hover:after {
    bottom: 95%;
}

.unit-card:hover .unit-body,
.unit-card.hover .unit-body {
    opacity: 1;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.unit {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 80vh;
    width: 100%;
    min-height: 50vh;
}

.unit .unit-title-rotate {
    position: relative;
    transform: rotate(270deg);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
}

.unit .unit-img {
    width: 30vw;
}

.unit .unit-img img {
    border-radius: 50%
}

.unit .unit-body {
    display: flex;
    flex-direction: column;
}

.unit .unit-summery {
    font-size: 1.3vw;
    font-weight: 600;
    width: 30vw;
}

.sec-7 {
    background: url(../images/product_1-bg.webp) center center no-repeat, linear-gradient( var(--primary), var(--primary));
    background-repeat: no-repeat !important;
    width: 100%;
    background-size: cover !important;
}

.services .btn {
    display: inline-block;
    border: 2px solid #f5aa03;
    padding: 8px 13px;
    background-color: var(--primary);
    color: #fff;
    font-family: 'Oswald', 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-appearance: none;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.services .btn:hover {
    color: #f5aa03;
    background: var(--primary);
}

.services h1 {
    font-size: 4vw;
    text-transform: uppercase;
    line-height: 1.2 !important;
    color: #fff;
    font-weight: 800 !important;
}

.services p {
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    padding-bottom: 25px;
    font-weight: 600 !important;
}

.serviceCard {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: var(--primary);
    color: #fff;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.48) 2px 5px 5px 5px;
}

.serviceCard:after {
    content: "";
    position: absolute;
    top: -110%;
    left: -210%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.0);
    background: linear-gradient( to right, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.0) 70%, rgba(255, 255, 255, 0.14) 74%, rgba(255, 255, 255, 0.1) 76%, rgba(255, 255, 255, 0.0) 77%, rgba(255, 255, 255, 0.06) 79%, rgba(255, 255, 255, 0.3) 92%, rgba(255, 255, 255, 0.0) 100%);
}

/* Hover state - trigger effect */

.serviceCard:hover:after {
    opacity: 1;
    top: -30%;
    left: -30%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
}

/* Active state */

.serviceCard:active:after {
    opacity: 0;
}

.serviceCard :hover {
    /*-webkit-box-shadow: 0px 2px 9px 2px rgba(17,98,238,0.53);
-moz-box-shadow: 0px 2px 9px 2px rgba(17,98,238,0.53);
box-shadow: 0px 2px 9px 2px rgba(17,98,238,0.53); 
border: 2px solid #292945 !important; 
background: #00000042;*/
    bottom: 0;
}

.serviceCaption-content img {
    border-style: non;
    border-radius: 50%;
    background-color: #eda724;
    width: 60px;
}

.serviceCaption-content img:hover {
    background-color: #fff;
}

.services-title-si{
font-size: 18px!important;
}

.services-title-ta{
font-size: 18px!important;
}
.body-img img {
    display: block;
    object-fit: cover !important;
    object-position: center center !important;
    height: 100%;
    width: 100%;
}

.overlay {
    background: rgb(40, 26, 54);
    background: -moz-linear-gradient(0deg, rgba(4, 10, 42) 0%, rgba(89, 59, 116, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(4, 10, 42) 0%, rgba(89, 59, 116, 0) 100%);
    background: linear-gradient(0deg, rgba(4, 10, 42) 0%, rgba(89, 59, 116, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#281a36", endColorstr="#593b74", GradientType=1);
    display: block;
    position: absolute;
    height: 200px;
    width: 100%;
    bottom: 0;
    z-index: 3;
}

.serviceCaption {
    position: absolute;
    top: auto;
    bottom: 10px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0px 15px;
    -webkit-transform: translateY(80%);
    transform: translateY(80%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    background-color: #0a1d3c94;
    height: 40%;
}

.serviceCaption i {
    font-size: 24px;
}

.serviceCaption-title {
    margin-top: 0px;
}

.serviceCaption-content {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.serviceCaption-link {
    color: #fff;
    text-decoration: underline;
    opacity: .8;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
    transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
}

/*.service-Slide-up:hover .overlay{ background: rgb(4, 10, 42);
background: -moz-linear-gradient(0deg, rgba(4, 10, 42,1) 0%, rgba(89,59,116,0) 100%);
background: -webkit-linear-gradient(0deg, rgba(4, 10, 42,1) 0%, rgba(89,59,116,0) 100%);
background: linear-gradient(0deg, rgba(4, 10, 42,1) 0%, rgba(89,59,116,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#400a6f",endColorstr="#593b74",GradientType=1);
}
*/

.service-Slide-up:hover .serviceCaption {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.online-btn{
padding-left: 17px;
}
.tender-btn-ta{
padding-right: 20px;
}
.tender-btn-si{
padding-right: 25px;
}
/*footer sction start*/

footer {
    font-family: 'Oswald', Open Sans, Arial, Helvetica, sans-serif;
    color: #fff;
    position: relative;
    background-position: center top;
    border-top: 3px solid #000;
    background-size: cover width: 100%;
}

.top-footer h6 {
    padding-bottom: 5px;
    position: relative;
}

.top-footer h6:after {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    border: 1.5px solid var(--secondary);
    font-size: 50%
}

h6 {
    font-family: 'Oswald', 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 111%;
    color: var(--secondary);
    margin-bottom: 12px
}

footer p {
    font-size: 14px;
    text-align: start;
    color: #fff;
}

footer a {
    text-decoration: none;   
    color: #fff;
}

.footer-social a {
  padding: 10px 15px;
  border-radius: 0px;
  margin: 0px 5px;
}

footer i {
    padding: 0px;
    margin: 0px;
    font-size: 20px;
}

.footer-social i::after {
    content: "";
}
.footer-social .fa-facebook-f:hover{
color:steelblue;
}

.footer-social .fa-x-twitter:hover{
color:black;
}
.footer-social .fa-instagram:hover{
background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.footer-social .fa-youtube:hover{
color:red;
}


.social-section {
    background-color: var(--primary);
}

.footer-section {
    background-color: var(--primary);
}

.footer-bottom {
    background-color: #000;
}

.footer-bottom p {
    text-align: center;
}

/*footer sction end*/

.human-resources {
    --bg-color: #DCE9FF;
    --bg-color-light: #f1f7ff;
    --text-color-hover: #4C5656;
    --box-shadow-color: rgba(220, 233, 255, 0.48);
}

/*form*/

.card-fb {
    /*width: 650px;*/
    height: 350px;
    background: #f0f0;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
    /*. border-top-right-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease-out;
  text-decoration: none;*/
}

.form-control {
    margin: 10px 0px 0px 0px;
}

.form-select {
    margin: 10px 0px 0px 0px;
}

/*form*/

.card {
   
    background: #fff;
    border-top-right-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-out;
    text-decoration: none;
}

.card:hover {
    transform: translateY(-5px) scale(1.005) translateZ(0);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11), 0 24px 46px var(--box-shadow-color);
}

.card:hover .overlay {
    transform: scale(4) translateZ(0);
}

.card:hover .circle {
    border-color: var(--bg-color-light);
    background: var(--bg-color);
}

.card:hover .circle:after {
    background: var(--bg-color-light);
}

.card:hover p {
    color: var(--text-color-hover);
}

.card:active {
    transform: scale(1) translateZ(0);
    box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11), 0 15px 24px var(--box-shadow-color);
}

.card p {
    font-size: 17px;
    color: #4C5656;
    margin-top: 30px;
    z-index: 1000;
    transition: color 0.3s ease-out;
}

.circle {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
}

.circle:after {
    content: "";
    width: 118px;
    height: 118px;
    display: block;
    position: absolute;
    background: var(--bg-color);
    border-radius: 50%;
    top: 7px;
    left: 7px;
    transition: opacity 0.3s ease-out;
}

.circle svg {
    z-index: 10000;
    transform: translateZ(0);
}

.overlay {
    width: 118px;
    position: absolute;
    height: 118px;
    border-radius: 50%;
    background: var(--bg-color);
    top: 70px;
    left: 50px;
    z-index: 0;
    transition: transform 0.3s ease-out;
}

/* 2024 organization card START  */

.organization {
    width: 100%;
    background: var(--primary);
    margin-bottom: 20px;
    border-radius: 10px;
    border: thick double var(--secondary);
    box-shadow: rgba(0, 0, 0, 0.9) 0px 14px 28px, rgba(0, 0, 0, 0.7) 0px 10px 10px;
}
#organization .organization{
height:600px;
}


.organization img {
    width: 100%;
    height: auto;
    transition: transform 1s;
}

.organization img:hover {
    filter: grayscale(0);
    border: 3px solid var(--secondary);
}

.organization:hover img {
    transform: scale(1.1);
    border: 3px solid var(--secondary);
}

.organization .card-body{

}
/* 2024 organization card END  */

/* 2024 Insignia card START  */

.insignia {
    width: 100%;
    background: var(--primary);
    margin-bottom: 20px;
    border-radius: 10px;
    border: thick double var(--secondary);
    box-shadow: rgba(0, 0, 0, 0.9) 0px 14px 28px, rgba(0, 0, 0, 0.7) 0px 10px 10px;
}



.insignia img {
    width: auto;
    height: auto;
    transition: transform 1s;
}

.insignia img:hover {
    filter: grayscale(0);
}

.insignia :hover img {
    transform: scale(1.1);
}

/* 2024 Insignia card END  */

/* news */

.news-sec {
    background-color: #FFF;
    z-index: 1;
    /*font-family: "Nunito Sans", sans-serif;*/
    position: relative;
    padding-right: 18px;
    color: #001936;
    font-size: 16px;
    font-weight: 900;
    text-align: start;
    /*height: 100vh;*/
    min-height: 700px;
    /*padding-top: 50px;
margin-top: 20%;*/

}

.news-sec .img-sec {
    /*height: 100vh;*/
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 5% 0;
}

.news-sec .news-card {
    background-color: #fff;
    padding: 20px;
    z-index: 1;
    min-height: 400px;
}



}


/* news animation  */

.news-sec .area {
    background: #fff;
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -2;
}

.news-sec .circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #e1e1e1;
}

.news-sec .circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: #0a1d3c2e;
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.news-sec .circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.news-sec .circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.news-sec .circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.news-sec .circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.news-sec .circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.news-sec .circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.news-sec .circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.news-sec .circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.news-sec .circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.news-sec .circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/*news animation */

.news-title {
    padding: 2px 0;
    /*font-family: "Nunito Sans", sans-serif;*/
    font-size: 24px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 25px;
    /*margin-top: 65px;*/
    line-height: 26px;
}

#news h1 {
    font-size: 4vw;
    text-transform: uppercase;
    line-height: 1.2 !important;
    color: #0b2d48;
    font-weight: 800 !important;
    z-index: 1;
}

.news-cont {
    overflow: hidden;
    /* Added to contain the zoom effect within the image container */
}

.news-cont img {
    width: 100%;
    transition: transform 0.3s;
    transform: scale(1);
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    aspect-ratio: auto 550 / 360;
    border: 0;
}

.news-cont:hover img {
    transform: scale(1.1);
}

.news-cont-title {
    color: #001936;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    font-size: 22px;
    font-family: "Nunito Sans", sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    unicode-bidi: isolate;
    text-align: left;
    min-height: 80px;
}

.news-cont-title a {
    color: #001936;
    text-decoration: none;
}

.news-cont-title a:hover {
    color: #337ab7;
}

.news-button {
    padding: 3px 7px 3px 10px;
    line-height: 25px;
    font-weight: 400;
    background: #0a396d;
    box-sizing: inherit;
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    text-decoration: none;
}

.news-button a {
    color: #fff;
    text-decoration: none;
}

.news-date {
    line-height: 25px;
    font-weight: 400;
    margin-left: 13px;
    font-size: 12px;
    font-family: "Nunito Sans", sans-serif;
    color: #bfbfbf;
}

.news-text-summary {
    font-weight: 400;
    line-height: 20px;
    color: #8c9597;
    margin-top: 10px;
    text-align: justify;
    height: 50px;
}

.news-title {
    padding-left: 18px;
    background-color: #FFF;
    font-family: "Nunito Sans", sans-serif;
    padding-right: 18px;
    color: #001936;
    font-size: 24px;
    font-weight: 900;
}

.news-title h3 {
    padding-left: 18px;
    background-color: #FFF;
    font-family: "Nunito Sans", sans-serif;
    padding-right: 18px;
    color: #001936;
    font-size: 24px;
    font-weight: 900;
}

/* 2024 Vision Mission START */

.containervision .card {
    max-width: 300px;
    height: 415px !important;
    margin: 30px 10px;
    padding: 20px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;
}

.containervision .card:hover {
    height: 650px !important;
}

.containervision .card .imgContainer {
    position: relative !important;
    width: 250px !important;
    height: 450px !important;
    top: -50px !important;
    left: 10px !important;
    z-index: 5 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
}

.containervision .card .imgContainer img {
    max-width: 100%;
    border-radius: 4px;
}

.containervision .card .content {
    position: relative;
    margin-top: -140px;
    padding: 10px 15px;
    text-align: center;
    color: #111;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

.containervision .card:hover .content {
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.3s;
}

@media (max-width: 330px) {
    .container .card .imgContainer {
        left: -2px;
    }
}

/* 2024 Vision Mission END */

.ourTeam h2 {
    color: #212529;
    margin: 0 0 30px 0
}

.ourTeam .i {
    margin-top: 30px
}

.ourTeam .i .c {
    background: #fff;
    -webkit-box-shadow: 0 4px 0 #2b86ac;
    -moz-box-shadow: 0 4px 0 #2b86ac;
    box-shadow: 0 4px 0 #a4630e;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
    min-height: 370px;
    margin-bottom: 15px;
}

.ourTeam .i .c .wrap {
    position: relative
}

.ourTeam .i .c .wrap img {
    width: 80%;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.ourTeam .i .c .wrap .info {
    padding: 30px 0;
    position: absolute;
    top: 100%;
    width: 100%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.ourTeam .i .c .wrap .info .name {
    margin: 0;
    font-size: 24px !important;
    font-size: 2.4rem !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0
}

.ourTeam .i .c .wrap .info .position {
    margin: 0;
    font-size: 14px !important;
    font-size: 1.4rem !important;
    color: #555659
}

.ourTeam .i .c .more {
    position: absolute;
    bottom: -100%;
    width: 100%;
    height: 370px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease
}

.ourTeam .i .c:hover .info {
    display: none;
}

.ourTeam .i .c .more p {
    margin: 0 18px 30px 18px;
    line-height: 28px !important;
    color: #0b1d3b;
}

}

.ourTeam .i .c .more .socials {
    margin: 0 0 20px 0
}

.ourTeam .i .c .more .socials a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px !important;
    font-size: 2.2rem !important;
    color: #fff;
    margin: 0 0 0 3px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    text-align: center;
    -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 3px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 3px 0 rgba(0, 0, 0, .1)
}

.ourTeam .i .c .more .socials a:first-child {
    margin: 0
}

.ourTeam .i .c .more .socials a.facebook {
    background: #3262b9
}

.ourTeam .i .c .more .socials a.facebook:hover {
    background: #2d57a5
}

.ourTeam .i .c .more .socials a.twitter {
    background: #3dd7e5
}

.ourTeam .i .c .more .socials a.twitter:hover {
    background: #27d2e2
}

.ourTeam .i .c .more .socials a.google-plus {
    background: #e23535
}

.ourTeam .i .c .more .socials a.google-plus:hover {
    background: #de2020
}

.ourTeam .i .c .more .socials a.linkedin {
    background: #069
}

.ourTeam .i .c .more .socials a.linkedin:hover {
    background: #005580
}

.ourTeam .i .c:hover img {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0
}

.ourTeam .i .c:hover .info {
    top: 0
}

.ourTeam .i .c:hover .more {
    bottom: 0
}

.ourTeam .i .h2:hover .name {
    visibility: hidden;
}

.vmh {
    min-height: 500px;
}

/* 2024 About us START */

.au_card {
    color: #011835;
    text-align: center;
    background: var(--primary);
    margin: 10px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    border: thick double var(--secondary);
    min-height: 60px;
    &:hover {
        transform: translate(5px, -5px);
        &:before {
            transform: translate(-5px, 5px);
        }
        &:after {
            transform: translate(-10px, 10px);
        }
    }
}

/* 2024 About us END */

/*-- history start --*/

ul.timeline {
    list-style-type: none;
    position: relative;
}

ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}

ul.timeline>li {
    margin: 20px 0;
    padding-left: 20px;
}

ul.timeline>li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid var(--primary);
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}

/*-- history end --*/

.title {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 2rem;
}

.title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
}

.title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(50% - 13px);
    background: var(--secondary);
    border: 10px solid var(--primary);
    border-radius: 28px;
}

/*Profile Card 3*/

.profile-card-3 {
    font-family: "Raleway", sans-serif;
    position: relative;
    float: left;
    overflow: hidden;
    width: 100%;
    text-align: center;
    height: 405px;
    border: none;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255);
}

.profile-card-3 .background-block {
    float: left;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.profile-card-3 .background-block .background {
    width: 100%;
    vertical-align: top;
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
}

.profile-card-3 .card-content {
    width: 100%;
    padding: 5px 5px;
    color: #232323;
    float: left;
    background: #efefef;
    height: 50%;
    border-radius: 0 0 5px 5px;
    position: relative;
    z-index: 99;
}

.profile-card-3 .card-content::before {
    content: '';
    background: #efefef;
    width: 120%;
    height: 100%;
    left: 11px;
    bottom: 51px;
    position: absolute;
    z-index: -1;
    transform: rotate(-13deg);
}

.profile-card-3 .profile {
    background-color: var(--secondary);
    border-radius: 50%;
    position: absolute;
    bottom: 50%;
    left: 50%;
    max-width: 100px;
    opacity: 1;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--primary);
    /*-webkit-transform: translate(-50%, 0%);
transform: translate(-50%, 0%);*/
    z-index: 101;
}

.profile-card-3 i {
    display: inline-block;
    font-size: 16px;
    color: #232323;
    text-align: center;
    border: 1px solid #232323;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin: 0 5px;
}

.profile-card-3 .icon-block {
    float: left;
    width: 100%;
    margin-top: 15px;
}

.profile-card-3 .icon-block a {
    text-decoration: none;
}

.profile-card-3 i:hover {
    background-color: #232323;
    color: #fff;
    text-decoration: none;
}

/*Profile Card 3 SBS RABS MARINE */

.profile-card-3-sbs {
    font-family: "Raleway", sans-serif;
    position: relative;
    float: left;
    overflow: hidden;
    width: 100%;
    text-align: center;
    height: 500px;
    border: none;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255);
}

.profile-card-3-sbs .background-block {
    float: left;
    width: 100%;
    height: 70px;
    overflow: hidden;
}

.profile-card-3-sbs .background-block .background {
    width: 100%;
    vertical-align: top;
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
}

.profile-card-3-sbs .card-content {
    width: 100%;
    padding: 5px 5px;
    color: #232323;
    float: left;
    background: #efefef;
    height: 60%;
    border-radius: 0 0 5px 5px;
    position: relative;
    z-index: 99;
}

.profile-card-3-sbs .card-content::before {
    content: '';
    background: #efefef;
    width: 120%;
    height: 70%;
    left: 11px;
    bottom: 51px;
    position: absolute;
    z-index: -1;
    transform: rotate(-13deg);
}

.profile-card-3-sbs .profile {
    background-color: #011835;
    border-radius: 50%;
    position: absolute;
    bottom: 60%;
    left: 65%;
    max-width: 100px;
    opacity: 1;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255);
    /*-webkit-transform: translate(-50%, 0%);
transform: translate(-50%, 0%);*/
    z-index: 101;
}

.profile-card-3-sbs i {
    display: inline-block;
    font-size: 16px;
    color: #232323;
    text-align: center;
    border: 1px solid #232323;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin: 0 5px;
}

.profile-card-3-sbs .icon-block {
    float: left;
    width: 100%;
    margin-top: 15px;
}

.profile-card-3-sbs .icon-block a {
    text-decoration: none;
}

.profile-card-3-sbs i:hover {
    background-color: #232323;
    color: #fff;
    text-decoration: none;
}

#update-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    color: black;
    text-align: center;
    padding-top: 20%;
    font-family: Arial, sans-serif;
    z-index: 9999;
    background-image: url("../images/fleet.webp");
    background-size: cover;
}

.fade-message {
    background-color: #00000061;
    height: 100%;
    top: 0px;
    position: absolute;
    padding: 10% 0px;
    width: 100%;
}

#update-message h1 {
    text-transform: uppercase;
    color: #fff;
}

#update-message p,
#update-message ul li {
    color: #fff;
    font-weight: 600;
    list-style-type: none;
}

/*---------------------- SBS RABS MARINE----------------------- */

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    background-color: #0a1d3c00;
    border-radius: 0;
    border: none;
    font-size: 30px;
}

#btn-back-to-top i {
    color: var(--secondary)
}

#accessibility-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: none;
    z-index: 1000;
    background-color: var(--primary);
    border: 2px solid var(--secondary);
    display: flex;
}

#accessibility-top i {
    color: var(--secondary);
    font-size: 25px;
}

#accessibility-target {
    width: 300px;
    display: none;
}

.accessibilitydic {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

#accessibility-top .btn {
    background-color: var(--primary);
    border-color: var(--primary);
}

#accessibility-top .btn-primary:focus {
    box-shadow: none;
}

#section-top {
    position: fixed;
    right: 20px;
    z-index: 1000;
    background-color: var(--primary);
    border-color: var(--primary);
    top: 30%;
    height: 250px;
}

.sec-btn {
    width=100%;
}

.sec-btn i {
    width: 50px;
    color: white;
    font-size: 18px;
    text-align: center;
    height: 30px;
    padding: 5px;
}

.sec-btn i:hover {
    background-color: #e1ab08;
}

#sidebar-open:hover {
    color: var(--secondary);
}

/* neelaharitha */

.neelaharitha .nav-pills .nav-link {
    font-size: 20px;
}

.neelaharitha .card-dg a {
    font-size: 20px;
    line-height: 5px;
}
.neelaharitha .card h1{
color:var(--primary);
}
.scrolltodiv {
    position: fixed;
    bottom: 10px;
    z-index: 1000;
    width: 80px;
    padding: 5px;
}

.scrolltodiv i {
    color: #fff;
}

.arrow-animate:hover {
    color: #e1ab08;
}

.arrow-animate {
    color: #fff;
    animation: move 1.1s infinite ease-in-out;
}

@keyframes move {
    0% {
        margin-bottom: 0;
    }
    50% {
        margin-bottom: 20px;
        color: var(--secondary);
    }
    100% {
        margin-bottom: 0;
    }
}

.sln_contact {
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
    margin: 10px 0;
}

.sln_contact .card-header {
    background-color: var(--primary) !important;
}

.sln_contact .card-title {
    color: var(--secondary) !important;
}

.alert {
    margin-bottom: 0px !important;
}

.cookie-popup {
    position: fixed !important;
    bottom: 0;
    left: 0;
    background-color: #011124;
    text-align: center;
    z-index: 1001;
    width: 100%;
}

.cookie-popup p {
    color: #fff;
}

.copyright {
    margin-top: 5%;
    margin-bottom: 6%;
}

.footer-social {
   text-align: center;
  padding: 30px 0px;
}



/* neelaharitha  */

.neelaharitha {
    height: 100%;
    min-height: 1200px;
}

/* neelaharitha  */

/* seaops*/

.seaopspage {
    height: 100%;
    min-height: 1200px;
}

.seaopspage section{
height: 100% !important;
}

/* seaops*/

.unit-hover-title {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 16px;
    color: var(--primary);
}

.unit-rabs:hover .unit-hover-title,
.unit-sbs:hover .unit-hover-title,
.unit-marine:hover .unit-hover-title,
.unit-diver:hover .unit-hover-title {
    opacity: 1;
}

.service-hover-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 16px;
    color: #fff;
    width: 100%;
}


.service-boat:hover .service-hover-title,
.service-malima:hover .service-hover-title,
.service-whale:hover .service-hover-title,
.service-museum:hover .service-hover-title,
.service-gallery:hover .service-hover-title,
.service-magazines:hover .service-hover-title,
.service-documentaries:hover .service-hover-title,
.service-tv:hover .service-hover-title,
.service-haritha:hover .service-hover-title,
.service-thalassemia:hover .service-hover-title,
.service-roplant:hover .service-hover-title {
    opacity: 1;
}

.service-hover-title-en {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 22px;
    color: #fff;
    width: 100%;
}



.service-boat:hover .service-hover-title-en,
.service-malima:hover .service-hover-title-en,
.service-whale:hover .service-hover-title-en,
.service-museum:hover .service-hover-title-en,
.service-gallery:hover .service-hover-title-en,
.service-magazines:hover .service-hover-title-en,
.service-documentaries:hover .service-hover-title-en,
.service-tv:hover .service-hover-title-en,
.service-haritha:hover .service-hover-title-en,
.service-thalassemia:hover .service-hover-title-en,
.service-roplant:hover .service-hover-title-en{
    opacity: 1;
}

.modal {
    margin-top: 100px;
}

/* accessibility */

body.invert-colors {
    filter: invert(1) hue-rotate(180deg);
}

body.dark-contrast {
    background-color: #333;
    color: #fff;
}

body.light-contrast {
    background-color: #fff;
    color: #000;
}

body.text-normal {
    font-size: 1rem;
}

body.text-large {
    font-size: 1.25rem;
}

body.text-larger {
    font-size: 1.5rem;
}

body.text-largest {
    font-size: 1.75rem;
}

body.spacing-light {
    letter-spacing: 0.05em;
    line-height: 1.5;
}

body.spacing-moderate {
    letter-spacing: 0.1em;
    line-height: 1.75;
}

body.spacing-heavy {
    letter-spacing: 0.15em;
    line-height: 2;
}

.simplesearch-search-form label {
    display: none;
}

.simplesearch-search-form #search {
    height: 40px;
    width: 80%;
}

.simplesearch-search-form fieldset {
    display: flex;
}

.simplesearch-search-form input[type="submit"] {
    background-color: var(--secondary);
    color: #fff;
    border: none;
    padding: 5px;
    border-radius: 0px;
    font-size: 16px;
}

.simplesearch-search-form input[type="submit"]::before {
    font-family: 'FontAwesome';
    content: '\f002';
    /* Unicode of the search icon in Font Awesome */
    margin-right: 5px;
    /* Adjust spacing between icon and text */
}

/* Video Show/Hide  */
/* Default styles */
    .mobile-tablet-only {
      display: none; /* Hide by default on mobile and tablet */
    }

    .desktop-only {
      display: none; /* Hide by default on desktop */
    }

    /* Media query for screens smaller than tablets (up to 767px) */
    @media (max-width: 819px) {
      .mobile-tablet-only {
        display: block; /* Display on smaller screens */
      }
     .news-sec .img-sec {
       height: 100vh;
       padding: 20% 0;
    }
	.cofn-img-mobile {
        display: block;
        margin: 40px 0;
    }
    .cofn-img-mobile img {
        width: 50%;
        border-radius: 50%;
    }
	.units .carousel-indicators [data-bs-target] {
	  width: 60px !important;
	  height: 60px !important;
	}
	}

    /* Media query for screens larger than tablets (768px and above) */
    @media (min-width: 820px) {
      .desktop-only {
        display: block; /* Display on desktop screens */
      }
	  .cofn-img-mobile {
			display: none;
	  }
    }

/* Hide */

.tender-card{
background-image: linear-gradient(45deg, rgb(10, 29, 60), rgba(0, 0, 0, 0)), url("../images/tender.jpg");
background-size: cover;
border: 2px solid #fff;
margin: 10px;
height: 312px;
}

.tender-card:before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: -webkit-radial-gradient(top center, ellipse cover, rgba(255,255,255,0.2) 0%,rgba(0,0,0,0.5) 100%);
}
.joinus-card{
background-image: linear-gradient(45deg, rgb(10, 29, 60), rgba(0, 0, 0, 0)), url("../images/joinus.jpg");
background-size: cover;
border: 2px solid #fff;
margin: 10px;
height: 312px;
}

.joinus-img{
flex-direction: column;
}
.joinus .nav-link {
  border: 2px solid var(--primary) !important;
  margin: 0px 5px;
}






/* Mobile CSS */

@media (max-width: 575.98px) {
    .slider-logo-right {
        position: absolute;
        z-index: 2;
        top: 80px;
        left: 60%;
        max-width: 100%;
        padding: 10px;
        display: flex;
    }
    .slider-logo-right img {
        width: 150px;
    }
    .slider-logo-left {
        position: absolute;
        z-index: 2;
        top: 100px;
        left: 0;
        max-width: 100%;
        padding: 10px;
        display: flex;
    }
    .slider-logo-left img {
        width: 100px;
    }
    .sec-5{
 height: 100vh !important;
}
    .unit {
        flex-direction: column !important;
        justify-content: center !important;
        display: flex;
       
    }
    .unit .unit-title-rotate {
        position: relative;
        transform: rotate(0);
        font-size: 3rem;
        font-weight: 800;
        color: var(--primary);
        width: 100%;
    }
    .unit .unit-img {
        width: 80%;
    }
    .unit .unit-img img {
        border-radius: 50%
    }
    .unit .unit-summery {
        font-size: 0.8rem;
        font-weight: 600;
        width: 70vw;
        display: none;
    }
    .units .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }
    .unit-hover-title {
  position: absolute !important;
}
    .units .carousel-indicators {
        position: unset !important;
        margin-top: -57px;
        padding-bottom: 30px; 
    }
    .serviceCard {
        margin: 10px 0 !important;
    }
    .navbar {
        padding: 0px !important;
        justify-content: space-between !important;
    }
    .babel {
        width: 20vw;
    }
    .babel ul li {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding: 0px;
    }
    .nav-img {
        width: 50vw;
    }
    .nav-img img {
        width: 90% !important;
    }
    .nav-toggle {
        width: 20vw;
        text-align: -moz-center-or-inherit;
        justify-content: center;
        display: flex;
    }
    .news-sec {
        padding: 0px !important;
    }
    .news-sec .news-card {
        padding: 10px !important;
        margin: 10px 20px;
    }
    .news-sec .img-sec {
  height: 100vh !important;
     }
    .news-sec .img-sec .section-title{
  margin: 10px 0px;
     }
    /*.seaops .seaops-link img, .fallen .fallen-link img, .cofn .cofn-link img, .fleet-link img {
  width: 40%;
}*/
    .fallen {
        position: absolute !important;
        top: 30vh;
        width: 100%;
        right: 0vh;
        padding: 10px;
    }
    .fallen h1,
    .cofn h1,
    .seaops h1,
    #news h1,
    .fleet h1,
    .services h1,
    .hydro h1,
    .tender h1 {
        font-size: 1.8rem;
    }
    .cofn p,
    .fallen p,
    .seaops p {
        font-size: 1rem;
        font-family: 'Oswald' !important;
    }
    .fallen p {
        font-size: 1rem;
    }
    .cur .container {
        padding: 0px;
        top: 0px;
        position: absolute;
    }
    .cofn
     {
        top: 0;
        padding: 65px 50px 20px 50px;
        background-color: #0a1d3c75;
        border-radius: 0% 0% 50% 50% / 30% 30%;
        min-height: 80vh;
    }

    .fallen{
        top: 0;
        padding: 100px 50px 20px 50px;
        background-color: #0a1d3c75;
        border-radius: 0% 0% 50% 50% / 30% 30%;
        min-height: 80vh;
    }
    .seaops {
        top: 0;
        padding: 65px 50px 20px 50px;
        background-color: #0a1d3c75;
        border-radius: 0% 0% 50% 50% / 30% 30%;
        min-height: 80vh;
    }
     .hydro{
    top: 0;
    padding: 40px 50px 20px 50px;
    background-color: #0a1d3c75;
    border-radius: 0% 0% 50% 50% / 30% 30%;
    min-height: 80vh;
  }

.hydro h1 {
    text-transform: uppercase;
    line-height: 1.2 !important;
    color: #fff;
    font-weight: 800 !important;
}

.hydro p {
    color: #fff;
    line-height: 1.5;
    padding-bottom: 25px;
    font-weight: 500 !important;
}
    
    .fleet .container {
        padding: 0px;
        top: 0px;
    }
    .fleet {
        top: 0;
        padding: 40px;
        background-color: #0b2d48;
        border-radius: 0% 0% 50% 50% / 20% 20%;
    }
    .sec-5 {
        background-color: #0a1d3c12;
        height: none;
    }
    .sec-6 {
        height: auto !important;
    }
    .sec-6 .serviceCaption {
        height: 40% !important;
    }
    #fallen-img,
    #seaops-img {
        display: none;
    }
    .unit-image {
        z-index: 10 !important;
    }
    .ourTeamMOB .i .c {
        height: 550px;
    }
    .ourTeamMOB .i .c .wrap .info {
        position: relative !important;
    }
    .ourTeamMOB .i .c .more {
        bottom: 0 !important;
    }
    .footer-social {
        text-align: center;
        padding: 30px 0px;
    }
   
.joinus-card, .tender-card{
height: 300px!important;
}
}

/* Mobile CSS */