
/* Custom CSS */
/* import font from local name own.woff */
@font-face {
    font-family: 'Playfair Display';
    src: url('own2.woff2') format('woff2'),url('own.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Colors */
:root {
    /* --gold: #D0B27A; */
    --gold: #1a1091;
    --gold: #333333;

    /* --gold-light: #E6D5B8; */
    --gold-light: #424242;
    --charcoal: #1e1e1e;
    --charcoal-light: #262626;
    --cream: #F8F5F0;
  }
  
  .bg-gold {
    background-color: var(--gold);
  }
  
  .bg-gold\/10 {
    background-color: rgba(208, 178, 122, 0.1);
  }

  .bg-gray{
    background-color: #f0f0f0;
  }
  
  .bg-gold\/90 {
    background-color: rgba(208, 178, 122, 0.9);
  }
  
  .text-gold {
    color: var(--gold);
  }
  
  .border-gold {
    border-color: var(--gold);
  }
  
  .border-gold\/20 {
    border-color: rgba(208, 178, 122, 0.2);
  }
  
  .border-gold\/50 {
    border-color: rgba(208, 178, 122, 0.5);
  }
  
  .hover\:bg-gold\/10:hover {
    background-color: rgba(208, 178, 122, 0.1);
  }
  
  .hover\:bg-gold\/90:hover {
    background-color: rgba(208, 178, 122, 0.9);
  }
  
  .text-charcoal {
    color: var(--charcoal);
  }
  
  .text-charcoal-light {
    color: var(--charcoal-light);
  }
  
  .bg-cream {
    background-color: var(--cream);
  }
  
  .hover\:text-gold:hover {
    color: var(--gold);
  }
  
  /* Font families */
  .font-playfair {
    font-family: 'Playfair Display', serif;
  }
  
  .font-inter {
    font-family: 'Inter', sans-serif;
  }
  
  /* Animations */
  @keyframes fade-in {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fade-in-left {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fade-in-right {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes zoom-in {
    0% {
      opacity: 0;
      transform: scale(0.95);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .animate-fade-in {
    animation: fade-in 0.7s ease-out forwards;
  }
  
  .animate-fade-in-left {
    animation: fade-in-left 0.7s ease-out forwards;
  }
  
  .animate-fade-in-right {
    animation: fade-in-right 0.7s ease-out forwards;
  }
  
  .animate-zoom-in {
    animation: zoom-in 0.7s ease-out forwards;
  }
  
  /* Utilities */
  .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Responsive styles */
  @media (min-width: 768px) {
    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:text-4xl {
      font-size: 2.25rem;
    }
    
    .md\:py-24 {
      padding-top: 6rem;
      padding-bottom: 6rem;
    }
  }
  
  @media (min-width: 1024px) {
    .lg\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:text-5xl {
      font-size: 3rem;
    }
  }

  header.bg-white{
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
  }
  
  .big-heading{
    font-size: 45px;
    line-height: 1.2;
  }

  .heading{
    font-size: 32px;
    line-height: 1.2;
  }

  .para{
    font-size: 16px;
    line-height: 1.5;
  }

  #nav .text-charcoal{
    color: #fff;
  }

  #nav #mobile-menu .text-charcoal{
    color: #000;
  }

  #nav.bg-white .text-charcoal{
    color: var(--charcoal);
  }

  .btn-primary-border{
    padding: 5px 20px;
    border-radius: 5px;
    background-color: transparent;

    border: 2px solid white;
    color: white;

  }

  #nav.bg-white .btn-primary-border{
    border: 2px solid #000;
    color: #000;
  }


  .btn-primary {
    background-color: var(--gold);
    /* Gold */
    color: #fff;
    padding: 8px 20px;
    border-radius: 0.375rem;
    font-size: 16px;
    /* font-weight: 600; */
    transition: background-color 0.3s ease;
  }

  .btn-border {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 0.375rem;
    font-size: 16px;
    /* font-weight: 600; */
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  #home .btn-primary {
    background-color: #fff;
    color: #000;
  }

  .gap-10 {
    gap: 10px;
  }

  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px;
  }

  .cat {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
  }

  .cat .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #00000014;
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%); */
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
  }

  .cat .details {
    position: absolute;
    /* top: 0; */
    left: 0;
    right: 0;
    bottom: -170px;
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    /* align-items: center; */
    /* text-align: center; */
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%); */
    color: #fff;
    padding: 20px;
    z-index: 2;
    transition: all ease 0.5s;
  }

  .cat .details h3 {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: start;
    color: #000;
    background-color: rgba(255, 255, 255, 0.23);
    backdrop-filter: blur(2px);
    width: fit-content;
    padding: 5px 20px;
    border-radius: 10px;
    border: 1px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .cat .details p {
    color: #fff;
    color: #000;
    background-color: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(15px);
    width: fit-content;
    padding: 5px 20px;
    border-radius: 10px;
    border: 1px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  }

  .cat:hover .details {
    bottom: 0;
    transform: translateY(-10px);
  }

  .video-box {
    position: relative;
    /* width: 100%; */
    height: 500px;
    aspect-ratio: 8/12;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #fff;
  }

  .mute {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    /* font-weight: bold; */
    transition: all 0.3s ease-in-out;
  }
  .services{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .services .service{
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* align-items: ce; */
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .services .service .icon{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 50%;
  }
  .services .service .details{
    margin-top: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* margin-left: 20px; */
  }
  .services .service .details h3{
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #333;
  }
  .services .service .details p{
    font-size: 16px;
    color: #666;
  }

  .services .service .arrow-btn{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    color: #333;
    font-size: 16px;
    /* font-weight: bold; */
    margin-top: 20px;
    transition: all 0.3s ease-in-out;

  }
  .services .service .arrow-btn:hover{
    background-color:rgb(27, 27, 27);
    color: #fff;
  }
  .services .service:hover{
    /* background-color: #f9f9f9; */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .services .service:hover .icon{
    background-color: #e0e0e0;
  }
  .services .service:hover .details h3{
    color: #000;
  }
  .grid-cols-4{
    grid-template-columns: repeat(4, 1fr);
  }
  .services.steps .service{
    display: flex ;
    flex-direction: row;
    gap: 10px;
    padding: 10px;  
  }
  .services.steps .service .icon svg{
    transition: all 0.3s ease-in-out;
  }
  .services.steps .service:hover .icon{
    color: #ffffff;
    background-color:rgb(31, 31, 31);
  }


  /* .services.steps .service:hover .icon svg{ */
    /* transform: scale(1.1); */
    /* width: 28px; */
  /* } */

/* FAQ List and Items */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.faq-list {
    list-style: none;
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 10px;
    gap: 20px;
}

.faq-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    /* margin: 0 0 15px 0; */
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9f9f9;
}

/* Expanded state for answer */
.faq-answer.open {
    max-height: 500px;
    padding: 15px;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(90deg);
}

.footer-name{
  font-size: 85px;
  text-align: center;
}

    .video-box {
      position: relative;
      /* width: 100%; */
      height: 500px;
      aspect-ratio: 8/12;
      overflow: hidden;
      border-radius: 10px;
      border: 2px solid #fff;
    }




    /* .services.steps */
    .services.steps .service {
      width: 45%;
      max-width: 800px;
      padding: 20px;
      display: flex;
      flex-direction: row;
      gap: 20px;
    }

    .services.steps .service .icon svg {
      transition: all 0.3s ease-in-out;
    }

    .services.steps .service:hover .icon {
      color: #ffffff;
      background-color: rgb(31, 31, 31);
    }


    /* .services.steps .service:hover .icon svg{ */
    /* transform: scale(1.1); */
    /* width: 28px; */
    /* } */
    .logo-text {
      font-size: 32px;
      color: #fff;
      text-align: center;
      margin-top: 10px;
      font-weight: 600;
    }

    .logo-text span {
      font-size: 20px;
      color: #ccc;
      display: block;
    }

    .big-logo {
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .vid-letter {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .vid-letter .letter {}

    .vid-letter .letter img {
      border-radius: 20px;

    }

    .vid-letter .video-box {
      max-width: 350px;
      flex-shrink: 0;
    }

    .letter .m {
      display: none;
    }

    .letter .d {
      width: 100%;
    }

    .images {
      display: flex;
      gap: 20px;
      margin-top: 20px;
      margin-bottom: 40px;
    }

    .images img {
      width: 150px;
      height: 150px;
      text-align: center;
      object-position: center;
      object-fit: contain;
    }

    .hero {
      width: 100%;
      margin: 0 auto;
      padding: 0 50px;
      gap: 10px;
      position: relative;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }
    .footer-name {
      font-size: 90px; color:#f7f7f7; font-weight:600; margin-top:-50px; text-align:center; text-transform:uppercase;
    }

    @media (max-width: 768px) {

      .pt-140{
  padding-top: 140px;
}

      .letter .d{
        display: none;
      }
      .letter .m{
        display: block;
      }

      .vid-letter{
        flex-direction: column;
        align-items: center;
      }

      .hero{
      flex-wrap: wrap-reverse !important;
      }
      .row {
        flex-direction: column;
      }

      .container {
        padding: 0 10px;
      }

      .hero {
        flex-wrap: wrap-reverse;
        /* flex-direction: column; */
        padding: 0;
        padding-top: 80px;
      }

      .hero .big-heading {
        font-size: 32px;
      }

      .col-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 10px;
      }
      .h-screen{
        height: auto;
      }

      .images{
        width: 100%;
        flex-wrap: wrap;
      }
      .min-h-screen{
        width: 100% !important;
        padding: 0 !important;
      }
      .footer-name{
        font-size: 25px;
      }

      .big-logo{
        padding: 30px;
        border: 2px solid #fff;
        border-radius: 10px;
      }

      .logo-text{
        font-size: 20px;
      }
      .logo-text span {
        font-size: 14px;
      }
    .vid-letter .letter {
      flex-direction: column;
    }
    .services.steps .service {
      width: 100%;
    }


    }

@media (max-width: 768px) {
    .footer-name {
        font-size: 35px;
    } 
    .h-\[500px\] {
    height: 231px !important;
}
}