/* ================= HERO WRAPPER ================= */
.hero-content{
	margin-left:15%;
}
.slider {
  transform: translateX(0); /* force first slide */
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background: #152e5c;
}

/* ================= LEFT PANEL ================= */
.hero-left {
  width: 45%;
  background: #152e5c;
  color: #fff;
  padding: 90px 70px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content small {
  letter-spacing: 2px;
  font-size: 13px;
  opacity: 0.85;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 25px 0 35px;
  font-weight: 700;
}

/* ================= BUTTONS ================= */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-buttons a {
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #152e5c;
}

.btn-fill {
  background: #fff;
  color: #152e5c;
}

.btn-fill:hover {
  background: #e8e8e8;
}

/* ================= DIAGONAL OVERLAY ================= */
.hero-diagonal {
  position: absolute;
  top: -60px;
  left: calc(45% - 180px);
  width: 160px;
  height: calc(100% + 120px);
  background: #152e5c;
  transform: skewX(12deg);   /* ✅ forward slant */
  transform-origin: top left;
  z-index: 2;
}

/* ================= RIGHT SLIDER ================= */
.hero-right {
  width: 55%;
  position: relative;
  overflow: hidden;
}

.slider {
  height: 100%;
  display: flex;
  transition: transform 0.7s ease;
}

.slide {
  min-width: 100%;
  background-size: cover;
  background-position: center;
}

/* ================= SLIDER CONTROLS ================= */
.slider-controls {
  position: absolute;
  right: 40px;
  bottom: 28px;
  display: flex;
  gap: 12px;
  z-index: 999;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

/* ================= BOTTOM STRIP ================= */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: #1f7af2;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* ================= TABLET ================= */
@media (max-width: 1199px) {
  .hero-left {
    width: 50%;
    padding: 70px 50px;
  }

  .hero-right {
    width: 50%;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-diagonal {
    left: calc(50% - 40px);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left {
    padding: 50px 25px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-diagonal,
  .hero-bottom {
    display: none;
  }

  .hero-right {
    height: 320px;
  }

  .slider-controls {
    bottom: 15px;
    right: 15px;
  }
}

/* ===== TESTIMONIAL SECTION ===== */
/* SECTION */
.servnt-testimonial {
  background: #1f7af2;
 
  color: #fff;
  overflow: hidden;
}

/* HEADER */
.testimonial-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 60px;
}

.sub-title {
  letter-spacing: 2px;
  font-size: 13px;
  opacity: 0.85;
}

.testimonial-header h2 {
  text-align: center;
  font-size: 42px;
  line-height: 1.2;
}

.testimonial-nav {
  justify-self: end;
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #1f7af2;
  font-size: 18px;
  margin-left: 10px;
  cursor: pointer;
}

/* VIEWPORT */
.testimonial-viewport {
  overflow: hidden;
}

/* TRACK */
.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* ITEM */
.testimonial-item {
  width: 350px;
  flex-shrink: 0;
}

/* NAME ABOVE CARD */
.client-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.client-head img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-head h4 {
  font-size: 15px;
  margin: 0;
}

.client-head span {
  font-size: 13px;
  opacity: 0.8;
}

/* CARD */
.testimonial-box {
  background: #fff;
  color: #444;
  padding: 30px;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* NOTCH */
.testimonial-box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 40px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
}

/* STARS */
.testimonial-box .stars {
  width: 100px;
  margin-bottom: 15px;
}

/* MOBILE */
@media(max-width: 768px) {
  .servnt-testimonial {
    padding: 60px 25px;
  }

  .testimonial-header {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }

  .testimonial-header h2 {
    text-align: left;
  }

  .testimonial-item {
    width: 100%;
  }
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

/* Left text block */
.testimonial-header .header-text {
  max-width: 520px;
}

.testimonial-header .sub-title {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.85;
  display: block;
  margin-bottom: 12px;
}

.testimonial-header h2 {
  font-size: 42px;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

/* Right arrows */
.testimonial-nav {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* Desktop only */
@media (min-width: 1025px) {
  .elementor-swiper-button-prev,
  .elementor-swiper-button-next {
    top: 107% !important;
		
  }

  .elementor-swiper-button-prev {
    left: 78% !important;
  }
	.elementor-swiper-button-next {
		right: 3% !important;
	}
}
/* Mobile only */
@media (max-width: 767px) {
  .elementor-swiper-button-prev,
  .elementor-swiper-button-next {
    top: 107% !important;
  }

  
}


/* MAIN WRAPPER */
.services-wrapper {
    display: grid;
    grid-template-columns: 22% 38% 40%;
    gap: 60px;
    align-items: start;
}

/* COLUMN 1 */
.services-nav {
    list-style: none;
    padding: 0;
}

.services-nav li {
    cursor: pointer;
    padding: 10px 0;
    color: #777;
}

.services-nav li.active {
    color: #1e73ff;
    font-weight: 600;
}

/* COLUMN 2 + 3 WRAPPER */
.services-content {
    grid-column: 2 / 4;
}

/* EACH SERVICE */
.service-panel {
    display: none;
    grid-template-columns: 48% 52%;
    gap: 60px;
}

.service-panel.active {
    display: grid;
}

/* COLUMN 2 */
.service-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
	color: #1A7BF5;
}

.service-text p {
    line-height: 1.7;
}

/* COLUMN 3 */
.service-image img {
    width: 100%;
    border-radius: 24px;
}


/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 1023px) {

    .services-wrapper {
        grid-template-columns: 100%;
        gap: 40px;
    }

    .services-content {
        grid-column: auto;
    }

    .service-panel.active {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ========================= */
/* MOBILE FIX – MULTI ROW */
/* ========================= */
@media (max-width: 767px) {

    /* Main layout */
    .services-wrapper {
        grid-template-columns: 100%;
        gap: 30px;
    }

    /* Service list as grid */
    .services-nav {
        display: grid;
        g
        gap: 12px 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .services-nav li {
        padding: 6px 0;
        text-align: left;
    }

    /* Content stack */
    .service-panel.active {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .service-text h2 {
        font-size: 26px;
    }

    .service-image img {
        border-radius: 16px;
    }
}

.testimonial-header h2{
	font-size:22px !important;
}

.services-group{
    background:#2f7de1;
    color:#fff !important;
    font-weight:600;
    padding:15px !important;
    display:inline-block;
    position:relative;
    margin:20px 0 10px 0;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
	min-width:220px;
	
}

/* small grey cut on right */
.services-group:after{
    content:"";
    position:absolute;
    right:-12px;
    top:0;
    width:12px;
    height:100%;
    background:#e6e6e6;
}

