/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #b8860b;
    --black: #000;
    --white: #fff;
    --gray: #666;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-family: 'Inter', sans-serif;
    --gold: #D4AF37;
    --gold-light: #F4E5A1;
    --gold-dark: #B8941F;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray-light: #F8F8F8;
    --gray-dark: #333333;
     --transition: all 0.3s ease;
    --header-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

main {
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #b8860b;
}

/* Breadcrumb Styles */
.breadcrumb-section {
  padding: 40px 20px 20px;
  border-top: 1px solid #ddd;
  margin: 0 10px;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.breadcrumb-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--body-font);
  font-size: 1.1em;
  color: var(--gray-dark);
  line-height: 1.8;
  gap: 5px;
  letter-spacing: 0.5px;
}

.breadcrumb-link {
  text-decoration: none;
  color: var(--gray-dark);
  transition: color 0.3s;
}

.breadcrumb-link:hover {
  color: var(--gold);
}

.breadcrumb-divider {
  margin: 0 8px;
  color: #aaa;
}

.breadcrumb-current {
  font-weight: 600;
  color: var(--black);
}

.breadcrumb-title-wrap {
  animation: fadeInUp 0.6s ease-out forwards;
}

.breadcrumb-title {
  font-family: var(--header-font);
  font-size: 4rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  text-align: right;
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}

.section {
    padding: 100px 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.section-white {
    background: var(--white);
    color: var(--black);
}

.section-white .diversification-item {
    background: var(--gray-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.section-white .diversification-title {
    color: var(--black);
}

.section-white .advantage-title {
    color: var(--black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.intro-text {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}
.section-black {
    background: var(--black);
    color: var(--white);
}

.section-black .section-title {
    color: var(--white);
}

.section-black .section-title::after {
    background: var(--gold);
}

.diversification-list {
    text-align: left;
    margin-top: 60px;
}

.diversification-item {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.section-white .diversification-item {
    background: var(--gray-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.diversification-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.diversification-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    margin-bottom: 20px;
}

.diversification-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gold);
    display: inline-block;
}

.section-white .diversification-title {
    color: var(--black);
}

.diversification-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 15px;
}

.main-section {
    padding: 80px 0;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.2);
}

.service-card:last-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: black;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fbbf24;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e5e7eb;
}

.service-bullet {
    width: 8px;
    height: 8px;
    background-color: #fbbf24;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}
.section-gold {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    color: var(--black);
}

.section-gold .section-title::after {
    background: var(--black);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.advantage-card {
    background: rgba(212, 175, 55, 0.08);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.advantage-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gold);
}

.section-white .advantage-title {
    color: var(--black);
}

.advantage-description {
    font-size: 1rem;
    line-height: 1.6;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.download-section .cta-button {
    background: var(--white);
    color: var(--black);
}

.download-section .cta-button:hover {
    background: var(--gold);
}

/* CTA Button */
.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #A1773D 0%, #F5E6A3 50%, #A1773D 100%);
  box-shadow: 0 8px 20px rgba(161, 119, 61, 0.4);
    color: var(--black);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.section-black .cta-button {
    background: var(--white);
    color: var(--black);
}

.section-black .cta-button:hover {
    background: var(--gold);
}
.collab-section {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.black-bg {
  background-color: #000;
  color: #fff;
}

.white-bg {
  background-color: #fff;
  color: #333;
}

.section-black p {
 font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
  max-width: 900px;
  margin: 0 auto;
  display:block;
}

.benefits-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.benefits-list li::before {
  content: "✓";
  color: #f4c542;
  font-weight: bold;
  margin-right: 10px;
}


/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #A1773D 0%, #F5E6A3 50%, #A1773D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(161, 119, 61, 0.4);
  border: 2px solid transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    border-color: #ffffff;
}

.back-to-top::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top:hover::before {
    opacity: 1;
}

.back-to-top-icon {
    font-size: 1.5em;
    color: #1a1a1a;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.back-to-top:hover .back-to-top-icon {
    color: #000;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}


/* Media Queries */

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .breadcrumb-section {
    padding: 20px 15px 15px;
    margin: 0 5px;
    }

    .breadcrumb-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    }

    .breadcrumb-title {
    font-size: 1.8rem;
    text-align: left;
    }

    .breadcrumb-links {
    font-size: 14px;
    }
    .section-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .content-card {
        padding: 25px;
    }

    .service-card {
        padding: 25px;
    }

    .services-grid {
        gap: 35px;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .diversification-item {
        padding: 20px;
    }

    .diversification-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1rem;
    }

    .advantage-card {
        padding: 25px;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
}
/* Tablet (max-width: 768px) */
@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

     .hero-image {
        height: 400px;
    }

    .intro-text {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .breadcrumb-title {
        font-size: 2.2rem;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top-icon {
        font-size: 1.2em;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .intro-text {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .diversification-item {
        padding: 30px;
        margin-bottom: 30px;
    }

    .diversification-title {
        font-size: 1.4rem;
    }

    .diversification-description {
        font-size: 1rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .advantage-card {
        padding: 30px;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
}

/* Desktop (min-width: 769px) */
@media screen and (min-width: 769px) {
    .breadcrumb-section {
        padding: 35px 25px 20px;
        margin: 0 15px;
      }

      .breadcrumb-title {
        font-size: 2.8rem;
      }

    .breadcrumb-wrapper {
        flex-wrap: nowrap;
        gap: 0;
    }

    .breadcrumb-links {
        font-size: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .section-header h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1.125rem;
    }

    .content-card {
        padding: 30px;
    }

    .content-card p {
        font-size: 1rem;
    }

    .service-card {
        padding: 30px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .service-title {
        font-size: 1.3rem;
    }
}

/* Larger Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card:last-child {
        grid-column: 1;
        max-width: 100%;
    }
}

/* Large Desktop (min-width: 1200px) */
@media screen and (min-width: 1200px) {

    .breadcrumb-title {
        font-size: 4rem;
        text-align: right;
    }
     .breadcrumb-section {
        padding: 40px 32px 20px;
        margin: 0 20px;
      }

      .breadcrumb-wrapper {
        flex-wrap: nowrap;
        gap: 0;
      }

      .breadcrumb-links {
        font-size: 20px;
      }

      
}