/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/


html,body
{
	overflow-x:hidden;
}
.hover-box
{
	 transition: all 0.4s ease;
}
.hover-box:hover
{
	transform: translateY(-5px);
}
.s-case-studies-details-filter .elementor-button:hover svg path
{
	fill:#ffffff;
}
.counter-center .elementor-counter-title
{
	text-align:center;
}
.s-about-infra-box  .hover-box:hover svg path
{
	fill:#ffffff;
}
.s-about-infra-box  .hover-box:hover
{
	background-color:#24497F;
}
.s-about-infra-box  .hover-box:hover p
{
	color:#ffffff;
}

/* Industries CSS */
.industries-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.industriesSwiper {
    padding: 20px 0;
}

.industry-card {
    position: relative;
    height: 420px;
    border-radius: 35px;
    overflow: hidden;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 43, 105, 0.95) 0%,
        rgba(8, 43, 105, 0.7) 35%,
        rgba(8, 43, 105, 0.1) 100%
    );
}

.industry-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: #fff;
}

.industry-content h3 {
    font-size: 22px;
	font-family: "Area Normal", Sans-serif;
	font-weight:bold;
    margin: 0 0 10px;
    color: #fff;
}

.industry-content p {
    font-size: 11px;
	font-family: "Area Normal", Sans-serif;
	font-weight:400;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    padding-right: 40px;
	letter-spacing:1px;
}

.industry-arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

@media (max-width: 1024px) {
    .industry-card {
        height: 380px;
    }

    .industry-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .industry-card {
        height: 340px;
    }

    .industry-content h3 {
        font-size: 22px;
    }
}


/* Testimoanil CSS */
.custom-testimonials{
    display:flex;
    align-items:top;
    gap:60px;
}

/* Logo Slider */

.testimonial-logos{
    width:180px;
    flex-shrink:0;
}

.testimonialSwiper{
    height:320px;
    overflow:hidden;
}

.testimonial-logo-slide{
    height:100px !important;

    border:1px solid #d9d9d9;
    border-radius:18px;
    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:all .3s ease;
}

.testimonial-logo-slide img{

    width:auto;
    height:auto;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.35;
    transition:all .3s ease;
	border-radius:20px;
}

/* Active Logo */

.testimonial-logo-slide.swiper-slide-active{
    border-color:#0B4EA2;
}

.testimonial-logo-slide.swiper-slide-active img{
    filter:none;
    opacity:1;
}

/* Content */

.testimonial-content{
    flex:1;
    max-width:700px;
}

#testimonial-description{
    font-size:16px;
    line-height:1.8;
    color:#222;
    margin-bottom:25px;
	font-weight:400;
	font-family: "Area Normal", Sans-serif;
}

#testimonial-name{
    display: inline-flex;
    align-items:center;
    gap:15px;
	font-family: "Area Normal", Sans-serif;
    font-size:16px;
    font-weight:400;
    color:#111;
	border-bottom: 1px solid #000000;
    padding-bottom: 10px;
}


/* Tablet */

@media(max-width:1024px){

    .custom-testimonials{
        gap:40px;
    }

    #testimonial-name{
        font-size:28px;
    }

    #testimonial-description{
        font-size:16px;
    }
}

/* Mobile */

@media(max-width:767px){

    .custom-testimonials{
        flex-direction:column;
        gap:30px;
    }

    .testimonial-logos{
        width:100%;
    }

    .testimonialSwiper{
        height:auto;
    }

    .testimonial-logo-slide{
        height:90px !important;
    }

    .testimonial-content{
        text-align:center;
        max-width:100%;
    }

    #testimonial-name{
        justify-content:center;
        font-size:18px;
    }

    #testimonial-description{
        font-size:15px;
    }
}


/* Home Product Slider */

.sv-product-categories-slider{
    position:relative;
}

.sv-category-card{
    height:100%;
}

.sv-category-image{
    border:1px solid #d8d8d8;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
}

.sv-category-image img{
    width:100%;
    display:block;
    object-fit:contain;
    transition:.4s ease;
}

.sv-category-card:hover img{
    transform:scale(1.04);
}

.sv-category-content{
    padding-top:14px;
}

.sv-category-title-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.sv-category-title-row h3 a,
.sv-category-title-row h3{
    margin:0;
    font-size:16px;
    font-weight:bold;
    color:#24497F;
    line-height:1.2;
    font-family: "Area Normal", Sans-serif;
}

.sv-arrow{
    font-size:30px;
    color:#0f3478;
    line-height:1;
}

.sv-category-content p{
    margin:4px 0 0;
    color:#b7bcc5;
    font-size:12px;
    line-height:1.5;
	font-weight:400;
    font-family: "Area Normal", Sans-serif;
}

/* Tablet */

@media(max-width:1024px){

    .sv-category-title-row h3{
        font-size:26px;
    }

    .sv-arrow{
        font-size:24px;
    }

}
    
/* Mobile */

@media(max-width:767px){

    .sv-category-title-row h3{
        font-size:22px;
    }

    .sv-arrow{
        font-size:22px;
    }

    .sv-category-content p{
        font-size:13px;
    }

}


/* Home Process Section CSS */
.s-home-process-box{
    transition: all 0.4s ease;
}

.s-home-process-box:hover{
    background-color: #24497F !important;
}

/* Hidden State */
.s-home-process-box .hover-process-show{
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Show on Hover */
.s-home-process-box:hover .hover-process-show{
    opacity: 1;
    visibility: visible;
    max-height: 200px; /* Adjust as needed */
}

.s-home-process-box .elementor-heading-title,
.s-home-process-box p{
    transition: color 0.4s ease;
}

.s-home-process-box:hover .elementor-heading-title,
.s-home-process-box:hover p{
    color: #ffffff !important;
}

.s-home-process-box svg{
    transition: transform 0.4s ease;
}

.s-home-process-box:hover svg path{
    fill: #ffffff !important;
}

.s-home-process-box:hover svg{
    transform: rotate(45deg);
}

/* Blogs CSS*/

    /* Container */
.recent-articles {
  padding: 40px 0;
}


/* Grid Layout */
.recent-articles .articles-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE */
.recent-articles .article-text {
  flex: 1;
}

.recent-articles .label {
  color: #27519E;
  font-weight: 500;
  margin-bottom: 14px;
  font-size: 36px;
}

.recent-articles .title a {
  font-size: 36px;
  line-height: 1.25;
  color: #27519E;
  margin: 0 0 16px;
  font-weight: 400;
}

.recent-articles .excerpt {
  color: #A3A3A3;
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 400;
  letter-spacing: 1px;
}

.recent-articles .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  text-decoration: none;
  font-weight: 400;
  font-size: 26px;
}

.recent-articles .read-more .arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid #000000;
  border-radius: 50%;
  font-size: 14px;
}

/* RIGHT IMAGE */
.recent-articles .article-image {
  flex: 1.5;
}

.recent-articles .article-image {
  width: 100%;
}
.article-image a {
  display: block;
  width: 100%;
  aspect-ratio: 14 / 10;   /* change ratio here */
  overflow: hidden;
  border-radius: 12px;
}

.recent-articles .article-image img {
  width: 100%;
  height: auto;
  object-fit: cover;   /* crop to fill */
  display: block;
  object-position: center;
}

/* TABLET */
@media (max-width: 992px) {
.recent-articles  .title {
    font-size: 24px;
  }
.recent-articles  .articles-grid {
    gap: 24px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
.recent-articles  .articles-grid {
    flex-direction: column;
  }

.recent-articles  .article-text {
    order: 2;
  }

.recent-articles  .article-image {
    order: 1;
  }

.recent-articles  .title {
    font-size: 22px;
  }
}


.recon-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.recon-blog-grid .blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 18px;
}

.recon-blog-grid .card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.recon-blog-grid .card-image {
  display: block;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  margin-bottom: 14px;
}

.recon-blog-grid .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.recon-blog-grid .card-title {
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 10px;
  font-weight: 400;
  letter-spacing: 1px;

}
.recon-blog-grid .card-title a:hover
{
	text-decoration: none !important;
}
.recon-blog-grid .card-title a {
  color: #24497F;
  text-decoration: none;
  font-family: "Area Normal", Sans-serif;
  font-weight:bold;
}

.recon-blog-grid .card-title a:hover {
  text-decoration: underline;
}

.recon-blog-grid .card-excerpt {
  font-size: 16px;
  color: #767676;
  line-height: 1.5;
  margin-bottom: 14px;
  font-family: "Area Normal", Sans-serif;
  letter-spacing: 1px;
}

.recon-blog-grid .card-meta {
  margin-top: auto; /* 🔥 pushes meta to bottom */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #000000;
  letter-spacing: 1px;
  font-family: "Area Normal", Sans-serif;
}

.recon-blog-grid .read-more {
  color: #000000;
  text-decoration: none;
  font-family: "Area Normal", Sans-serif;
}

.recon-blog-grid .read-more .arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #000000;
  border-radius: 50%;
  font-size: 14px;
  margin-left: 8px;
}

.recon-blog-grid .post-date {
  color: #444;
}

.recon-pagination {
  margin-top: 40px;
  text-align: center;
}

.recon-pagination a,
.recon-pagination span {
  margin: 0 6px;
  padding: 6px 12px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #1f4fa3;
}

.recon-pagination .current {
  background: #1f4fa3;
  color: #fff;
  border-color: #1f4fa3;
}

/* Responsive */
@media (max-width: 992px) {
  .recon-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recon-blog-grid {
    grid-template-columns: 1fr;
  }
}



.recon-blog-detail-wrap {
  background: #fff;
  padding: 40px 0 60px;
}

.recon-blog-detail-wrap .recon-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top label */
.recon-blog-detail-wrap .recon-blog-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.recon-blog-detail-wrap .recon-blog-label {
  font-size: 86px;
  font-weight: 500;
  color: #1f4fa3;
}

.recon-blog-detail-wrap .recon-blog-arrow {
  width: 80px;
  height: 80px;
  border: 1px solid #cfd6e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f4fa3;
  font-size: 16px;
}

/* Image */
.recon-blog-detail-wrap .recon-blog-image {
  margin-bottom: 18px;
  aspect-ratio: 2 / 1;   /* 1200x600 ratio */
  overflow: hidden;
  border-radius: 12px;
}

.recon-blog-detail-wrap .recon-blog-image img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title */
.recon-blog-detail-wrap .recon-blog-title {
  font-size: 38px;
  line-height: 1.25;
  color: #24497F;
  font-weight: 800;
  font-family: "Area Normal", Sans-serif;
  margin: 12px 0 6px;
}

/* Date */
.recon-blog-detail-wrap .recon-blog-date {
  font-size: 22px;
  color: #7a7a7a;
  margin-bottom: 18px;
}

/* Content */
.recon-blog-detail-wrap .recon-blog-content {
  font-size: 18px;
  letter-spacing: 3px;
  color: #000000;
}
.recon-blog-detail-wrap .recon-blog-content a
{
	color: #e32227;
}

.recon-blog-detail-wrap .recon-blog-content p {
  margin-bottom: 16px; 
  font-family: "Area Normal", Sans-serif;
  font-size:14px;
}

.recon-blog-detail-wrap .recon-blog-content h2,
.recon-blog-detail-wrap .recon-blog-content h3 {
  color: #1f4fa3;
  margin: 24px 0 12px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .recon-blog-detail-wrap .recon-blog-label {
    font-size: 22px;
  }

  .recon-blog-detail-wrap .recon-blog-title {
    font-size: 22px;
  }

  .recon-blog-detail-wrap .recon-container {
    padding: 0 16px;
  }
}

.recon-blog-share {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 16px;
}

.recon-share-label {
  font-weight: 600;
  color: #1f4fa3;
  font-size: 14px;
}

.recon-share-icons {
  display: flex;
  gap: 10px;
}

.share-icon {
  width: 36px;
  height: 36px;
  border: 1px solid #24497F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #24497F;
  transition: all 0.2s ease;
}

.share-icon svg {
  width: 16px;
  height: 16px;
}

.share-icon:hover {
  background: #24497F;
  color: #fff;
  border-color: #24497F;
}

/* Mobile */
@media (max-width: 600px) {
  .recon-blog-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.s-other-blog
{
	margin-top: 100px;
	margin-bottom: 100px;
}
.s-other-blog h2
{
	font-size: 38px;
	color:#24497F;
	font-family: "Area Normal", Sans-serif;
	font-weight:800;
}

.client-logo img
{
	filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.client-logo .swiper-slide:hover img {
    filter: grayscale(0%);
}

.popup-enquiry-form .form-title p
{
	font-size: 22px;
    font-weight: bold;
    border-bottom: 1px solid #24497F;
    padding-bottom: 1rem;
    color: #24497F;
}
.popup-enquiry-form .form-field textarea
{
	height: 80px;
}
.popup-enquiry-form .form-field-btn input
{
	background-color: #24497F;
    color: #ffffff;
    border: 0;
    padding: 10px 46px;
    font-size: 18px;
    font-weight: bold;
}
.popup-enquiry-form .form-field-btn input:hover
{
	background-color:#000000;
}
.contact-form-wrapper .title-wrapper p
{
	font-family: "Area Normal", Sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #000000;
	margin-bottom:50px;
}
.contact-form-wrapper .form-field input,
.contact-form-wrapper .form-field select,
.contact-form-wrapper .form-field textarea
{
	border:0;
	border-bottom:1px solid #93A4AE;
	border-radius:0;
	padding:0;
	padding: 15px 0;
}
.contact-form-wrapper .form-field input:focus,
.contact-form-wrapper .form-field textarea:focus
{
	outline:unset;
}
.cf7mls_next,
.cf7mls .wpcf7-submit
{
	background-color:#24497F !important;
	color:#ffffff !important;
	font-size:18px !important;
	padding:10px 40px !important;
	border:0 !important;
}
.cf7mls_back:hover
{
	background-color:#24497F !important;
	color:#ffffff !important;
}
.contact-form-wrapper .form-field input::placeholder,
.contact-form-wrapper .form-field select
{
	color:#93A4AE;
}
.cf7mls-btns.cf7mls-btns-last-step button
{
	margin-top: -30px !important;
}
.sticky-icon-right {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-icon-right a {
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease;
}

.sticky-icon-right img {
    width: 38px;
    height: auto;
    display: block;
	transition: all 0.3s ease;
}

/* Hover Effect */
.sticky-icon-right a:hover img {
    transform: scale(1.15);
}

/* Optional Glow Effect */
.sticky-icon-right a:hover {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.25));
}



.about-journey{
    position:relative;
    padding:80px 0;
}

.timeline-line{
    position:absolute;
    left:0;
    right:0;
    top:150px;
    height:2px;
    background:#d9d9d9;
    z-index:1;
}

.aboutJourneySwiper{
    overflow:visible;
    position:relative;
    z-index:2;
}

.aboutJourneySwiper .swiper-slide{
    position:relative;
    height:90px;
}

.year{
    font-size:50px;
    font-weight:bold;
    color:#d6d6d6;
    line-height:1;
    transition:.4s;
	font-family: "Area Normal", Sans-serif;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#d6d6d6;
    position:absolute;
    left:0;
    top:64px;
    z-index:5;
    transition:.4s;
}

.swiper-slide-active .year{
    color:#23488d;
    font-size:50px;
}

.swiper-slide-active .dot{
    background:#23488d;
}

.journey-content{
    margin-top:10px;
    max-width:400px;
}

.journey-content h3{
    color:#24497F;
	font-weight:400;
    font-size:20px;
    margin-bottom:10px;
	font-family: "Area Normal", Sans-serif;
}

.journey-content p{
    color:#000000;
    line-height:1.8;
	font-size:16px;
	font-family: "Area Normal", Sans-serif;
}
.journey-container
{
	width:60vw;
}
.industriesSwiper,
.svCategoriesSwiper
{
    position: relative;
    padding-bottom: 10px;
}

.industriesSwiper .swiper-button-prev,
.industriesSwiper .swiper-button-next,
.svCategoriesSwiper .swiper-button-prev,
.svCategoriesSwiper .swiper-button-next 
{
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    color: #222;
    transition: all 0.3s ease;
}

.industriesSwiper .swiper-button-prev:hover,
.industriesSwiper .swiper-button-next:hover, 
.svCategoriesSwiper .swiper-button-prev:hover,
.svCategoriesSwiper .swiper-button-next:hover
{
    background: #222;
    color: #fff;
    border-color: #222;
}

.industriesSwiper .swiper-button-prev:after,
.industriesSwiper .swiper-button-next:after,
.svCategoriesSwiper .swiper-button-prev:after,
.svCategoriesSwiper .swiper-button-next:after
{
    font-size: 16px;
    font-weight: 700;
}

.industriesSwiper .swiper-button-prev,
.svCategoriesSwiper .swiper-button-prev
{
    left: 5px;
}

.industriesSwiper .swiper-button-next,
.svCategoriesSwiper .swiper-button-next
{
    right: 5px;
}
.testimonial-logo-slide {
    cursor: pointer;
    transition: all 0.3s ease;
}

@media(max-width:991px){

    .timeline-line{
        top:85px;
    }

    .year{
        font-size:34px;
    }

    .swiper-slide-active .year{
        font-size:35px;
    }

    .dot{
        top:80px;
    }
}

@media (max-width: 767px) {
	html,body
	{
		overflow-x:hidden;
	}
	br
	{
		display:none;
	}
	.sticky-icon-right {
        right: 10px;
    }
    .sticky-icon-right img {
        width: 45px;
    }
	.journey-container
	{
		width: 100%;
	}
	.about-journey
	{
		padding:0;
	}
	.aboutJourneySwiper .swiper-slide
	{
		height:100px;
	}
	.s-other-blog h2
	{
		font-size:26px;
	}
}