body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.card {
    background-color: #2c7a7b;
    color: white;
   
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    position: relative;
    /* margin-top: 10%; */
    margin-bottom: 5%;
    margin-left: 20%;
    margin-right: 20%;
}

.card h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.card p:last-child {
    margin-bottom: 0;
}

.highlight-link {
    text-decoration: underline;
    color: white;
    font-weight: normal;
}

.icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}





/* Default transparent header (for homepage hero) */
.home-page .header-area {
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 999;
}

/* Solid header for other pages */
.contact-page .header-area,
.other-page .header-area {
    background: #04051a;   /* or white (#fff) depending on your theme */
    position: relative;
}


.faq-section .ques {
    text-align: center;
    /* margin-top: 8%; */
  
    font-size: 2.5rem;
    color: #070101;
}



.hero-section {
    height: 100vh;
    background: linear-gradient(90deg, rgb(191, 160, 70), rgb(255, 215, 0));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(188, 212, 215, 0.7);
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(188, 212, 215, 0.7);
    color: white;
}

 .faq-section .contact {
    
       font-size: 1.5rem;
       margin-left: 20%;
       margin-right: 20%;
 }

 /* Mobile css */

 @media (max-width: 768px) {
  .faq-section .contact {
    font-size: 0.875rem;   /* ~14px, better for readability on mobile */
    max-width: 60%;        /* keeps it centered and not too wide */
    margin: 0 auto;        /* centers the block */
    text-align: center;    /* centers the text */
  }
}


@media (max-width: 768px) {
  .card{
    /* margin-top: 37%; */
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .py-5 {
        padding: 2rem 0;
    }
    
    .faq-section .ques {
        font-size: 2rem;
        margin-top: 30%;
    }
    
    .card {
        padding: 20px;
        margin: 15px 0;
    }
    
    .card h2 {
        font-size: 20px;
        margin-bottom: 15px;
        padding-right: 50px;
    }
    
    .card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .icon {
        width: 30px;
        height: 30px;
        top: 15px;
        right: 15px;
    }
    .hero-image{
        height: 300px;
        /* margin-bottom: 40px; */
        margin-top: 40%;
    }
    
    .hero-content h1 {
       font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}
     




.ques {
  font-size: 3rem;
  margin-bottom: 50px;
  color: #fff;
  text-transform: uppercase;
}

.ques span {
  color: #d4af37; /* gold */
}


.highlight-link {
  color: #d4af37;
  text-decoration: underline;
  font-weight: bold;
}

.highlight-link:hover {
  color: #ffd700;
}



.hero-section {
    width: 120%;

}
.hero-content{
    margin-left: -10%;
}

/* 📱 Mobile override */
@media screen and (max-width: 768px) {
  .hero-section {
    width: 100% !important; /* Reset to full width */
  }

  .hero-content {
    margin-left: 0% !important; /* Reset to normal position */
  }
}
















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

        .faq-section {
            background: url('/static/images/faq-bg.jpg') center/cover no-repeat;
            color: #f8f8f8;
            text-align: center;
            padding: 80px 20px;
            position: relative;
        }

        .faq-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 0;
        }

        .faq-section * {
            position: relative;
            z-index: 1;
        }

        .ques {
            font-size: 3rem;
            margin-bottom: 50px;
            color: #fff;
            text-transform: uppercase;
        }

        .ques span {
            color: #d4af37;
        }

        .accordion-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .accordion-item {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.5);
            margin: 15px 0;
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            cursor: pointer;
            user-select: none;
            transition: background 0.3s ease;
        }

        .accordion-header:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        .accordion-title {
            font-size: 1.3rem;
            color: #d4af37;
            font-weight: 600;
            text-align: left;
        }

        .accordion-icon {
            font-size: 1.5rem;
            color: #d4af37;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
        }

        .accordion-item.active .accordion-content {
            max-height: 600px;
        }

        .accordion-text {
            padding: 20px 30px;
            font-size: 1.1rem;
            color: #f1f1f1;
            line-height: 1.7;
            max-height: 400px;
            overflow-y: auto;
        }

        .accordion-text::-webkit-scrollbar {
            width: 8px;
        }

        .accordion-text::-webkit-scrollbar-track {
            background: rgba(212, 175, 55, 0.1);
            border-radius: 10px;
        }

        .accordion-text::-webkit-scrollbar-thumb {
            background: rgba(212, 175, 55, 0.5);
            border-radius: 10px;
        }

        .accordion-text::-webkit-scrollbar-thumb:hover {
            background: rgba(212, 175, 55, 0.8);
        }

        .accordion-text strong {
            color: #fff;
            font-weight: 700;
        }

        .accordion-text p {
            margin: 0 0 15px 0;
        }

        .accordion-text p:last-child {
            margin-bottom: 0;
        }

        .accordion-text em {
            font-weight: 700;
            color: #d4af37;
        }

        .highlight-link {
            color: #d4af37;
            text-decoration: underline;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .highlight-link:hover {
            color: #ffd700;
        }

        .contact {
            text-align: center;
            margin-top: 50px;
        }

        .contact-button {
            display: inline-block;
            background: linear-gradient(45deg, #d4af37, #ffd700);
            color: #000;
            font-size: 1.2rem;
            font-weight: 700;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.6);
        }

        @media (max-width: 768px) {
            .ques {
                font-size: 2rem;
            }

            .accordion-header {
                padding: 20px;
            }

            .accordion-title {
                font-size: 1.1rem;
            }

            .accordion-text {
                font-size: 0.95rem;
                padding: 15px 20px;
            }

            .contact-button {
                font-size: 1rem;
                padding: 12px 30px;
            }
        }