
/* ============================= contactus (start) ============================= */

/* Contact Container Styles */
.contact-container {
    max-width: 1200px;
    margin: 100px auto 60px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h1 {
    font-family: "Cormorant", serif;
    font-size: 32px;
    color: #d68aa6;
    /* Pink accent */
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-grid {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #FFF0F5;
    /* Slightly darker pink background */
    border-radius: 8px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-box .icon {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    color: #FF99CC;
    /* Pink accent for icons */
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #666;
    /* Dark gray text */
}

.info-box p {
    font-size: 14px;
    color: #666;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form button {
    background-color: #d68aa6;
    /* Pink button color */
    color: white;
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: auto;
    width: fit-content;
    align-self: center;
    cursor: pointer;
}

.contact-form button:hover {
    background: transparent;
    color: #FF99CC;
    border-color: #FF99CC;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 153, 204, 0.3);
}

.message {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}

.message.success {
    background: #e6ffed;
    color: #28a745;
}

.message.error {
    background: #ffe6e6;
    color: #dc3545;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FF99CC;
    /* Pink button */
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #FF66B3;
    /* Slightly darker pink on hover */
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        margin: 80px auto 40px;
        padding: 15px;
    }

    .contact-header h1 {
        font-size: 28px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-form button {
        align-self: stretch;
        padding: 10px 25px;
        font-size: 0.9em;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        margin: 70px auto 30px;
        padding: 10px;
    }

    .contact-header h1 {
        font-size: 24px;
    }

    .contact-form button {
        padding: 8px 20px;
        font-size: 0.85em;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 35px;
        right: 28px;
    }
}

/* ============================= contactus (end) ============================= */

/* ============================= privacy-policy (start) ============================= */

/* Header Styles */
header {
    background: linear-gradient(90deg, #f8e1e9, #f5f5f5);
    color: #333;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

.header-title img {
    height: 92px;
    width: 278px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #d68aa6;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
}

/* Privacy Container Styles */
.privacy-container {
    max-width: 1200px;
    margin: 100px auto 60px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.privacy-header {
    text-align: center;
    margin-bottom: 30px;
}

.privacy-header h1 {
    font-family: "Cormorant", serif;
    text-transform: uppercase;
    font-size: 32px;
    color: #d68aa6;
    margin-bottom: 10px;
    font-weight: 600;
}

.privacy-header p {
    font-size: 16px;
    color: #555;
}

.privacy-header p strong {
    color: #333;
}

.privacy-content {
    padding: 20px;
    background: #f7eded;
    border-radius: 8px;
}

.privacy-content h2 {
    font-family: "Cormorant", serif;
    text-transform: uppercase;
    font-size: 24px;
    color: #d68aa6;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-content h3 {
    font-size: 20px;
    color: #d68aa6;
    margin: 20px 0 10px;
    font-weight: 600;
}

.privacy-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.privacy-content a {
    color: #d68aa6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: #c07a94;
}

/* Footer Styles */
footer {
    background: linear-gradient(90deg, #f8e1e9, #f5f5f5);
    color: #333;
    padding: 40px 20px;
    border-top: 1px solid #ddd;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.footer-section h3 {
    font-size: 20px;
    color: #d68aa6;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d68aa6;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter label {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    /* Screen reader accessible label */
}

.newsletter input[type="email"] {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    max-width: 250px;
}

.newsletter button {
    padding: 10px 20px;
    background: #d68aa6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #c07a94;
}

.social-links a {
    color: #555;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d68aa6;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #555;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d68aa6;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #c07a94;
    transform: translateY(-5px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }

    .header-title img {
        height: 40px;
        max-width: 150px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #f8e1e9;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 18px;
    }

    .hamburger {
        display: block;
    }

    .privacy-container {
        margin: 80px auto 40px;
        padding: 15px;
    }

    .privacy-header h1 {
        font-size: 28px;
    }

    .privacy-header p {
        font-size: 14px;
    }

    .privacy-content h2 {
        font-size: 20px;
    }

    .privacy-content h3 {
        font-size: 18px;
    }

    .privacy-content p,
    .privacy-content ul li {
        font-size: 14px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter input[type="email"] {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .social-links a {
        margin: 0 10px;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }

    .header-title img {
        height: 65px;
        max-width: 195px;
    }

    nav ul {
        top: 50px;
        padding: 15px;
    }

    nav ul li a {
        font-size: 16px;
    }

    .privacy-container {
        margin: 70px auto 30px;
        padding: 10px;
    }

    .privacy-header h1 {
        font-size: 24px;
    }

    .privacy-header p {
        font-size: 13px;
    }

    .privacy-content h2 {
        font-size: 18px;
    }

    .privacy-content h3 {
        font-size: 18px;
    }

    .privacy-content p,
    .privacy-content ul li {
        font-size: 13px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 35px;
        right: 28px;
    }
}

/* Fallback for AOS */
[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1000ms;
}

[data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================= privacy-policy (end) ============================= */

/* ============================= term-conditions (start) ============================= */

/* Header Styles */
header {
    background: linear-gradient(90deg, #f8e1e9, #f5f5f5);
    color: #333;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

.header-title img {
    height: 92px;
    width: 278px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #d68aa6;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
}

/* Terms Container Styles */
.terms-container {
    max-width: 1200px;
    margin: 100px auto 60px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.terms-header {
    text-align: center;
    margin-bottom: 30px;
}

.terms-header h1 {
    font-family: "Cormorant", serif;
    text-transform: uppercase;
    font-size: 32px;
    color: #d68aa6;
    margin-bottom: 10px;
    font-weight: 600;
}

.terms-header p {
    font-size: 16px;
    color: #555;
}

.terms-header p strong {
    color: #333;
}

.terms-content {
    padding: 20px;
    background: #f7eded;
    border-radius: 8px;
}

.terms-content h2 {
    font-size: 24px;
    color: #d68aa6;
    margin: 20px 0 10px;
    font-weight: 600;
}

.terms-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-content a {
    color: #d68aa6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: #c07a94;
}

/* Footer Styles */
footer {
    background: linear-gradient(90deg, #f8e1e9, #f5f5f5);
    color: #333;
    padding: 40px 20px;
    border-top: 1px solid #ddd;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.footer-section h3 {
    font-size: 20px;
    color: #d68aa6;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d68aa6;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input[type="email"] {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    max-width: 250px;
}

.newsletter button {
    padding: 10px 20px;
    background: #d68aa6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #c07a94;
}

.social-links a {
    color: #555;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d68aa6;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #555;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d68aa6;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #c07a94;
    transform: translateY(-5px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }

    .header-title img {
        height: 40px;
        max-width: 150px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #f8e1e9;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 18px;
    }

    .hamburger {
        display: block;
    }

    .terms-container {
        margin: 80px auto 40px;
        padding: 15px;
    }

    .terms-header h1 {
        font-size: 28px;
    }

    .terms-header p {
        font-size: 14px;
    }

    .terms-content h2 {
        font-size: 20px;
    }

    .terms-content p {
        font-size: 14px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter input[type="email"] {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .social-links a {
        margin: 0 10px;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }

    .header-title img {
        height: 65px;
        max-width: 195px;
    }

    nav ul {
        top: 50px;
        padding: 15px;
    }

    nav ul li a {
        font-size: 16px;
    }

    .terms-container {
        margin: 70px auto 30px;
        padding: 10px;
    }

    .terms-header h1 {
        font-size: 24px;
    }

    .terms-header p {
        font-size: 13px;
    }

    .terms-content h2 {
        font-size: 18px;
    }

    .terms-content p {
        font-size: 13px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 35px;
        right: 28px;
    }
}

/* ============================= term-conditions (end) ============================= */