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


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #1d1d1d;
  line-height: 1.5;
}


.header {
    position: relative;
    height: 90vh;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.header-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: #d0d0d0;
    border-bottom: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 40px;
}

.logo-text {
    font-weight: 900;
    font-size: 2rem;
    background: linear-gradient(90deg, #b08d57, #4b3b2a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}


header {
    padding-top: 80px;
}

.nav {
    margin-left: auto;
}

.nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.nav ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #b08d57;
    transition: width 0.3s;
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
    width: 100%;
}

.nav ul li a:hover {
    color: #b08d57;
}

.burger {
  width: 32px;
  height: 26px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 400;
}

.burger span {
  width: 100%;
  height: 4px;
  background: #b58b55;
  border-radius: 4px;
  transition: 0.3s;
}

.burger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.nav ul {
  transition: 0.3s ease;
  z-index: 2000 !important;
}

.header-text {
    position: relative;
    max-width: 600px;
    margin-left: 10%;
    padding: 120px 0 40px 0;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    text-align: left;
    color: #222;
}

.header-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: #2a1f16;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.header-text p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
    line-height: 1.8;
    color: #333;
    letter-spacing: 0.5px;
    text-shadow: 0.5px 0.5px 3px rgba(0,0,0,0.1);
}

.contact-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #805c3a;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(128, 92, 58, 0.6);
    transition: all 0.3s;
    text-decoration: none;
}

.contact-btn:hover {
    background: #603f2b;
    box-shadow: 0 9px 24px rgba(96, 63, 43, 0.6);
    transform: translateY(-2px);
}


section.about {
    padding: 200px 0 120px;
    background: #f4f4f4;
    color: #1d1d1d;
}

section.about .about-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    color: #2a1f16;
    margin-bottom: 60px;
    position: relative;
}

section.about .about-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #b08d57;
    margin: 15px auto 0;
    border-radius: 3px;
}

section.about .about-main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

section.about .about-text-wrapper {
    flex: 1;
    padding-right: clamp(20px, 5%, 80px);
    padding-left: clamp(20px, 5%, 40px);
}

section.about .about-text-wrapper p.about-text {
    font-size: 1.18rem;
    line-height: 1.75;
    margin-bottom: 25px;
    color: #333;
}

section.about .about-text-wrapper ul.domains {
    list-style: none;
    padding-left: 0;
    margin: 25px 0 40px;
}

section.about .about-text-wrapper ul.domains li {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2a1f16;
    margin-bottom: 12px;
    padding-left: 1.5em;
    position: relative;
}

section.about .about-text-wrapper ul.domains li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.1em;
    color: #b08d57;
    font-size: 1.4rem;
    line-height: 1;
}

section.about .about-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

section.about .about-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 6px solid #B0B0B0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    object-fit: cover;
    transition: all 0.3s ease;
}

section.about .about-image img:hover {
    transform: scale(1.05);
    border-color: #805c3a;
    box-shadow: 0 0 25px rgba(176,141,87,0.6),
                0 12px 30px rgba(0,0,0,0.15);
}

section.about .team {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

section.about .team-member {
    background: #fff;
    padding: 25px 20px 35px;
    border-radius: 14px;
    border-left: 5px solid #b08d57;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

section.about .team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

section.about .team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 18px;
    object-fit: cover;
    border: 5px solid #b0b0b0;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

section.about .team-member:hover img {
    border-color: #805c3a;
    transform: scale(1.03);
}

section.about .team-member h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #2a1f16;
    margin-bottom: 8px;
}

section.about .team-member p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.55;
}

section.about .team-member button,
section.about .team-member .details-btn {
    background: #b08d57;
    color: #fff;
    padding: 10px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

section.about .team-member button:hover,
section.about .team-member .details-btn:hover {
    background: #8e6e48;
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    animation: modalFadeIn 0.35s ease forwards;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #fff;
    padding: 35px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: modalSlide 0.35s ease forwards;
}

@keyframes modalSlide {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-content .close {
    position: absolute;
    right: 18px;
    top: 15px;
    font-size: 1.8rem;
    color: #555;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.modal-content .close:hover {
    color: #b08d57;
    transform: scale(1.15);
}

.modal-content h2 {
    margin-bottom: 15px;
    font-size: 1.7rem;
    font-weight: 800;
    color: #2a1f16;
}

.modal-content p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #444;
    white-space: pre-line;
}

.bronze-gradient {
    background: linear-gradient(90deg, #b08d57, #d4b48a);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
}


section.services {
    position: relative;
    padding: 160px 0 100px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    color: #1d1d1d;
}

section.services .services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.45;
}

section.services .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

section.services h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    color: #2a1f16;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

section.services h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #b08d57;
    margin: 15px auto 0;
    border-radius: 3px;
}

section.services .service-block {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-left: 4px solid #b08d57;
}

section.services .service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

section.services .service-block h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2a1f16;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #b08d57, #4b3b2a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

section.services .service-block ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

section.services .service-block ul li {
    position: relative;
    padding-left: 1.5em;
    font-size: 1.12rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.6;
}

section.services .service-block ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.3rem;
    color: #b08d57;
    line-height: 1;
}

section.services .partner-block {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-left: 4px solid #b08d57;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    position: relative;
    z-index: 2;
}

section.services .partner-block .partner-name {
    font-style: italic;
    color: #8c6a3f;
}

section.services .partner-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

section.services .partner-block h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2a1f16;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #b08d57, #4b3b2a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

section.services .partner-block p {
    font-size: 1.12rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

section.services .partner-block .partner-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 32px;
    background: #805c3a;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(128, 92, 58, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

section.services .partner-block .partner-btn:hover {
    background: #603f2b;
    box-shadow: 0 9px 24px rgba(96, 63, 43, 0.6);
    transform: translateY(-2px);
}

section.advantages {
    padding: 140px 0 120px;
    font-family: 'Inter', sans-serif;
    background: #f2f2f2;
    position: relative;
}

section.advantages h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    color: #2a1f16;
    margin-bottom: 70px;
    position: relative;
}

section.advantages h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #b08d57;
    margin: 15px auto 0;
    border-radius: 3px;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.adv-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.adv-timeline {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-left: 80px;
}

.adv-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.adv-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b08d57, #8a6a42);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(176,141,87,0.4);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.adv-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.adv-line {
    position: absolute;
    left: 48px / 2;
    top: 48px;
    width: 4px;
    height: 50px; /
    background: linear-gradient(#b08d57, #806746);
    border-radius: 2px;
    z-index: 1;
}

.adv-step:last-child .adv-line {
    display: none;
}

.adv-content {
    flex: 1;
}

.adv-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #2a1f16;
}

.adv-content p {
    color: #444;
    line-height: 1.6;
    font-size: 1.12rem;
}

.adv-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 350px;
    height: 400px;
}

.adv-image img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.adv-image.fixed {
    height: 400px;
}

.adv-image.fixed img {
    height: 100%;
}


.faq {
  position: relative;
  padding: 120px 0;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1500px;
  z-index: 0;
  overflow: hidden;
}

.faq-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
}

.faq-container,
section.faq h2,
.faq-item {
  position: relative;
  z-index: 1;
}

.faq-container,
section.faq h2,
.faq-item {
    position: relative;
    z-index: 1;
}

section.faq h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    color: #2a1f16;
    margin-bottom: 70px;
    font-family: "Poppins", sans-serif;
}

section.faq h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #b08d57;
    margin: 15px auto 0;
    border-radius: 3px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.faq-item {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: flex-start;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.10);
}

.faq-marker {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #b08d57, #4b3b2a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 14px rgba(176,141,87,0.32);
    overflow: hidden;
}

.faq-marker img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

.faq-toggle {
    width: 18px;
    height: 18px;
    border-right: 3px solid #b08d57;
    border-bottom: 3px solid #b08d57;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(225deg);
}

.faq-question h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #2a1f16;
    margin: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    opacity: 1;
    margin-top: 10px;
}

.faq-answer p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 10px 0 0 0;
    font-weight: 500;
    transition: color 0.3s ease;
}


.contact {
  position: relative;
  padding: 100px 6%;
  background: linear-gradient(180deg, #f2f2f2 0%, #e9e7e3 100%);
  text-align: center;
  font-family: "Inter", sans-serif;
  color: #1d1d1d;
}

.contact h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #2a1f16;
  margin-bottom: 10px;
}

.contact p {
  font-size: 1.05rem;
  color: #333;
  max-width: 780px;
  margin: 0 auto 30px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.contact-card {
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  padding: 20px 18px;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: 0.28s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.10);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b08d57, #4b3b2a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 10px;
  box-shadow: 0 0 14px rgba(176,141,87,0.32);
  transition: 0.28s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.06);
  box-shadow: 0 0 26px rgba(176,141,87,0.45);
}

.contact-card p {
  margin: 0 0 6px;
  color: #2a1f16;
  font-weight: 700;
}

.contact-card a {
  color: #4b3b2a;
  text-decoration: underline;
  font-weight: 600;
}

.contact-map {
  max-width: 800px;
  margin: 0 auto 20px;
}

.contact-map .map {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  padding: 10px;
  height: 360px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


.contact-form-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f4f4f4 0%, #f2f2f2 100%);
  color: #1d1d1d;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.contact-form-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  max-width: 660px;
  margin: 0 auto;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.15);
}

.contact-form-block h3 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a1f16;
}


.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-weight: 500;
  color: #2a1f16;
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fdfdfd;
  color: #1d1d1d;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #a0a0a0;
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-block .btn.primary-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg,#b08d57,#4b3b2a);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 18px;
  transition: all 0.3s ease;
}

.contact-form-block .btn.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(176,141,87,0.4);
}

.form-row.small {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-row.small input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-status {
  margin-left: 14px;
  font-weight: 600;
}

.error {
  color: #9b2e00;
  font-size: 0.9rem;
  margin-top: 6px;
}

.contact-footer {
  background: #4b4b4b;
  color: #f2f2f2;
  padding: 40px 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.contact-footer a {
  color: #b08d57;
  text-decoration: none;
  font-weight: 500;
}

.contact-footer a:hover {
  text-decoration: underline;
}

.contact-footer p {
  margin: 6px 0;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-footer .footer-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #ccc;
}

.partner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #555;
}

.partner-link {
    color: #f0c674;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s, transform 0.3s;
}

.partner-link:hover {
    color: #ffffff;
}

.partner-logo-wrapper {
    text-align: center;
    margin-top: 6px;
}

.partner-logo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: inline-block;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.8);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.left {
  transform: translateX(-30px);
}
.scroll-reveal.right {
  transform: translateX(30px);
}
.scroll-reveal.left.visible,
.scroll-reveal.right.visible {
  transform: translateX(0);
}