/* Header Starting */
.main-header {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white; 
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 0;
}


.main-header h1 {
    font-size: 48px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 55px;
    opacity: 0;
    transform: translateY(-50px);
    animation: slideInText 0.8s ease forwards 0.5s;
    z-index: 2;  
}

.main-header p {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    opacity: 0;
    animation: fadeInText 1.2s ease forwards 1s;
    margin-top: -20px;
    margin-bottom: 33px;
    z-index: 2; 
}


.header-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 40px;
    font-size: 18px;
font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    margin-top: 30px;
    z-index: 2; 
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #FFD700; 
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.header-btn:hover::before {
    width: 300%;
    height: 300%;
}

.header-btn:hover {
    color: black;
}

.header-btn a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

@keyframes slideInText {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media only screen and (max-width: 768px) {
    .main-header h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .main-header p {
        font-size: 16px;
        margin-top: -10px;
        margin-bottom: 20px;
    }

    .header-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .main-header h1 {
        font-size: 28px;
    }

    .main-header p {
        font-size: 14px;
    }

    .header-btn {
        font-size: 14px;
        padding: 10px 25px;
    }
}
/* Header Ending */


/* About Us Starting  */
.about-us-section {
    padding: 60px 20px;

    color: #fff; 
    position: relative;
    overflow: hidden; 
}
.about-us-header {
    text-align: center;
    margin-bottom: 40px;
}
.about-us-header h2 {
    font-size: 36px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-out;
}
.about-us-header p {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    animation: fadeInUp 1s ease-out 0.5s;
}
.about-us-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start; 
    justify-content: center;
    animation: slideInUp 1.2s ease-out;
}
.about-us-text {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}
.about-us-text h3 {
    font-size: 28px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out;
}
.about-us-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px; 
}
.about-us-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0; 
}
.about-us-text li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px; 
    position: relative;
    padding-left: 25px; 
}
.about-us-text li::before {
    content: '\2022'; 
    color: #FFD700; 
    font-size: 24px; 
    position: absolute;
    left: 0;
    top: 0;
    animation: pulse 1.5s infinite; 
}
.about-us-image {
    flex: 1;
    max-width: 600px;
    text-align: center;
    animation: floating 3s ease-in-out infinite;
}

.about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block; 
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); 
    }
    100% {
        transform: translateY(0);
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@media only screen and (max-width: 768px) {
    .about-us-section {
        padding: 40px 15px;
    }
    .about-us-header h2 {
        font-size: 30px;
    }
    .about-us-header p {
        font-size: 16px;
    }
    .about-us-text h3 {
        font-size: 24px;
    }
    .about-us-text p {
        font-size: 14px;
    }
    .about-us-content {
        flex-direction: column; 
    }
}
@media only screen and (max-width: 480px) {
    .about-us-header h2 {
        font-size: 24px;
    }
    .about-us-header p {
        font-size: 14px;
    }
    .about-us-text h3 {
        font-size: 20px;
    }
    .about-us-text p {
        font-size: 12px;
    }
    .about-us-content {
        flex-direction: column; 
        align-items: center; 
    }
    .about-us-image {
        margin-top: 20px; 
        max-width: 100%; 
    }
}
/* About Us Ending */


/* Services Starting */
.services-section {
    padding: 60px 20px;
    background-color: #000;
    color: #fff;
    background-image: url('/IMAGES/ServicesBG.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.services-heading {
    text-align: center;
    font-size: 36px;
font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;    margin-bottom: 10px;
    color: gold;
}

.services-description {
    text-align: center;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 30px;
    color: #ccc;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-item {
    position: relative;
    flex: 1 1 350px;
    max-width: 350px;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 19px;
    display: flex;
    z-index: 300;

    flex-direction: column;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
}

.service-item:hover .service-overlay {
    transform: translateY(0);
    opacity: 1;
}

.service-title {
    background: gold;
    color: #000;
    font-size: 24px;
font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;    margin: 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.service-description {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    margin: 10px 0;
    color: #fff;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
    .services-heading {
        font-size: 30px;
    }

    .services-description {
        font-size: 16px;
    }

    .services-list {
        gap: 10px;
    }

    .service-item {
        flex: 1 1 300px;
        max-width: 300px;
        height: 350px;
    }
}

@media only screen and (max-width: 480px) {
    .services-heading {
        font-size: 24px;
    }

    .services-description {
        font-size: 14px;
    }

    .services-list {
        gap: 10px;
    }

    .service-item {
        flex: 1 1 100%;
        max-width: 100%;
        height: 300px;
    }
}
/* Services Ending */




/* Contact Us Starting */
.contact-us-section {
    background-image: url('/IMAGES/ContactUsImage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.contact-us-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); 
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-form, .company-info {
    flex: 1;
    padding: 20px;
    margin: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.contact-form h2, .company-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 16px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:hover, .contact-form textarea:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-form button {
    background-color: gold;
    color: black;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #d4af37;
    transform: scale(1.05);
}

.company-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.company-info p {
    font-size: 18px;
    margin: 10px 0;
}

.company-info p i {
    margin-right: 10px;
}

.company-info p a {
    color: gold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-info p a:hover {
    color: #d4af37;
}

@media (max-width: 768px) {
    .contact-us-wrapper {
        flex-direction: column;
    }

    .contact-form, .company-info {
        max-width: 100%;
    }
}
.contact-detail {

    margin-left: 15px;
    font-size: 16px;
}

.contact-item {
    margin: 15px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.contact-item i {
    font-size: 24px;
    color: gold;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
}

.contact-item a {
    color: gold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #d4af37;
}


/* Contact Us Ending */







/*  Gallery Starting  */
.gallery-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #000000;
}

.gallery-section h2 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.gallery-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #d4af37;
    display: block;
    margin: 10px auto 0;
    transition: width 0.3s ease;
}

.gallery-section h2:hover::after {
    width: 120px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    justify-items: center;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    width: 300px;  
    height: 200px; 
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0); 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.4s ease;
    border-radius: 20px;
    transform-origin: center center;
}

.gallery-item:hover {
    transform: rotateY(20deg) rotateX(10deg); 
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    color: white;
    border-radius: 20px;
    text-align: center;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    transform: translateZ(50px);
}

.overlay p {
    font-size: 1.2rem;
    margin-bottom: 0;
    transform: translateZ(50px);
}


.gallery-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.view-more {
    text-align: center;
    margin-top: 30px;
}

.view-more-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    background-color: #d4af37;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-more-button:hover {
    background-color: #b89330;
}

/*  Gallery Ending  */


/* Testimonial Starting */
.testimonials-section {
    padding: 60px 20px;
    background-color: #000;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 760px;
}

.testimonials-section h2 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.testimonials-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #d4af37;
    display: block;
    margin: 10px auto 0;
    transition: width 0.3s ease;
}

.testimonials-section h2:hover::after {
    width: 120px;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    top: -390px;
}

.testimonial-card {
    background: linear-gradient(135deg, #d4af37, #f0c14b); 
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    padding: 30px;
    max-width: 350px;
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
    will-change: opacity, transform, box-shadow;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000 !important; 
    margin-bottom : 20px;
}

.testimonial-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #000  !important; 
}

.testimonial-card span {
    font-size: 1rem;
    color: #333 !important; 
}
.testimonial-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);  
    transform: translateY(-10px) scale(1.05); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform:scale(1.1) !important;
   
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.rotating-triangle {
    position: absolute;
    top: 140px;
    right: 60px;
    width: 100px;
    height: 100px;
    border: 12px solid #e5c580;
    border-left-color: #d4af37;
    border-top-color: #f0c14b;
    border-radius: 10px;
    animation: rotateTriangle 8s infinite linear;
}
.righttriangle {
    display: flex;
    position: absolute;
    z-index: 200;
    right: 60px;
    margin-bottom: 1390px;
    margin-top: -150px;
}

@keyframes rotateTriangle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.small-square {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 8px solid #f1d176;
    border-left-color: #d4af37;
    border-top-color: #f0c14b;
    animation: rotateSmallSquares 8s infinite linear;
    transition: background-color 0.4s ease;
}
.small-square:nth-child(1) {
    top: 80px;
    right: 30px;
    animation-delay: 0s;
}

.small-square:nth-child(2) {
    top: 200px;
    right: 110px;
    animation-delay: 2s;
}

.small-square:nth-child(3) {
    top: 329px;
    right: 90px;
    animation-delay: 4s;
}

@keyframes rotateSmallSquares {
    0% {
        transform: rotate(0deg) translateX(50px);
    }
    100% {
        transform: rotate(360deg) translateX(50px);
    }
}

.small-square:hover {
    background: linear-gradient(135deg, #f0c14b, #d4af37); 
    border-color: transparent; 
}

.testimonial-card:hover p {
    color: #f0c14b; 
}

.testimonial-card:hover h3, 
.testimonial-card:hover span {
    color: #d4af37; 
}

.triangle {
    --r: 20px; 
    width: 200px;
    aspect-ratio: 1 / cos(30deg);
    --_g: calc(tan(60deg) * var(--r)) bottom var(--r), #EDD12A 98%, #0000 101%; 
    -webkit-mask: 
      conic-gradient(from -30deg at 50% calc(200% - 3*var(--r)/2), #000 60deg, #0000 0) 
      0 100% / 100% calc(100% - 3*var(--r)/2) no-repeat,
      radial-gradient(var(--r) at 50% calc(2*var(--r)), #000 98%, #0000 101%),
      radial-gradient(var(--r) at left var(--_g)),
      radial-gradient(var(--r) at right var(--_g));
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    background: linear-gradient(45deg, #FFD700, #FF4500); 
    animation: rotateTriangle 6s infinite linear;
  }
  .triangle.small {
    width: 100px;
  }
  
  .triangle.large {
    width: 300px;
  }

  @keyframes rotateTriangle {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

/* Testimonial Ending */

/* CTA Section Starting */
.cta-section {
    padding: 60px 20px;
    background: #000;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    margin-bottom: 110px;
}
.cta-section.fadeInUp {
    opacity: 1; 
    transform: translateY(0); 
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;    color: #000; 
    background-color: #ffd700; 
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: #ffcc00;
    transform: scale(1.05); 
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.6); 
}
/* CTA Section Ending */


  
/* FAQs Starting */

.faqs-section {
    padding: 60px 20px;
    background: url('/IMAGES/Faqbg.png') no-repeat center center/cover; 
    color: #fff; 
    text-align: center;
    width: 100%;
}


.faqs-section h2 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.faqs-section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #d4af37;
    display: block;
    margin: 10px auto 0;
    transition: width 0.3s ease;
}

.faqs-section h2:hover::after {
    width: 120px;
}

.faqs-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    gap: 20px;
    align-items: flex-start;
}

.faqs-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.faqs-image {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 500px; 
}

.faqs-image img {
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    margin-top: -40px;
    border-radius: 193px;
}

.faqs-image.visible img {
    opacity: 1;
    transform: translateX(0);
}

.faq-item {
    background: linear-gradient(135deg, #d4af37, #f0c14b); 
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-item.active {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.faq-question {
    background: #d4af37; 
    color: #000; 
    padding: 15px;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem; 
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 10px 10px 0 0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 15px;
    font-size: 1.5rem;
    color: #fff; 
    transition: transform 0.3s ease, content 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '×'; 
    transform: rotate(0deg); 
}

.faq-question:hover {
    background: #f0c14b; 
}

.faq-answer {
    background: #fff; 
    color: #000; 
    padding: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px; 
    opacity: 1;
}

.faq-answer p {
    margin: 0;
}


.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile styles */
@media (max-width: 768px) {
    .faqs-container {
        flex-direction: column;
        align-items: center;
    }

    .faqs-image {
        order: 2;
        transform: translateY(50px); 
    }

    .faqs-image.visible img {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQs Ending */

/* Footer Starting */
.footer {
    background: #000; 
    color: #fff; 
    padding: 20px 10px; 
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    overflow: hidden; 
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    align-items: flex-start;
    justify-content: space-around;
}

.footer-logo {
    flex: 1;
    max-width: 180px; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    width: 80px;
    height: auto; 
}

.footer-desc {
    flex: 2;
    max-width: 186px;
    margin-top: 5px;
}

.footer-desc p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ccc;
    width: 320px;
}

.footer-heading {
    font-size: 1.5rem; 
    margin-bottom: 15px;
    position: relative;
    color: #fff;  
}

.footer-heading::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #d4af37;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-heading:hover::after {
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37; 
}

.footer-newsletter {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.footer-newsletter input {
    width: calc(100% - 20px);
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-newsletter button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #d4af37; 
    color: #000; 
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter button:hover {
    background: #f0c14b; 
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc; 
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-desc p {
        margin: 0;
        font-size: 0.85rem;
        line-height: 1.4;
        color: #ccc;
        width: auto;
    }
    
    .footer-logo, .footer-desc, .footer-newsletter {
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        margin-left: 0; 
    }

    .footer-newsletter input {
        width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .footer-heading {
        font-size: 1.2rem; 
    }

    .footer-desc p {
        font-size: 0.8rem; 
    }
}
/* Footer Ending */





