/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: rgba(45, 44, 50, 0.7);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .breadcrumbs ol a:hover {
  color: var(--contrast-color);
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
    color: var(--accent-color);

  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  background: linear-gradient(20deg, #125ca7, #5f72bd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-section {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  padding: 0 !important;
}
.hero-section::after {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.hero-section .swiper{
  width: 100%;
  height: 100%;
}
.hero-section .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
	position: relative;
	z-index: 0;
  
}

.img-mask {
    height: 100%;
}
.img-mask {
  position: relative;
  overflow: hidden;
}

.img-mask .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3); 
  z-index: 1;
  transition: opacity 1s ease;
}
.hero-section .slider-info {
    height: 100%;
    width: 100%;
}

.section-image {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 8s ease;
  filter: brightness(0.9) contrast(1.1);
}

.swiper-slide-active .section-image {
		/* animation: scale 4s ease forwards; */
    transform: scale(1.1); 
}

.slider-text h2, .slider-text h1 {
    font-size:46px;
    color: #fff;
    font-weight: normal;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 0;
    font-weight: 200;
}
.slider-text h2 span, .slider-text h1 span {
    text-transform: none;
    font-weight: 700;
    color: #125ca7;
}

.hero-section .swiper-slide-active .slider-info-box {
  transition-delay:700ms;
  opacity: 1;
}

.hero-section .hero-pagination {
    position: absolute;
    z-index: 11;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    left: auto;
    bottom: inherit;
    right: 50px;
    margin: auto;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    display: flex;
    flex-direction: column;
}

.hero-section span.swiper-pagination-bullet {
  margin: 5px 0 !important;
  width: 12px;
  height: 12px;
}


.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 4%;
    border-radius: 13px;
    z-index: 1
}

.mouse:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    right: 0;
    width: 3px;
    height: 8px;
    background: #fff;
    margin: auto;
    border-radius: 5px;
    animation: mouse 1.2s infinite linear;
    transform-origin: 50% 0
}



@keyframes mouse {
    0% {
        transform: scaleY(.4)translateY(0)
    }

    20% {
        transform: scaleY(1.5)translateY(0)
    }

    60% {
        transform: scaleY(.4)translateY(25px)
    }

    100% {
        transform: scaleY(.4)translateY(0)
    }
}

@-webkit-keyframes mouse {
    0% {
        transform: scaleY(.4)translateY(0)
    }

    20% {
        transform: scaleY(1.5)translateY(0)
    }

    60% {
        transform: scaleY(.4)translateY(25px)
    }

    100% {
        transform: scaleY(.4)translateY(0)
    }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.img-mask .overlay{
position:absolute;
top:0;
left:0;
height:100%;
width:100%;

background:
linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0.05) 100%),
linear-gradient(180deg, rgba(17,91,166,0.4) 0%, rgba(0,0,0,0.4) 100%);

z-index:1;
}

.slider-info-box{
position:absolute;
left:10%;
top:50%;
max-width:420px;
padding:40px 45px;

transform:translateY(-50%);

background:rgba(0,0,0,0.35);
backdrop-filter:blur(8px);

border-radius:12px;

border:1px solid rgba(255,255,255,0.1);

box-shadow:0 20px 60px rgba(0,0,0,0.35);

opacity:0;
transition:all .6s ease;

z-index:2;

}
.slider-text h1,
.slider-text h2{
font-size:50px;
font-weight:300;
color:#fff;
line-height:1.2;
letter-spacing:.5px;
}

.slider-text span{
color:#115ba6;
font-weight:700;
}

.slider-text{
opacity:0;
transform:translateY(40px);
transition:all .7s ease;
}

.swiper-slide-active .slider-text{
opacity:1;
transform:translateY(0);
}
.hero-buttons{
margin-top:25px;
display:flex;
gap:15px;
}

.btn-gradient{
padding:12px 26px;
background:linear-gradient(135deg,#115ba6,#0d4c8c);
color:#fff;
text-decoration:none;
border-radius:6px;
transition:.3s;
}

.btn-gradient:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.btn-outline-custom{
padding:12px 26px;
border:2px solid #fff;
color:#fff;
text-decoration:none;
border-radius:6px;
transition:.3s;
}

.btn-outline-custom:hover{
background:#fff;
color:#000;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

.about-content .btn {
    margin-left: 80px;
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: #f3f3f3 !important;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}


.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color:#2d2c32 !important;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

.service-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
  height: 70px;
  width: 70px;
  background: linear-gradient(135deg, #125ca7, #5f72bd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper i {
  font-size: 28px;
  color: white;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.black-bg {
  background-image: url('https://images.pexels.com/photos/5411674/pexels-photo-5411674.jpeg'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 100px 0;
} 

.black-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.8); /* semi-transparent dark overlay */
  z-index: -1;
}


.section-title.text-white p {
  color: #fff;
}
.bg-blue .section-title .description-title {
    background: #1d1d20;
    background-clip: text;
}
.portfolio-home .portfolio-filters li {
  color: #fff;
}

#portfolio .container,
#portfolio .isotope-layout {
  position: relative;
  z-index: 2; 
} 

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background:  linear-gradient(150deg, #125ca7, #5f72bd);;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}


.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
  text-align: left;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  margin-bottom: 0;
  color:#115ba6;
  
}

.portfolio .portfolio-item .portfolio-info p {
  
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  /* color: color-mix(in srgb, var(--default-color), transparent 30%); */
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}
.portfolio-item img {
    min-height: 250px;
    object-fit: cover;
    height: 100%;
}

.glightbox-clean .gslide-title {
margin-bottom: 0 !important;
}
/* ===== BACK BUTTON ===== */
.back-btn {
    color: #115ba6;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #115ba6;
    padding: 8px 18px;
    border-radius: 25px;
    transition: 0.3s;
}

.back-btn:hover {
    background: #115ba6;
    color: #fff;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* ===== PRODUCT TITLE ===== */
.product-title {
    font-size: 30px;
    font-weight: 600;
    color: #2d2c32;
}

/* ===== IMAGE ===== */
.product-img-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.product-img-wrapper img {
    width: 100%;
    transition: 0.4s;
}

.product-img-wrapper:hover img {
    transform: scale(1.05);
}

/* ===== DESCRIPTION ===== */
.product-description {
    max-width: 900px;
    margin: auto;
}

.product-description .lead {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

.long-desc {
    margin-top: 15px;
    color: #666;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-heading {
        font-size: 28px;
    }

    .product-title {
        font-size: 22px;
    }
}

/* ===== SIDEBAR ===== */
.other-products {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: #115ba6;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* ===== PRODUCT ITEM ===== */
.product-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
    margin-bottom: 10px;
}

.product-item:hover {
    background: #f5f9ff;
    transform: translateX(5px);
}

/* ===== THUMB ===== */
.product-thumb {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== INFO ===== */
.product-info h6 {
    font-size: 14px;
    margin: 0;
    color: #2d2c32;
    font-weight: 600;
}

.product-info p {
    font-size: 12px;
    color: #777;
    margin: 3px 0 0;
}

/* ===== STICKY SIDEBAR ===== */
@media (min-width: 992px) {
    .other-products {
        position: sticky;
        top: 100px;
    }
}
/* LEFT CARD */
.product-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.product-img-wrapper img {
    width: 100%;
    border-radius: 10px;
}

/* RIGHT SIDEBAR */
.other-products {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TITLE */
.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #115ba6;
}

/* ITEM */
.product-item {
    display: flex;
    gap: 10px;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.product-item:hover {
    background: #f5f9ff;
}

/* THUMB */
.product-thumb {
    width: 60px;
    height: 60px;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT */
.product-info h6 {
    margin: 0;
    font-size: 14px;
    color: #2d2c32;
}

.product-info p {
    margin: 0;
    font-size: 12px;
    color: #777;
}

/* STICKY */
@media (min-width: 992px) {
    .other-products {
        position: sticky;
        top: 100px;
    }
}
/* ===== MOBILE ===== */
@media (max-width: 991px) {
    .other-products {
        margin-top: 20px;
    }
}

/*--------------------------------------------------------------
# Mission Approach  Section
--------------------------------------------------------------*/


.mission-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
}

.mission-box {
    width: 50%;
    padding: 56px 60px 80px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    color: #fff;
    text-align: center
}

.mission-box figure {
    margin: 0
}

.mission-box figure img {
    width: 100%;
    max-width: 76px
}

.mission-box.mission-bg figure img {
    max-width: 87px
}

.mission-box p {
    font-size: 16px;
    color:#fff;
    font-weight: 300;
}

.second-heading h4 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px
}

.second-heading h4 span {
    font-size: 18px;
    display: block;
    width: 100%;
    font-weight: 400;
    padding-bottom: 5px;
    margin-top: 18px;
    font-family: Lato
}

.second-heading h4:before {
    content: "";
    position: absolute;
    background: #fff;
    width: 72px;
    height: 3px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto
}


    .vision-bg:before {
    content: "vision";
    position: absolute;
    bottom: -70px;
    left: 0;
    height: 190px;
    z-index: 1;
    width: 100%;
    font-size: 110px;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 35px;
}


.mission-bg {
    background: #123962;
    position: relative;
    overflow: hidden
}
.vision-bg {
    background: rgba(0,0,0,0.7);
    position: relative;
    overflow: hidden;
    border-left: 4px solid #fff;
}

 .mission-bg:before {
    content: "mission";
    position: absolute;
    bottom: -70px;
    left: 20px;
    height: 190px;
    z-index: 1;
    width: 100%;
    font-size: 110px;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 30px;
    text-align: center;

}


.usp-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 6px 18px rgba(22,28,37,0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
    padding-left: 90px !important;
  }

  .usp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(22,28,37,0.12);
  }

  .usp-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f1f5ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #0d6efd;
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .usp-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
  }

  .usp-card p {
    font-size: 0.92rem;
    color: #555;
    margin-bottom: 0;
  }

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
 .faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #f3f3f3;
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
   max-height: 0;
}

.faq .faq-container .faq-item .faq-content p {
  overflow: hidden;
  color: #fff;
  margin: 10px 0;
  
}
.faq-content ul {
    margin: 0;
    padding: 0;
    list-style-type: square;
    padding-left: 20px;
}
.faq-content ul li {
    margin-bottom: 7px;
}
.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}
.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: #123962;
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  
   max-height: 500px;
   border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
} 


.section-title.left-title {
  text-align: left;
  padding-bottom:20px;
 }
 
 /* .whychoose-section .section-title h2 {
  background: rgba(0,0,0,0.1);
  color: #333;
 } */
  .section-title.text-white h2 {
    background: rgba(255, 255, 255, 0.1);
    color: #d1d1d1;
}
.company-img {
    position: relative;
    height: 100%;
} 
.choose-box P{
    color: #fff;
} 
.choose-info {
    max-width: 550px;
    color: #fff;
}

.choose-tags {
    font-size: 0;
    margin-bottom: 20px;
}

.inquiry-row {
    overflow: hidden;
}
.inquiry-row .cols {
    margin: 0 -30px;
}
.inquiry-row .cols .col {
    padding: 0 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}
.inquiry-info .title-box {
    margin-bottom: 25px;
}
.inquiry-info .title-box span {
    font-size: 26px;
    color: #6c6c6c;
}

.inquiry-btns {
    font-size: 0;
    display: flex;
    padding-top: 10px;
}
.inquiry-btns .button {
    display: flex;
    margin-right: 17px;
    line-height: 1.4;
    padding-left: 0;
    padding-right: 0;
    width: 192px;
    align-items: center;
    justify-content: center;
}
.inquiry-btns .button i {
    font-size: 20px;
    margin-right: 10px;
}
.inquiry-img {
    margin-left: auto;
}
.inquiry-img figure {
    margin: 0;
    max-width: 544px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.inquiry-img figure:before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    transition: 450ms linear;
    z-index: 1;
}
.inquiry-img figure img {
    width: 100%;
    height: auto;
    transition: 450ms linear;
}
.inquiry-img figure:hover img {
    transform: scale(1.1);
}
.inquiry-img figure:hover:before {
    transform: scale(0.95);
    border-color: rgba(255, 255, 255, 0.7);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 25px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}
.client-section .swiper-slide {
  flex-shrink: 0;
  width: auto; /* or a fixed width like 150px */
  text-align: center;
}
.client-section  {
  background-color: #fff;
}


/*--------------------------------------------------------------
# quote Section
--------------------------------------------------------------*/

.whychoose-section {
    position: relative;
}
.bg-blue{
  background:#125ca7 !important;

}
.whychoose-section .right-banner {
    position: absolute;
    left: 50%;
    top: 0;
    width: 50%;
    height: 100%;
    background: url(../img/storage-tank.jpg) no-repeat 0 0;
    background-size:cover;
    background-position: right center;
}

/* HIGHLIGHT WORDS */
.highlight{
color:#4fc3f7;
font-weight:600;
}

/* BUTTON */
.btn-black{
background:#000;
color:#fff;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
display:inline-block;
margin-top:15px;
transition:0.3s;
}

.btn-black:hover{
background:#222;
transform:translateY(-2px);
}

/* TAG LINKS */
.choose-tags{
margin-top:25px;
}

.choose-tags a{
display:inline-block;
margin-right:12px;
margin-bottom: 12px;
padding:8px 14px;
background:rgba(255,255,255,0.12);
border-radius:6px;
color:#fff;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.choose-tags a i{
margin-right:5px;
}

.choose-tags a:hover{
background:#fff;
color:#115ba6;
}

/* IMAGE STYLE */
.whychoose-img{
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.3);
transition:0.4s;
}

.whychoose-img:hover{
transform:scale(1.03);
}


.whychoose-section{
position:relative;
background:#115ba6;
overflow:hidden;
padding:90px 0;

}

.animation-relative {
  position:relative;
  z-index: 1;
}

/* animated dots layer */
.animated-bg{
position:absolute;
top:0;
left:0;
width:200%;
height:200%;
background-image:radial-gradient(rgba(255,255,255,0.15) 1px, transparent 2px);
background-size:40px 40px;
animation:moveDots 40s linear infinite;
opacity:0.6;
z-index: -1;
}

/* animation movement */
@keyframes moveDots{
0%{
transform:translate(0,0);
}
100%{
transform:translate(-200px,-200px);
}
}

/*--------------------------------------------------------------
# Clients About Section
--------------------------------------------------------------*/

.clients-about ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.clients-about ul li {
    width: 20%;
    margin: 15px;
}
.clients-about ul li figure {
  background-color: #fff;
  padding: 10px 20px;
  margin-bottom: 0 !important;
  min-height:90px;
    display: flex
;
    align-items: center;
    justify-content: center;

}
.client-about-section {
    background-image: url(https://images.pexels.com/photos/5411674/pexels-photo-5411674.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 100px 0;
}
.client-about-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.8); /* semi-transparent dark overlay */
  z-index: -1;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/


.service-card{
background:#fff;
padding:35px 25px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
transition:0.3s;
height:100%;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* icon box style */
.icon-box{
width:70px;
height:70px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 20px;
font-size:32px;
color:#115ba6;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.4s;
}

/* floating animation */
.icon-box i{
animation:iconFloat 3s ease-in-out infinite;
}

/* hover animation */
.service-card:hover .icon-box{
background:#115ba6;
color:#fff;
transform:rotate(360deg) scale(1.1);
}

/* floating keyframes */
@keyframes iconFloat{
0%{
transform:translateY(0px);
}

50%{
transform:translateY(-6px);
}

100%{
transform:translateY(0px);
}
}

.service-card h4{
font-size:20px;
font-weight:600;
margin-bottom:10px;
}

.service-card p{
font-size:14px;
color:#666;
}

.industry-item{
background:#fff;
padding:25px;
border-radius:10px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.industry-item:hover{
background:#115ba6;
color:#fff;
transform:translateY(-5px);
}

.industry-item i{
font-size:35px;
color:#115ba6;
margin-bottom:10px;
display:block;
}

.industry-item:hover i{
color:#fff;
}

.industry-item h5{
font-size:16px;
font-weight:600;
}

#cta{
/* background-color:#222127; */
color:#fff;
padding:60px 0;
/* border-bottom: 1px solid #28272d; */
}

.cta h2{
font-size:32px;
font-weight:700;
margin-bottom:15px;
/* color: #fff; */
}

.cta p{
font-size:15px;
/* opacity:0.9;
color: #fff; */
}
.cta .description-title {
background: linear-gradient(20deg, #125ca7, #5f72bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team-member {
  width: 100%;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
 color:#2d2c32;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# certificates Section
--------------------------------------------------------------*/

.certificates {
    padding: 65px 0;
    text-align: center;
    overflow: hidden;
}

.certificates-section .icon-certificate-icon-1 {
    font-size: 32px;
    color: #2aa88e
}

.certificates-section .icon-certificate-icon-1.white {
    color: #fff
}

.certificates .heading h2 {
    margin-bottom: 0
}

.certificates .heading h2:before {
    content: none
}

.certificates .heading p {
    font-size: 18px;
    max-width: 770px;
    width: 100%;
    margin: 0 auto
}

.certificates-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.certificates-left {
    width: 28%;
    background: #123962;
    padding: 25px 30px;
    box-shadow: 2px 3px 13px 8px #d8d6d6
}

.certificates-left figure {
    margin: 0;
    border: 1px solid #4c9888;
    margin-bottom: 25px
}

.certificates-left figure img {
    width: 100%
}

.certificates-left p {
    font-size: 18px;
    color: #fff;
    text-align: left;
    margin-bottom: 0
}

.certificates-right {
    width: 40%;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap
}

.iso-title {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.21);
    padding-bottom: 15px;
    margin-bottom: 20px
}
.iso-title img {
    max-width: 100%;
    width: 20px;
}
.iso-title h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 0;
    margin-left: 15px;
}

.certificates-box {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.certificates-box figure {
    margin: 0;
}
.certificates-box figure img{
  max-width: 150px;
}
.certificates-box-content {
    margin-left: 20px;
}

.certificates-box-content .iso-title {
    border-color: rgba(0,0,0,0.21)
};

.certificates-box-content p {
    max-width: 100%;
    text-align: left;
    color: #5d5d5d;
    font-size: 18px;
    margin-bottom: 0;
}

.certificates-box-content h4 {
    color: #5d5d5d;
    font-weight: 600;
}

.rtl .certificates-box-content p {
    text-align: right
}

.rtl .certificates-box-content {
    margin-left: 0;
    margin-right: 20px
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.services .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.services .card a:hover {
  color: var(--accent-color);
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact-map iframe { max-width: 100%;}


.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item p a {
  color: #2d2c32;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .contact-from {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.contact-from .alert {
    margin-top: 30px;
    text-align: center;
}


.contact .contact-from input[type=text],
.contact .contact-from input[type=email],
.contact .contact-from textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-from input[type=text]:focus,
.contact .contact-from input[type=email]:focus,
.contact .contact-from textarea:focus {
  border-color: var(--accent-color);
}

.contact .contact-from input[type=text]::placeholder,
.contact .contact-from input[type=email]::placeholder,
.contact .contact-from textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-from button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
}

.contact .contact-from button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}


.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}


