/* home banner */
/* COLORS */
:root {
	--blue: #0b3d91;
	--orange: #e67e22;
}

/* HERO CONTAINER */
.hero-slider {
	position: relative;
	width: 100%;
	height: 90vh;
	overflow: hidden;
}

/* SLIDES */
.hero-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
	z-index: 2;
}

/* IMAGE */
.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* DARK OVERLAY */
.hero-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to right,
		rgba(0,0,0,0.6),
		rgba(0,0,0,0.3)
	);
	z-index: 1;
}

/* CONTENT */
.hero-content {
	position: absolute;
	top: 50%;
	left: 8%;
	transform: translateY(-50%);
	max-width: 600px;
	z-index: 3;
}

/* TITLE */
.hero-content h1 {
	font-size: clamp(32px, 5vw, 60px);
	line-height: 1.2;
	color: #fff;
	font-weight: 800;
	margin-bottom: 20px;
	text-shadow: 0 5px 20px rgba(0,0,0,0.7);
}

/* SECOND LINE */
.hero-content h1 span {
	display: block;
	color: var(--orange);
	margin-top: 10px;
}

/* TEXT */
.hero-content p {
	font-size: clamp(14px, 2vw, 18px);
	line-height: 1.6;
	color: #2e397e;
	margin-bottom: 25px;

	background: rgba(255,255,255,0.08);
	backdrop-filter: blur(10px);
	padding: 12px 16px;
	border-radius: 8px;
}

/* BUTTON */
.hero-btn {
	display: inline-block;
	padding: 12px 24px;
	background: var(--blue);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	border-radius: 6px;
	transition: 0.3s;
}

.hero-btn:hover {
	background: var(--orange);
	transform: translateY(-2px);
}
#contact-info li img {
  width: 60px !important;
  height: 60px !important;
  object-fit: contain;
  flex-shrink: 0;
}
#featured .img-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#featured .img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* MOBILE */
@media (max-width: 768px) {

	.hero-slider {
		height: 80vh;
	}

	.hero-content {
		left: 5%;
		right: 5%;
		max-width: 100%;
	}

	.hero-content h1 {
		font-size: 28px;
	}

}

/* ============================
   FAQ SECTION - PURE HTML/CSS
============================ */

#faq-section {
  padding: 90px 0;
  background: #f7f7f7;
}

#faq-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

#faq-section .section-title h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f3a5f;
  text-transform: uppercase;
}

.faq-accordion {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(31, 58, 95, 0.08);
  border: 1px solid rgba(31, 58, 95, 0.08);
}

.faq-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.faq-question {
  position: relative;
  display: block;
  margin: 0;
  padding: 24px 70px 24px 26px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #1f3a5f;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}

.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #f28c38;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease;
  padding: 0 26px;
  background: #fff;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #5b6472;
}

/* Open state */
.faq-item input:checked + .faq-question {
  color: #ffffff;
  background: linear-gradient(135deg, #1f3a5f 0%, #274b79 100%);
}

.faq-item input:checked + .faq-question::before,
.faq-item input:checked + .faq-question::after {
  background: #ffffff;
}

.faq-item input:checked + .faq-question::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item input:checked + .faq-question + .faq-answer {
  max-height: 220px;
  padding: 20px 26px 0;
}

/* Hover */
.faq-question:hover {
  color: #f28c38;
}

/* Responsive */
@media (max-width: 991px) {
  #faq-section {
    padding: 70px 0;
  }

  #faq-section .section-title h1 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 17px;
    padding: 20px 62px 20px 22px;
  }

  .faq-answer {
    padding: 0 22px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.75;
    padding-bottom: 22px;
  }
}

@media (max-width: 767px) {
  #faq-section .section-title h1 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
    line-height: 1.45;
    padding: 18px 54px 18px 18px;
  }

  .faq-question::before,
  .faq-question::after {
    right: 20px;
    width: 12px;
  }

  .faq-item input:checked + .faq-question + .faq-answer {
    max-height: 260px;
    padding: 16px 18px 0;
  }

  .faq-answer {
    padding: 0 18px;
  }
}

/* ============================= */
/* 🔥 INFINITE SERVICES MARQUEE */
/* ============================= */

#clients {
  background: #1f3a5f;
  padding: 20px 0;
  overflow: hidden;
}

/* contenedor */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* track animado */
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

/* links */
.marquee-track a {
  color: #ff8a1f;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* hover */
.marquee-track a:hover {
  color: #ffffff;
  transform: scale(1.05);
}

/* animación derecha → izquierda */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* pausa al hover (PRO UX) */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}
.banner-btn{
  color: white !important;
}
.banner-description {
    
    font-size: 16px;
    line-height: 1.7;

    /* GLASS BACKGROUND */
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* PADDING + SHAPE */
    padding: 12px 18px !important;
    border-radius: 10px;

    /* GLASS BORDER */
    border: 1px solid rgba(255, 255, 255, 0.25);

    /* DEPTH SHADOW */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

    /* TEXT SHADOW (KEY FOR CONTRAST) */
    text-shadow:
        0 2px 6px rgba(0,0,0,0.2),
        0 0 10px rgba(0,0,0,0.1);

    /* SMOOTH */
    transition: all 0.3s ease;
}
/* responsive */
@media (max-width: 768px) {
  .marquee-track {
    gap: 40px;
  }

  .marquee-track a {
    font-size: 14px;
  }

  .header-v4 .container .header-v4-top{
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
  }

  header.header-v4 .col-lg-9 ul li:nth-child(1),
  header.header-v4 .col-lg-9 ul li:nth-child(2) {
    display: none;
  }
}
.services-rotator__box {
  width: 320px;
}


.social .services-rotator__box a:hover,
.widget .services-rotator__box a:hover {
    color: #FFFF !important;
}

.banner-title-text h1{
	color: #ffffff; /* base white for contrast */
	text-shadow:
		0 2px 10px rgba(0,0,0,0.2),
		0 4px 25px rgba(0,0,0,0.1);
}

.banner-title-text h1 span{
	color: #ff7a00; /* your orange accent */
	text-shadow:
		0 2px 8px rgba(0,0,0,0.6);
}

.banner-title-text p{
	display: inline-block;
	padding: 14px 22px;
	border-radius: 12px;

	background: rgba(255, 255, 255, 0.5); /* subtle blue glass */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

	border: 1px solid rgba(196, 192, 192, 0.15);

	text-shadow: 0 2px 8px rgba(0,0,0,0.6);

	box-shadow: 
		0 8px 30px rgba(0,0,0,0.25),
		inset 0 1px 0 rgba(255,255,255,0.1);
}

/*responsive*/


@media (max-width: 1024px) {
  h1 { font-size: 42px !important; line-height: 46px !important; }
  h2 { font-size: 32px !important; margin-bottom: 16px ; }
  h3 { font-size: 26px !important; margin-bottom: 14px ; }
  h4 { font-size: 20px !important; margin-bottom: 12px ; }
  h5 { font-size: 17px !important; margin-bottom: 10px ; }
  p  { font-size: 15px !important; margin-bottom: 14px ; }

#testimonials .single-testimonial .profile-info h2 {
    font-size: 20px !important;
    line-height: 26px;
    color: #312F3E;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    margin-top: -10px;
}
.single-member .info h2 {
    margin: 0;
    font-size: 14px !important;
    line-height: 22px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

#emergency .col-lg-3 {
  display: none !important;
    position: absolute;
    bottom: 0px;
}
#featured .content-wrap h2 {
    font-size: 17px !important;
    line-height: 26px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 10px;
}
#blog-post .sidebar-widget h4 {
    font-size: 16px !important;
    line-height: 18px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 1px !important; 
    border-bottom: 1px solid #E2E2E2;
    padding-bottom: 9px;
    position: relative;
}

header .container .row{
  display:  flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
}

    .col-md-offset-4{
      margin-left: 0 !important;
    }
}

.banner-description {
	font-size: clamp(14px, 2.5vw, 16px);
	line-height: 1.7;
	max-width: 520px;
	margin-top: 15px;

	background: rgba(255,255,255,0.08);
	backdrop-filter: blur(10px);

	padding: 12px 16px;
	border-radius: 8px;

	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}


@media (max-width: 768px) {
  h1 { font-size: 36px !important; margin-bottom: 16px !important; }
  h2 { font-size: 28px !important; margin-bottom: 14px !important; }
  h3 { font-size: 24px !important; margin-bottom: 12px !important; }
  h4 { font-size: 18px !important; margin-bottom: 10px !important; }
  h5 { font-size: 16px !important; margin-bottom: 10px !important; }
  p  { font-size: 14px !important; margin-bottom: 12px !important; }

#testimonials .single-testimonial .profile-info h2 {
    font-size: 19px !important;
    line-height: 26px;
    color: #312F3E;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    margin-top: -10px;
}
    #emergency.service-page {
    background-color: #FFF;
    padding-top: 20px;
    margin-top: -75px;

    background-position: left 20px!important;
  }

  a, a:hover, a:active, a:focus {
    font-size: 15px !important;
    text-decoration: none;
    outline: none;
}

#our-specialist .single-member img{
  height: 490px;
}

#topbar .container .row{
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow:  hidden !important;
}

.services-rotator{
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;
}

#blog-post article .post-date{
  overflow: hidden;
}

.img-container{
  flex-direction: row;
}

.img-box{
  flex-basis: calc(50% - 10px);
}

header .container .row{
  display: block !important;
}

}

@media (max-width: 426px) {
  h1 { font-size: 28px !important; margin-bottom: 14px !important; }
  h2 { font-size: 24px !important; margin-bottom: 12px !important; }
  h3 { font-size: 20px !important; margin-bottom: 10px !important; }
  h4 { font-size: 17px !important; margin-bottom: 10px !important; }
  h5 { font-size: 15px !important; margin-bottom: 8px !important; }
  p  { font-size: 14px !important; margin-bottom: 12px !important; }
  header.header-v4 .col-lg-9 ul{
    display: none;
  }

  #service-we-provide{
    padding: 0;
  }
  
    #emergency.service-page {
    background-color: #FFF;
    padding-top: 110px;
    margin-top: -75px;

    background-position: left 20px!important;
  }
  .hero-slider {
		height: 58vh;
	}

  .hero-content h1{
    line-height: 1.2 !important;
  }

  #emergency.service-page{
    padding-top: 35px;
  }

 .contact-info.pull-right{
    display: none !important;
 }

 .services-rotator__wrapper{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
 }

 .services-rotator__wrapper b{
  flex-basis: 25%;
 }

 .services-rotator__box{
  flex-basis: 75%;
 }

 .img-container{
  flex-direction: column;
 }
}

@media (max-width: 376px) {
  h1 { font-size: 26px !important; margin-bottom: 12px !important; }
  h2 { font-size: 22px !important; margin-bottom: 10px !important; }
  h3 { font-size: 18px !important; margin-bottom: 10px !important; }
  h4 { font-size: 16px !important; margin-bottom: 8px !important; }
  h5 { font-size: 14px !important; margin-bottom: 8px !important; }
  p  { font-size: 13px !important; margin-bottom: 10px !important; }

  #our-specialist .single-member img{
    height: 430px;
  }

  #testimonials .single-testimonial .profile-info img{
    height: 130px;
  }

  #emergency p.phone-contact b{
    font-size: 25px !important;
    }
}


@media (max-width: 320px) {
  h1 { font-size: 22px !important; margin-bottom: 10px !important; }
  h2 { font-size: 20px !important; margin-bottom: 10px !important; }
  h3 { font-size: 16px !important; margin-bottom: 8px !important; }
  h4 { font-size: 14px !important; margin-bottom: 8px !important; }
  h5 { font-size: 13px !important; margin-bottom: 6px !important; }
  p  { font-size: 12px !important; margin-bottom: 8px !important; }
  a, a:hover, a:active, a:focus {
    font-size: 13px !important;
    text-decoration: none;
    outline: none;
}

#who-we-are .large-box .col-lg-6 img{
  height: 300px;
}

#our-specialist .single-member img{
  height: 360px;
}

    #testimonials .single-testimonial .profile-info img {
    height: 120px;
    }

    #emergency.service-page{
    padding-bottom: 15px;
    }

    #emergency p.phone-contact b{
    font-size: 20px !important;
    }


}
