/*
Theme Name: Astra Child
Theme URI: https://yourwebsite.com/
Description: Child theme for Astra.
Author: Your Name
Author URI: https://techocupar.com/demo/elevator/
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
*/

/* Custom styles can be added below */
a{
   text-decoration: none !important;
}
a.blog-title.nav-link {
    text-decoration: none;
}

a.blog-title.nav-link:hover {
	color:red;
    text-decoration: none;
}
.ast-site-identity {
    padding: 0 !important;
}

.site-header {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.header-top {
    background: #0177e3;
    color: #fff;
    padding: 15px;
}

#page .site-content {
    flex-grow: 1;
    margin-top: 87px;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #010f1c;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.5s ease;
}

.spinner {
  width: 120px;
  height: 120px;
  border: 4px solid #444;
  border-top: 6px solid #0177e3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 30px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.txt-loading {
  display: flex;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 0 10px #0177e3;
  justify-content: center;
  flex-wrap: wrap;
}

.letters-loading {
  position: relative;
  color: #0177e3;
  margin: 0 4px;
  font-size: 2em;
}

/* Responsive font sizes */
@media (max-width: 768px) {
  .txt-loading {
    font-size: 2em;
  }

  .letters-loading {
    font-size: 1.5em;
  }

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

@media (max-width: 480px) {
  .txt-loading {
    font-size: 1.5em;
  }

  .letters-loading {
    font-size: 1.2em;
  }

  .preloader p {
    font-size: 13px;
  }
}

.letters-loading::before {
  content: attr(data-text-preloader);
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transform: rotateY(-90deg);
  animation: letter-animate 2s infinite;
  color: #fff;
}

.letters-loading:nth-child(1)::before { animation-delay: 0.1s; }
.letters-loading:nth-child(2)::before { animation-delay: 0.2s; }
.letters-loading:nth-child(3)::before { animation-delay: 0.3s; }
.letters-loading:nth-child(4)::before { animation-delay: 0.4s; }
.letters-loading:nth-child(5)::before { animation-delay: 0.5s; }
.letters-loading:nth-child(6)::before { animation-delay: 0.6s; }
.letters-loading:nth-child(7)::before { animation-delay: 0.7s; }

@keyframes letter-animate {
  0%, 75% {
    transform: rotateY(-90deg);
    opacity: 0;
  }
  25%, 50% {
    transform: rotateY(0);
    opacity: 1;
  }
}

.preloader p {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
  text-align: center;
  animation: fadeInText 1.5s ease-in-out infinite alternate;
}

@keyframes fadeInText {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Main content for testing */
.content {
  display: none;
  padding: 100px 20px;
  text-align: center;
}

.content h1 {
  color: #0177e3;
}


/* breadcrumb */
h1.subbanner-title {
    font-size: 80px;
    opacity: 0.3;
}

/* navbar */
.ul.sub-menu {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 20rem !important;
}


.slide_bottom { text-align: center;}
.slide_bottom p {
    color: #000000ff;
    font-size: 40px;
}.slide_bottom {
    text-align: center;
    margin: 70px 0 0;
}.qua_policy {
    text-align: center;
    color: #000000ff;
}
span.title {
    font-size: 65px;
    font-weight: 500;
    background: #000000ff;
    padding: 1px 21px;
}
.sub-menu li.menu-item:hover {
    background: #0177e3 !important;
}
.sub-menu a.menu-link:hover {
    color: #ffffffff !important;
}
/* carousel */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* Image styling */
.home-img {
  height: 100vh;
  object-fit: cover;
  width: 100%;
  animation: kenburns 8s ease-in-out forwards;
}

/* Ken Burns zoom effect */
@keyframes kenburns {
  0% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Caption positioning */
.carousel-caption {
  position: absolute;
  right: 15%;
  left: 15%;
  bottom: 1.25rem !important;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Caption background box */
.banner-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px 40px;
  border-radius: 12px;
  display: inline-block;
  text-align: center;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 90%;
}

/* Text styling */
.banner-text {
  color: #fff;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  line-height: 1.2;
}

.banner-box h2 {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.banner-box h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-subtext {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease 0.3s;
}

/* Button styling */
.btn-primary {
  background-color: #0177e3;
  border-color: #0177e3;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease 0.6s;
}

.btn-primary:hover {
  background-color: #0168c9;
  border-color: #0168c9;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animate when active */
.carousel-item.active .banner-text,
.carousel-item.active .banner-subtext,
.carousel-item.active .btn-primary {
  opacity: 1;
  transform: translateY(0);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

/* Carousel indicators */
.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
}

.carousel-indicators button.active {
  background-color: #0177e3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-caption {
    width: 90%;
    padding: 10px;
  }
  
  .banner-box {
    padding: 20px;
    max-width: 95%;
  }
  
  .banner-box h2 {
    font-size: 1rem;
  }
  
  .banner-box h1 {
    font-size: 1.4rem;
  }
  
  .banner-subtext {
    font-size: 0.9rem;
  }
  
  .btn-primary {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

/* Tablet screens */
@media (min-width: 576px) {
  .banner-box h2 {
    font-size: 1.5rem;
    letter-spacing: 1.5px;
  }
  
  .banner-box h1 {
    font-size: 2.2rem;
  }
  
  .banner-subtext {
    font-size: 1.1rem;
  }
}

/* Medium desktops */
@media (min-width: 768px) {
  .banner-box h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  
  .banner-box h1 {
    font-size: 2.8rem;
  }
  
  .banner-subtext {
    font-size: 1.2rem;
  }
}

/* Large desktops */
@media (min-width: 1200px) {
  .banner-box h2 {
    font-size: 2rem;
  }
  
  .banner-box h1 {
    font-size: 3.2rem;
  }
  
  .banner-subtext {
    font-size: 1.3rem;
  }
}


strong.gallery-link {
    color: #0177e3 !important;
    text-decoration: none;
}
.ast-single-post .entry-content a, .ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
    text-decoration: none;
}


.wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus {
    color: #fff !important;
    background-color: #28246c;
    border-color: #28246c;
}


/* blog  */
a.blog-title.nav-link {
    text-decoration: none;
}

a.blog-title.nav-link:hover {
	color:red;
    text-decoration: none;
}
.blog-images {
    position: relative;
    overflow: hidden; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
}

.blog-images img {
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.blog-images:hover img {
    transform: scale(1.1);
}
.entry-meta * {
    line-height: 1.45;
    color: #fbfbfb4d;
    font-weight: 600;
}
.rpwwt-post-date {
    color: #fbfbfb4d;
    font-size: 12px;
}



/* contact us */
a.contact-link {
    color: #000;
}

a.contact-link:hover {
    color: #0177e3;
}
.contact-icon {
    background: #fff;
    color: #0177e3;
    padding: 25px 20px;
    line-height: 0.6;
    border-radius: 7px;
    font-size: 30px;
}

.contact-details {
    display: flex;
    align-items: start;
    gap: 15px;
    border-bottom: 1px solid #4F5B62;
    padding-bottom: 20px;
}

/* footer */
a.footer-link {
    color: #ffffff !important;
}
a.footer-link:hover {
  text-decoration: none;
	border-bottom :1px solid #fff;
}

.site-logo-img img {
    filter: none;
    transition: all 0.2slinear;
}


img.thumbnail.thumbnail_54.pfg-img.pfg_img_54.img-responsive.hvr-grow-shadow {
    height: 10rem !important;
}
.ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item:hover > .ast-menu-toggle{
	color:#0177e3;
}

.filter_gallery_54.row.filtr-container.filters-div {
    margin-top: 40px;
}


/* contact */
.contact-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-text-area {
    width: 100%;
    height: 100px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.submit-btn:hover {
    background: #28246c !important;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.submit-btn:focus {
    background: #28246c !important;
}
.contact-form {
    border: 1px solid #4F5B62;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
}
.contact-label {
    display: block;
    font-weight: bold;
    color: black !important; 
    margin-bottom: 5px;
}
.astra-dark-mode-enable label {
    color: #020202;
}
.contact-input, .contact-text {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

.contact-text {
    height: 120px;
    resize: vertical;
    font-size: 16px;
}

/* career */
.career-title {
    font-size: 40px;
		text-transform:uppercase;
    font-weight: bold;
    color: #fff;
    text-align: center;
		padding:12px;
		background: #0177e3;
}

.career-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
	padding: 0 20px
}

.career-column {
    flex: 1;
    min-width: 300px;
}

.career-label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.career-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.career-input::placeholder {
    color: #888;
}

.resume-upload {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: none;
}

.career-btn {
    display: block;
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.career-btn:hover {
    background-color: #28246c !important;
}

.career-btn:focus {
    background-color: #28246c !important;
}
div#wpcf7-f1542-p1510-o1 {
    border: 1px solid #4F5B62;
    border-radius:10px;
    overflow:hidden;
}

.wpcf7 input.wpcf7-form-control:not([type=submit]), .wpcf7 textarea.wpcf7-form-control {
    padding: 30px 16px;
}




.wp-block-group.is-layout-constrained.wp-block-group-is-layout-constrained {
    overflow: hidden;
}


.wp-block-image {
  overflow: hidden; 
  display: inline-block;
}

.image-zoom {
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  display: block; 
}

.image-zoom:hover {
  transform: scale(1.1);
}


.popup-toggle {
  display: none;
}

.image-container {
  position: relative;
  display: inline-block;
  overflow: hidden; 
}

.image-container img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}


.image-container:hover img {
  transform: scale(1.2);
}


/* card */
.card {
    border: 1px solid #ffffff70;
    border-radius: 5px;
    height: 100%;
}

.card-img-top {
    min-width: 21rem;
    max-height: 14rem;
}
.card:hover {
    box-shadow: 0 4px 16px rgb(0 0 0 / 21%);
}



/* Gallery Layout */
.gallery-container .col-12.col-md-6.col-lg-3 {
    min-height: 250px;
    max-height: 300px;
}
.gallery-container {
	/* display: flex; */
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
    border-radius: 10px;
}
.gallery-container a {
    display: block;
    overflow: hidden; 
}
.gallery-container img {
    width: 100%;
    height: 28rem;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery-container a:hover img {
    transform: scale(1.1);
}

/* Full-Screen Zoom */
.zoom-in {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center !important;
    align-items: center;
    z-index: 99999;
    overflow: hidden; 
}
.zoom-in:target {
    display: flex;
}

/* whatapp chat */
.whatsapp-pulse {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
  transition: background-color 0.3s ease;
}

.whatsapp-pulse img {
  width: 30px;
  height: 30px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-pulse:hover {
  background-color: #128c7e;
}


.zoom-in-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.zoom-in-content img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid #fff;
}

/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    padding: 15px;
}
.prev { left: 20px; }
.next { right: 20px; }


/* services */
.table thead th {
        background-color: #e9ecef !important; 
        color: #000;
    }

    table tbody td {
        background-color: #fff !important; 
    }



@media (min-width:300px) and (max-width:767px){
	span.title {
    font-size: 28px;
    font-weight: 500;
    background: #fff;
    padding: 1px 21px;
}
    .sub-menu{
        background:#0177E3;
    }
}

.zoom-img {
  transition: transform 0.4s ease;
}

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




/* gallery slider  */
   .slider-container {
      overflow: hidden;
      padding: 20px;
      box-sizing: border-box;
      max-width: 100%;
    }

    .slider-track {
      display: inline-flex;
      animation: scroll 30s linear infinite;
    }

    .slider-track img {
      height: 300px;
      margin-right: 20px;
      border-radius: 10px;
      transition: transform 0.4s ease;
      cursor: pointer;
    }

    .slider-track img:last-child {
      margin-right: 0;
    }

    /* Zoom on hover */
    .slider-track img.gallery-img-zoom:hover {
      transform: scale(1.1);
      z-index: 2;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }


@media (min-width:300px) and (max-width:767px){
	h1.subbanner-title {
			font-size: 35px;
			opacity: 0.3;
	}
}



/* service  */
.service-card {
    perspective: 1000px !important;
    height: 100% !important;
    border: 1px solid #0000002b !important;
}
.service-card:hover {
    border:1px solid #0177e3 !important;
    box-shadow: 0 4px 16px rgb(0 0 0 / 21%) !important;
}

.img-flip {
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.service-card:hover{
	box-shadow : 0 4px 16px rgb(255 255 255 / 20%);
}

.service-card:hover .img-flip {
  transform: rotateY(180deg);
}

.img-flip img,
.flip-back {
  backface-visibility: hidden;
  border-radius: 10px;
  object-fit: cover;
}

.flip-back {
  position: absolute;
  top: 0;
  left: 0;
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
}




/* form response */
.wpcf7-response-output {
    color: #000;
    text-align: center;
    font-size: 15px;
}


/* widget  */
.ast-separate-container.ast-two-container #secondary .widget {
    padding: 1rem;
    margin-bottom: 0;
}


/* whatsapp widget */
.whatsapp-pulse{
	z-index: 100 !important;
}

/* gallery filter */
li.filtr-controls-2326 {
    background: none !important;
    border: 1px solid #4F5B62;
}

.fa{
	font-weight:500;
}
.list-type-none {
  list-style: none;  
  padding-left: 0 !important; 
  margin: 0;     
	color:#000;
	display:flex;
	flex-direction:column;
	gap:10px;
}

/* form */
/* input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.contact-input {
    border: 1px solid #0000003b;
}


input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-required.wpcf7-validates-as-number.contact-input {
    border: 1px solid #0000003b;
} */



.entry-meta *{
    line-height: 1.45;
    color: #0177e3;
    font-weight: 600;
}

.post-content>.read-more a{
    color:#000 !important; 
}

.post-content>.read-more a:hover{
    color:#0177e3 !important; 
}

.sidebar-main {
    border: 1px solid #00000038;
}

span.rpwwt-post-title {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

span.rpwwt-post-title:hover {
    color: #0177e3;
}


.single .post-navigation a p{
    color:#000;
}

span.ast-post-nav{
    color:#000;
}

.single .post-navigation a p:hover {
    color: #0177e3;
}

span.ast-post-nav:hover{
    color: #0177e3;
}

.wpcf7 input.wpcf7-form-control:not([type=submit]):focus{
    border: 1px solid #0177e3 !important;
}

.wpcf7 textarea.wpcf7-form-control:focus {
    border: 1px solid #0177e3 !important;
}


.subbanner-img img {
    height: 43rem !important;
    /* object-fit: cover; */
}


/* career page */
/* Accordion Wrapper */
.job-accordion {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.job-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #0177e3;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}

.job-toggle:hover {
    background: #0177e3 !important;
}

.job-toggle:focus {
    background: #0177e3 !important;
}

.job-toggle[aria-expanded="true"] {
  background: #0177e3;
}

.job-icon {
  transition: transform 0.2s ease;
}

/* .job-toggle[aria-expanded="true"] .job-icon {
  transform: rotate(45deg);
}  */

.job-panel {
  padding: 16px;
  border-top: 1px solid #e5e7eb;
}

.job-panel[hidden] {
  display: none;
}

.job-panel h4 {
  margin: 14px 0 6px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
}

.job-panel p,
.job-panel li {
  font-size: 15px;
  line-height: 1.6;
}

/* button:hover{
	color: #ffff !important;
    background-color: #000 !important;
}
button:focus{
	color: #ffff !important;
    background-color: #000 !important;
} */


.ast-above-header-bar.ast-above-header.site-header-focus-item {
    border-bottom: 1px solid #49505740;
    background:#0177e3;
    color:#fff;
}


/* .ast-theme-transparent-header .ast-builder-menu .main-header-menu .menu-item .sub-menu .menu-link, .ast-theme-transparent-header .main-header-menu .menu-item .sub-menu .menu-link {
    background-color: #0177e3 !important ;
} */
 


.copyright{
  color: #fff !important;
}
.copyright:hover{
  color: #28246c !important;
}

.simplefilter_2326 li{
  color:#000 !important
}

.top-link{
  color:#fff !important;
}

.top-link:hover{
  color:#28246c !important;
}