@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #990066;
    --secondary-color: #6c0349;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --gray-light: #f5f5f5;
    --gray-medium: #ddd;
}

body {
    font-family: "Poppins", sans-serif !important;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 82px;
}

/* Navigation */
.nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 4px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.nav-list {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-link {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--primary-color);
}
.set-active {
    color: #906;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 5em 0 18em;
    background-size: cover !important;
    height: auto;
    background: #151514 url('../images/hero.jpg') center center repeat-x;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 885px;
}

.hero-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: 1px;
}
.set-text-underline {
    display: inline-block;
    border-bottom: 6px solid var(--primary-color);
    font-weight: 600;
}

.hero-text {
    font-size: 18px;
    line-height: 35px;
}

/* Service Tabs */
.service-tabs {
    margin-top: -150px;
    position: relative;
    z-index: 10;
}
.service-tabs .container {
    max-width: 1122px;
}

.tabs {
    display: flex;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.tab-button {
    font-family: "Poppins", sans-serif;
    flex: 1;
    padding: 10px;
    background: var(--white);
    border: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark);
    border-radius: 15px 15px 0px 0px;
}

.tab-button:hover {
    background: #f5f5f5;
}

.tab-button.active {
    background: var(--primary-color);
    color: var(--white);
}

.tab-content {
    background: var(--primary-color);
    padding: 42px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tab-pane {
    display: none;
    color: var(--white);
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block;
}

.tab-inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 235px;
}
.tab-icon img {
    max-height: 130px;
}

.tab-text-content {
    flex: 1;
    text-align: left;
}

.tab-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tab-text {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 25px;
    opacity: 0.95;
}

.tab-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 45px;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    scale: 1.02;
    opacity: 0.8;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 70px 0;
    background: var(--white);
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-color);
}

.about-content {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Terms Section */
.terms-section {
    padding: 70px 0;
    background: var(--white);
}

.terms-content {
    max-width: 1050px;
    margin: 0 auto;
    text-align: justify;
}

.terms-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.terms-h2 {
	font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 600;
}

/* Experts Section */
.experts-section {
    padding: 8rem 0;
    background: url('../images/bg-img.jpg');
    background-size: cover;
}

.experts-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.experts-text {
    flex: 1;
}

.experts-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.experts-text p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    color: var(--text-dark);
}

.experts-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.experts-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
    padding: 110px 0;
    background: #E8E8E8;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 60px 56px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.testimonial-icon-wrapper {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.testimonial-icon {
    width: 120px;
    height: 120px;
}

.stars {
    margin-bottom: 5px;
}

.star {
    color: #FFD700;
    font-size: 40px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.testimonial-author {
    font-size: 18px;
    margin-top: 38px;
    font-weight: 600;
    color: var(--text-dark);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 90px 0 0px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 90px;
    align-items: flex-start;
}

.footer-column {
    flex: 1;
}

.footer-left {
    max-width: 250px;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-right {
    max-width: 400px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.footer-links a {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-legal {
    margin-top: 45px;
}

.footer-icon {
    margin-bottom: 0;
}
.footer-icon img {
    height: 134px;
}
.footer-brand {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 600;
}

.footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    background-color: var(--secondary-color);
}

.copyright {
    font-size: 14px;
    margin-bottom: 6px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 1100px;
    margin: 0 auto;
}

/* Form Styles */
.contact-form {
    width: 100%;
}
.unsub-form {
    width: 75%;
}
.form-section .container {
    max-width: 915px;
    padding: 3em 20px;
}
.form-group {
    margin-bottom: 18px;
}
.form-title {
    font-size: 34px;
    text-align: center;
    margin-bottom: 48px;
}

.form-group label {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #2d3b48;
    text-transform: uppercase;
}

.form-group input,
.form-group select, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 8px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 1) 0%, rgba(228, 228, 228, 1) 99%);
    color: var(--text-dark);
    transition: all 0.3s;
    border: 1px solid #ced4da;
    font-family: "Poppins", sans-serif;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    padding-right: 50px;
}

/* Radio Groups */
.form-group-radio {
    margin-bottom: 40px;
}

.radio-label-main {
    display: block;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    line-height: 40px;
    text-transform: uppercase;
}
.set-mt-3 {
    margin-top: 3rem;
}
.radio-options {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
}

.radio-option input[type="radio"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.radio-option label {
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 400;
}

/* Security Notice */
.security-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.security-notice svg {
    flex-shrink: 0;
}

/* Terms Notice */
.terms-notice {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 300;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    max-width: 300px;
    padding: 16px 20px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 25, 91, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Disclaimer */
.disclaimer-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 20px;
}

.disclaimer-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.disclaimer-text a:hover {
    text-decoration: none;
}
.set-img-70 {
    height: 70px;
    margin-left: auto;
    margin-right: auto;
}
.set-text-hero-center {
    text-align: center;
    padding: 90px 0px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .experts-content {
        gap: 40px;
    }

    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    /* Header */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .nav-list.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 20px;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-dark);
    }

    /* Hero */
    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 15px;
    }

    /* Tabs */
    .tabs {
        flex-wrap: wrap;
    }

    .tab-button {
        flex: 1 1 calc(50% - 2px);
        min-width: calc(50% - 2px);
        padding: 18px 15px;
        font-size: 13px;
    }

    .tab-content {
        padding: 40px 20px;
    }

    .tab-inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .tab-icon {
        width: 80px;
        height: 80px;
    }

    .tab-text-content {
        text-align: center;
    }

    .tab-title {
        font-size: 28px;
    }

    .tab-buttons {
        justify-content: center;
    }

    /* Experts Section */
    .experts-content {
        flex-direction: column;
        gap: 30px;
    }

    .experts-text .section-title {
        text-align: center;
    }

    .experts-text p {
        text-align: center;
    }

    /* Testimonials */
    .testimonials-grid {
        flex-direction: column;
        gap: 60px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        max-width: 100%;
        width: 100%;
    }

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 576px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Logo */
    .logo-main {
        font-size: 12px;
    }

    .logo-sub {
        font-size: 10px;
    }

    /* Hero */
    .hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 14px;
        line-height: 22px;
    }

    /* Service Tabs */
    .service-tabs {
        margin-top: -150px;
    }

    .tab-button {
        padding: 15px 10px;
        border-radius: 0px;
        font-size: 12px;
    }

    .tab-inner {
        gap: 20px;
    }

    .tab-icon {
        width: 70px;
        height: 70px;
    }

    .tab-title {
        font-size: 24px;
    }

    .tab-text {
        font-size: 14px;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Section Titles */
    .section-title {
        font-size: 28px;
    }

    /* About */
    .about-text {
        font-size: 14px;
    }

    .about-text:first-child {
        font-size: 16px;
    }

    /* Sections */
    .about-section,
    .experts-section,
    .testimonials-section {
        padding: 50px 0;
        background-size: cover;
        background-position: center;
    }
    .experts-text p {
        font-size: 14px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 60px 20px 30px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonials-grid {
        gap: 50px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0px;

    }
    .footer-center {
        width: 100%;
    }
    .disclaimer {
        font-size: 10px;
    }
    .footer-description {
        font-size: 14px;
    }
    .form-title {
        font-size: 25px;
    }
    .radio-label-main {
        font-size: 25px !important;
        line-height: 32px;
    }
    .radio-option label {
        font-size: 16px;
    }
    .submit-btn {
        font-size: 18px;
    }
}

/* Animation for mobile menu */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
/*a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}*/
