* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

.degrees-hero {
  padding: 100px 5% 140px;
  position: relative;
  overflow: visible;
  opacity: 0;
  transform: translateY(40px);   
  animation: appearSlow 1.6s ease-out forwards;
}

@keyframes appearSlow {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.degrees-hero.visible .container {
  opacity: 1;
  transform: translateY(0);
}

.images-column {
  position: relative;
  height: 520px;
  min-height: 480px;
}

.images-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.photo {
  position: absolute;
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
  object-fit: cover;
  background: #fff;
}

.photo-1 {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
  z-index: 1;
}

.photo-2 {
  top: 38%;
  left: 48%;
  transform: translateX(-50%) rotate(4deg);
  z-index: 3;
}

.photo-3 {
  bottom: 5%;
  right: 0;
  left:200;

  transform: rotate(7deg);
  z-index: 2;
}

.decorative-circle {
  position: absolute;
  inset: -10% -10% -10% -10%;
  width: 120%;
  height: 120%;
  z-index: 0;
  opacity: 0.7;
}

.text-column h2 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.text-column p {
  font-size: 1.18rem;
  color: #475569;
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.check-list {
  list-style: none;
  margin: 2rem 0 2.5rem;
}

.check-list li {
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
  padding-left: 2.2rem;
  position: relative;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f373c5;
  font-size: 1.4rem;
  line-height: 1;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: #f373c5;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37,99,235,0.2);
}

.btn:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37,99,235,0.3);
}


.c-text{
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    font-size: 2.3rem;
}

.services-section {
  padding: 80px 5%;
  background: #f8f9fb;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Base box styling */
.service-box {
  min-height: 180px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  padding-left: 32px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.1s ease;
}

.service-box h2 {
  color: rgb(87, 86, 86);
  font-size: 18px;
  font-weight: 615;
  margin: 0 auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Individual box colors */
.service-one {
  background: linear-gradient(135deg, #FFFAFA, #FFFAFA);
  border-radius: 19px;
  box-shadow: 1px 1px 1px 1px #cacaca;

  
  
}

.service-two {
  background: linear-gradient(135deg, #FFFAFA, #FFFAFA);
  border-radius: 19px;
  box-shadow: 1px 1px 1px 1px #cacaca;

  }

.service-three {
 background: linear-gradient(135deg, #FFFAFA, #FFFAFA);
  border-radius: 19px;
  box-shadow: 1px 1px 1px 1px #cacaca;

  }

.service-four {
 background: linear-gradient(135deg, #FFFAFA, #FFFAFA);
  border-radius: 19px;
  box-shadow: 1px 1px 1px 1px #cacaca;

  }

.service-five {
  background: linear-gradient(135deg, #FFFAFA, #FFFAFA);
  border-radius: 19px;
  box-shadow: 1px 1px 1px 1px #cacaca;

  }

.service-six {
  background: linear-gradient(135deg, #FFFAFA, #FFFAFA);
  border-radius: 19px;
  box-shadow: 1px 1px 1px 1px #cacaca;

  }

/* Animation active */
.service-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 900px) {
  .services-wrapper {
    grid-template-columns: 1fr;
  }

  .service-box {
    padding-left: 24px;
  }

  .service-box h2 {
    font-size: 22px;
  }
}



@media (max-width: 920px) {
  .container {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .images-column {
    height: auto;
    min-height: 680px;    
    max-width: 420px;
    margin: 0 auto;
  }

  .photo {
    position: relative;         
    max-width: 340px;
    margin: 0 auto 40px auto;   
    left: auto !important;
    top: auto !important;
    transform: none !important;
    rotate: 0deg !important;
    display: block;
  }

  .photo:last-child {
    margin-bottom: 0;
  }

  .images-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .decorative-circle {
    opacity: 0.4;
    inset: -5% -15% -15% -10%; 
    width:120%;
    height:120%;
}





  .text-column {
    text-align: center;
  }

  .text-column p,
  .check-list {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .degrees-hero {
    padding: 70px 5% 100px;
  }

  .images-column {
    min-height: 620px;
  }

  .photo {
    max-width: 300px;
    margin-bottom: 50px;
  }

  .service-box h2 {
  color: rgb(87, 86, 86);
  font-size: 17px;
  font-weight: 615;
  margin: 0 auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

}