.hero-header {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-split {
  display: flex;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  
}

.hero-image-side {
  width: 50%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);

  overflow: hidden;
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text-side {
  width: 50%;
  background-color: #fff9f7;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  font-size: 10%;
  display: block;
  align-items: center;
  justify-content: left;
  margin-top: 1.7rem;
  padding: 3rem;
  text-align: left;
}

.hero-title {
  font-size: 2.5rem;
  color: black;
  line-height: 1.5;
}

/* HEADER */
header {
  height: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
}


/* MAIN */
#shape-container {
  position: relative;
  z-index: 1;
  background-color: rgb(255, 255, 255);
  top:-500px;
}

#left-skew,
#right-skew {
  width: 100%;
  height: 350px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}

#left-skew {
  transform: skewY(5deg);
}

#right-skew {
  transform: skewY(-5deg);
}

#main-content {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: 0 3rem;
}



#tagline {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  padding: 5rem 0;
  text-align: center;
  border-bottom: 1px solid #dbdbdb;
}

.tagline-element {
  flex-basis: 22%;
}

.tagline-element a {
  color: #f66;
}

#our-history {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: auto;
  padding-top: 5rem;
}

#history-img-container img {
  display: block;
}

#history-text {
  padding-left: 0;
}

.sections .hero-header {
  position: relative;

  background-color: #fff9f7;
  background-size: cover;
  background-position: right;
  height: 60vh;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.sections .hero-overlay {
  text-align: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.sections .hero-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: font-size 0.4s ease-in-out;
}

.sections .hero-icon i {
  font-size: 2rem;
  background: white;
  color: black;
  border-radius: 50%;
  padding: 0.5rem;
}

.sections .hero-header.scrolled {
  height: 20vh;
  background-position: top;
}

.sections .hero-header.scrolled .hero-title {
  font-size: 8rem;
}


@media (max-width: 768px) {
.sections .hero-title{
  font-size: 1.2rem;
  transition: font-size 0.4s ease-in-out;
  z-index: 1;
  padding-right: 0;
}
}





.service-desc {
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(to bottom right, #fffbe6, #fefefe);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-desc h2 {
  font-size: 2rem;
  color: #1f3c88;
  margin-bottom: 1.5rem;
  text-align: center;
}

details {
  margin-bottom: 1rem;
  border: 1px solid #a8d88f;
  border-radius: 8px;
  background-color: #f9fbff;
  padding: 1rem;
  transition: all 0.3s ease;
}

summary {
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  color: #1f3c88;
  align-items:start;
  padding-left: 0;
  text-align: start;
}

summary i{
    color: #000;
}

.list-include {
  margin-top: 0.5rem;
  padding-left: 5rem;
text-align: left;
}

.list-include li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
  text-align: left;
  list-style:disc;
  font-size: 1.2rem;

}

.list-include li::marker{
    color:#a8d88f;
}





.creative-cards{
    padding: 120px 0;
    position: relative;
}
.creative-cards .containerSteps {
    max-width: 1320px;
    width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto;
 
}

.creative-cards .containerSteps .row .card-column .scroll-sweep {
  opacity: 0;
  transform: translateX(100px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  will-change: transform, opacity;
}

 .creative-cards .containerSteps .row .card-column .scroll-sweep.visible {
  opacity: 1;
  transform: translateX(0);
}





.creative-cards .containerSteps .row{
    display: flex;
    flex-wrap: wrap;
}
.creative-cards .containerSteps .row .card-column {
    flex: 0 0 auto;
    width: 33.33333333%;
    text-align: center;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.card-details {
    width: 80%;
    margin: auto;
    position: relative;
    transition: .3s ease-in-out;
}
.card-details:before {
    content: "";
    width: 190px;
    height: 380px;
    background: #f7f6f2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) skew(-20deg, 0deg);
    z-index: -1;
    transition: .3s ease-in-out;
}
.card-details:hover:before{
    background-color: #fffab3;
}
.card-icons {
    width: 140px;
    height: 150px;
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icons:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid;
    width: 100%;
    height: 100%;
    transform: skew(-20deg, 0deg);
    background: #fff;
    border-color: #ffee02;
    transition: .3s ease-in-out;
}
.card-details:hover .card-icons:before{
    border-color: #ffee02;
    background-color: #ffee02;
}
.card-icons img{
    position: relative;
    width: 70px;
    height: 70px;
}
.card-details h3{
    margin-bottom: 15px;
    margin-top: 50px;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.2;
}
.card-details h3 a{
  color: #000;
  text-decoration: none;
}
.card-details p{
    font-size: 22px;
    line-height: 30px;
    color: #444;
    font-weight: 400;
    margin-bottom: 30px;
}


/* ============= Responsive Ipad ==================== */
@media (max-width: 992px) {
 .creative-cards .containerSteps .row .card-column {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 10px;
    display: grid;
     flex-direction: column;
    align-items: center;
}

}
.read-more-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-radius: 100%;
    margin: auto;
    background: #fff;
    transform: translateX(-10px);
    opacity: 0;
    visibility: hidden;
    border-color: #ffee02;
    transition: .3s ease-in-out;
    text-decoration: none;
}
.read-more-btn i{
    color: #000;
    font-size: 12px;
}
.card-details:hover .read-more-btn{
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* ============= Responsive Iphone ==================== */
@media (max-width: 768px) {

 .creative-cards .containerSteps .row .card-column {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 10px;
    display: block;
    display: grid;
     flex-direction: column;
    align-items: center;
}
.card-details{
    width: 100%;
}
.read-more-btn{
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;

}
}



.custom-service-section {
  padding: 80px 20px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.custom-service-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  text-align: center;
}

.section-title {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  color: #1f3c88;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
}

.custom-request-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  text-align: left;
  color: #000;
  margin-bottom: 2rem;
}

.custom-request-list li::marker {
  color: #A8CFA3; /* pistachio accent */
}

.cta-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background-color: #A8CFA3;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #94b88e;
}

hr{
    display: block;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: auto;
    margin-inline-end: auto;
    color:#fff;
    unicode-bidi: isolate;
    overflow: visible;
    border-style: inset;
    border-width: 1px;
    box-sizing: content-box;
    height: 0;
    line-height: 1.15;
}

/*Animation transition sections*/
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}


.fade-in-stepCards {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-in-stepCards.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-stepCards.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inf-left {
  padding: 0;
  background: linear-gradient(135deg, #A8CFA3, #D9EBD3);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 0 auto;
}

.service-section h2 {
  font-size: 2rem;
  color: #102d75;
}

.service-section p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.benefits-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  color: #333;
}

.benefits-list li {
  display: flex;
  align-items: center;
}

.icon img {
  width: 40px;
  height: 40px;
}

/* Animations */
.bounce img { animation: bounce 1.2s infinite; }
.pulse img  { animation: pulse 1.5s infinite; }
.wiggle img { animation: wiggle 1.5s infinite; }
.float img  { animation: float 2s ease-in-out infinite; }
.glow img   { animation: glow 2s ease-in-out infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 6px #b8ea9f); }
}
