
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

.about-us-section {
  padding: 180px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  font-family: 'Jost', sans-serif;
}

.about-us-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 180px;
  font-family: 'Jost', sans-serif;
}


.about-us-left {
  flex: 1;
  position: relative;
  min-height: 600px;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
}


.main-image {
  position: relative;
  width: 650px;
  height: 700px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: static;
}


.additional-image {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 320px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 3;
  border: 8px solid #ffffff;
}

.additional-img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  position: static;
}


.rotating-circle {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 120px;
  height: 120px;
  background: transparent;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 10s linear infinite;
  z-index: 4;
}

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

.circle-text {
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  animation: counter-rotate 20s linear infinite;
  font-family: 'Jost', sans-serif;
}

@keyframes counter-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.circle-line {
  display: block;
  margin: 2px 0;
}


.about-us-right {
  flex: 1;
  padding-left: 40px;
}

.content-wrapper {
  max-width: 580px;
}


.decorative-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b 0%, #ffa500 100%);
  margin-bottom: 25px;
  border-radius: 2px;
}


.subheader {
  font-size: 14px;
  font-weight: 600;
  color: #1a2f79;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  line-height: 1.4;
  font-family: 'Jost', sans-serif;
}


.main-header {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 30px 0;
  font-family: 'Jost', 'Playfair Display', serif;
}


.text-content {
  margin-bottom: 40px;
}

.description-text {
  font-size: 19px;
  line-height: 1.7;
  color: #666666;
  margin: 0 0 20px 0;
  font-weight: 400;
  font-family: 'Jost', sans-serif;
}

.description-text:last-child {
  margin-bottom: 0;
}


.cta-wrapper {
  margin-top: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 35px;
  background: transparent;
  border: 2px solid #1a2f79;
  color: #1a2f79;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  font-family: 'Jost', sans-serif;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1a2f79;
  transition: left 0.4s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 47, 121, 0.3);
}

.button-text {
  transition: transform 0.3s ease;
}

.button-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
  transform: translateX(5px);
}


@media (max-width: 1200px) {
  .about-us-container {
    gap: 100px;
  }
  
  .main-image {
    width: 400px;
    height: 450px;
  }
  
  .additional-image {
    width: 250px;
    height: 280px;
    right: -60px;
  }
}

@media (max-width: 1024px) {
  .about-us-container {
    flex-direction: column;
    gap: 80px;
    text-align: center;
  }
  
  .about-us-left {
    order: 2;
  }
  
  .about-us-right {
    order: 1;
    padding-left: 0;
  }
  
  .content-wrapper {
    max-width: 100%;
  }
  
  .main-header {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .about-us-section {
    padding: 80px 0;
  }
  
  .about-us-container {
    gap: 60px;
    padding: 0 15px;
  }
  
  .main-image {
    width: 320px;
    height: 360px;
    margin: 0 auto;
  }
  
  .additional-image {
    width: 200px;
    height: 220px;
    right: -40px;
    top: -30px;
  }
  
  .rotating-circle {
    width: 120px;
    height: 120px;
    left: -20px;
    bottom: -20px;
  }
  
  .circle-text {
    font-size: 8px;
  }
  
  .main-header {
    font-size: 36px;
  }
  
  .description-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-us-section {
    padding: 60px 0;
    padding-bottom: 0 !important;
    margin-bottom: -35% !important;
  }.decorative-line{
        justify-self: center !important;
  }
  
  .main-image {
    width: 280px;
    height: 320px;
  }
  
  .additional-image {
    width: 160px;
    height: 180px;
    right: -20px;
    top: -20px;
  }
  
  .rotating-circle {
    width: 100px;
    height: 100px;
    left: -15px;
    bottom: -15px;
  }
  
  .main-header {
    font-size: 28px;
  }
  
  .cta-button {
    padding: 15px 25px;
    font-size: 12px;
  }
}

