* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #fff;
    
}
  
  
.head {
    top: 0vw;
    height: 8vw;
    width: 100%;
    position: fixed;
    z-index: 3;
    background-color: #c1a164;
}
.head img {
    height: 5vw;
    width: 5vw;
    border-radius: 10vw;
    position: absolute;
    left: 1vw;
    top: 1.5vw;
    border: solid 0.15vw rgb(36, 84, 218);
    cursor: pointer;
    animation: border-color-animation 3s infinite;
}
@keyframes border-color-animation {
    0% {
      border-color: rgb(36, 84, 218);
    }
    33% {
      border-color: rgb(255, 0, 0);
    }
    66% {
      border-color: rgb(0, 255, 0);
    }
    100% {
      border-color: rgb(36, 84, 218);
    }
}
.head h1 a{
    color: #111;
    text-decoration: none;
    position: relative;
    left: 7vw;
    top: 1.7vw;
    font-size: 1.8vw;
    cursor: pointer;
    font-family: cinzel;
}
.head p a{
    color: #111;
    position: relative;
    left: 7vw;
    top: 1.7vw;
    font-size: 1.3vw;
    cursor: pointer;
    text-decoration: none;
    font-family: cinzel;
}
  
  
.logo img {
    height: 5vw;
    width: 5vw;
    border-radius: 10vw;
    z-index: 3;
    position: fixed;
    right: 1vw;
    top: 1.5vw;
    cursor: default;
}
  
  
.menu {
    text-align: center;
    position: fixed;
    top: 3vw;
    left: 43vw;
    z-index: 3;
}
.menu ul {
    display: flex;
    list-style: none;
    font-size: 1vw;
    padding: 0;
    margin: 0;
}
.menu ul li {
    position: relative;
    margin: 0 0.7vw;
    padding: 0.7vw;
}
.menu ul li a {
    text-decoration: none;
    color: #111;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    font-family: cinzel;
    font-weight: 700;
}
.menu ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.3vw;
    width: 0;
    height: 0.2vw;
    background-color: #fff;
    transform: translateX(-50%);
    transition: width 0.4s ease-in-out;
}
.menu ul li a:hover {
    color: #444;
}
.menu ul li a:hover::after {
    width: 50%;
}
.menu-1 {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    width: auto;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    background-color: #c1a164;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.menu-1 li {
    padding: 0.7vw 1vw;
    white-space: nowrap;
    background-color: transparent;
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.menu-1 li a {
    text-decoration: none;
    font-family: cinzel,bold;
    transition: color 0.3s ease;
}
.menu-1 li a:hover {
    color: rgb(255, 255, 255);
}
.menu ul li:hover .menu-1 {
    opacity: 1;
    visibility: visible;
}
.menu ul li:hover .menu-1 li {
    opacity: 1;
    transform: translateY(0);
}
.menu-1 li:nth-child(1) {
    transition-delay: 0.1s;
}
.menu-1 li:nth-child(2) {
    transition-delay: 0.2s;
}
.menu-1 li:nth-child(3) {
    transition-delay: 0.3s;
}
.menu-1 li:nth-child(4) {
    transition-delay: 0.4s;
}
.menu-1 li:nth-child(5) {
    transition-delay: 0.5s;
}
.menu ul li:not(:hover) .menu-1 {
    opacity: 0;
    visibility: hidden;
}
.menu ul li:not(:hover) .menu-1 li {
    opacity: 0;
    transform: translateY(-10px);
    transition-delay: 0s;
}
.menu-1 ul {
    padding: 0;
    margin: 0;
    display: block;
}
.arrow {
    display: inline-block;
    margin-left: 0.3vw;
    font-size: 1vw;
    transition: transform 0.3s ease;
}
.has-submenu:hover .arrow {
    transform: rotate(180deg);
}


.carousel-container {
    position: relative;
    /* top: 8vw; */
    height: auto;
    width: 100%;
    margin: auto;
    overflow: hidden;
}
.carousel {
    display: flex;
    width: 100%;
    height: 100%;
}
.carousel img {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    transition: transform 9s ease-in-out;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
  
  
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10vw;
    font-family: Cinzel;
}
.content-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    position: relative;
    z-index: 2;
    background-color: #eae5e5;
    padding: 1vw;
    margin-bottom: 0;
    border-radius: 10px;
}
.content-section img {
    width: 40%;
    height: 30%;
    object-fit: cover;
}
.text-box {
    width: 40%;
    text-align: center;
    font-size: 1.2rem;
}
.text-box p {
    font-family: Bodoni Moda;
    padding-right: 3vw;
}


.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Cinzel;
}
.slider-heading {
    position: relative;
    width: 100%;
    text-align: center;
    color: black;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    transform: translateY(0px);
    height: 3rem;
}
.slider-heading.active {
    opacity: 1;
    transform: translateY(0);
}
.slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide {
    position: absolute;
    width: 60%;
    height: 80%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    transform: scale(0.85);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
}
.slide.slide-left {
    transform: translateX(-110%) scale(0.85);
    opacity: 0.7;
    z-index: 1;
}
.slide.slide-right {
    transform: translateX(110%) scale(0.85);
    opacity: 0.7;
    z-index: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 2;
}
.nav-buttons button {
    background: rgba(255,255,255,0.8);
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav-buttons button:hover {
    background: white;
    transform: scale(1.1);
}
  
  
.container {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin: 20px auto;
    width: 90%;
    font-family: Cinzel;
}
.column {
    width: 23%;
    text-align: center;
    background-color: #eae5e5;
    position: relative;
    border-radius: 10px;
}
.column img {
    width: 100%;
    height: 13vw;
    padding: 0.5vw;
    transition: opacity 0.3s ease;
}
.column .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 13vw;
    opacity: 0;
    transition: opacity 1s ease;
}
.column:hover .hover-image {
    opacity: 1;
}
.column:hover img {
    opacity: 0;
}
.column p {
    font-size: 16px;
    line-height: 1.5;
    padding: 10px;
    margin-top: 1vw;
    font-family: Bodoni Moda;
}
  
  
.video {
    width: 75%;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: #eae5e5;
}

.video-section video {
    width: 100%;
    max-width: 500px;
    border-radius: 0px;
    margin-left: 10px;
    padding: auto;
}

.text-section {
    flex: 1;
}

.text-section p {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 1.3vw;
    font-family: Bodoni Moda;
}
.text-section h2 {
    text-align: center;
    margin-bottom: 1vw;
    padding-top: 1vw;
}
.text-section button {
    padding: 10px 20px;
    background-color: #2c3e50;
    margin-bottom: 10px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 30%;
    width: 200px;
}

.text-section button:hover {
    background-color: #1a252f;
}



.background-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    padding: 30px;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 5vw;
    background-color: #eae5e5;
    border-radius: 10px;
    margin-bottom: 1vw;
    font-family: Cinzel;
}
.bg-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}
.bg-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.bg-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}
.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.bg-section:hover .bg-image img {
    transform: scale(1.05);
}
.image-heading {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px 20px;
    margin: 0;
    transform: translateY(100%);
    transition: transform 0.3s;
}
.bg-section:hover .image-heading {
    transform: translateY(0);
}
.bg-text {
    padding: 20px;
    max-height: 250px;
    overflow-y: auto;
}
.bg-text p {
    margin: 0;
    font-size: 15px;
    color: #111;
    font-family: Bodoni Moda;
}
.bg-1 { grid-column: 1; grid-row: 1; }
.bg-2 { grid-column: 2; grid-row: 1; }
.bg-3 { grid-column: 1; grid-row: 2; }
.bg-4 { grid-column: 2; grid-row: 2; }
.bg-5 { grid-column: 1; grid-row: 3; }
.bg-6 { grid-column: 2; grid-row: 3; }

@media (max-width: 768px) {
    .background-grid {
        grid-template-columns: 1fr;
    }
    .bg-3 { grid-column: 1; }
}


footer {
    background-color: #c1a164;
    color: white;
    padding: 2vw 2vw;
    font-family: cinzel;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.footer-content a {
      color: #fff;
      text-decoration: none;
}
.footer-content div {
    width: 30%;
    padding: 10px;
    box-sizing: border-box;
}
.footer-content .contact-info p {
    margin: 8px 0;
}
.footer-content .quick-links ul, .footer-content .legal ul {
    list-style-type: none;
    padding-left: 0;
}
.footer-content .quick-links li, .footer-content .legal li {
    margin: 8px 0;
}
.footer-content .quick-links a, .footer-content .legal a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-content .quick-links a:hover, .footer-content .legal a:hover {
    color: #444;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #fff;
    padding-top: 10px;
}
.footer-bottom p {
    margin: 0;
    font-size: 14px;
    line-height: 1vw;
}
 @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-content div {
      width: 100%;
      text-align: center;
    }
  
    .footer-bottom p {
      font-size: 12px;
    }
}