@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

:root {
    --header-purple-main: #6a1b9a;
    --header-purple-dark: #4a0072;
    --header-purple-light-bg: #f3e5f5;
    --header-red-logo: #f04362;
    --header-text-primary: #111827;
    --header-text-secondary: #4b5563;
    --header-white: #ffffff;
    --header-grey-light: #f9fafb;
    --header-grey-border: #e5e7eb;
    --header-dotted-border-color: #d1d5db;
    --header-glass-bg: rgba(255, 255, 255, 0.4);
    --header-transition-speed: 0.35s;
    --header-transition-easing: cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    padding-top: 80px;
}

.header {
    opacity: 1 !important;
    visibility: visible !important;
    font-family: 'Inter', sans-serif;
    color: var(--header-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--header-glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: fixed;
    border-bottom: 1px solid var(--header-grey-border);
    top: 0;
    z-index: 1002;
    width: 100%;
    min-height: 60px;
}

.header .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.header a, .header button {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    cursor: pointer;
}

.header ul { list-style: none; }
.header button { background: none; border: none; }

.header .navbar {
    display: flex;
    align-items: center;
    height: 80px;
    position: relative;
    padding: 0;
}

.header .logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-right: auto;
}

.header .logo img { width: 34px; height: 34px; }
.header .logo-text { color: var(--header-red-logo); }

.header .nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.header .nav-item, .header .dropdown-item { position: relative; }

.header .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--header-text-secondary);
    padding: 10px 16px;
    border-radius: 8px;
    transition: all var(--header-transition-speed) ease;
    white-space: nowrap;
}

.header .nav-link:hover,
.header .dropdown-item.is-open .dropdown-toggle {
    color: var(--header-purple-main);
    background-color: var(--header-purple-light-bg);
}

.header .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header .dropdown-chevron {
    transition: transform var(--header-transition-speed) var(--header-transition-easing);
}

.header .dropdown-item.is-open .dropdown-chevron {
    transform: rotate(180deg);
}

.header .nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header .cta-button {
    background-color: var(--header-white);
    color: #5D2A7B;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--header-purple-main);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--header-transition-speed) var(--header-transition-easing);
}

.header .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(106, 27, 154, 0.5);
}

.header .desktop-only { display: inline-flex; }

.header .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.header .hamburger-line {
    width: 24px;
    height: 2.5px;
    background-color: #374151;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
    border-radius: 1px;
}

.header .hamburger-line:nth-child(2) { margin: 5px 0; }

ma-header:empty {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--header-glass-bg);
    border-bottom: 1px solid var(--header-grey-border);
    z-index: 1001;
}

@media screen and (max-width: 767px) {
    *,
    *::before,
    *::after {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .header .container { padding: 0 16px; }
    .header .navbar { height: 70px; }
    .header .nav-menu { display: none; }
    .header .desktop-only { display: none !important; }
    .header .mobile-menu-toggle { display: flex; }
    .header .logo { font-size: 20px; }
    .header .logo img { width: 28px; height: 28px; }

    ma-header:empty { height: 70px; }
    body { padding-top: 70px; }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .header .container { padding: 0 20px; }

    .header .nav-menu { display: none; }
    .header .desktop-only { display: none !important; }
    .header .mobile-menu-toggle { display: flex; }
}

@media screen and (max-width: 388px) {
    .header .container { padding: 0 12px; }

    .header .mobile-menu-list li a {
        padding: 6px 10px;
        font-size: 13px;
    }

    .header .mobile-group-title {
        font-size: 14px;
        padding: 12px 0 8px;
    }

    .header .mobile-cta-section {
        padding: 16px 12px;
    }

    .header .mobile-cta-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}

body {
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    background-color: #fdfcff;
    color: #4B5563;
    box-sizing: border-box;
}

.proct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.proct-heading {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    background: linear-gradient(87.16deg, #8253C2 18.3%, #F45346 80.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.proct-heading-shield {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
}

.proct-description.shield-text {
    color: #FFFFFF;
    font-weight: 400;
}

.proct-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: #6F6C90;
}

.proct-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.proct-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: var(--font-weight-700);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.proct-btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 var(--font-4) 15px rgba(88, 28, 135, 0.2);
}

.proct-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(88, 28, 135, 0.3);
    color: var(--white);
}

.proct-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1rem;
    color: #450076;
}

.proct-hero {
    padding: 2rem;
}

.proct-hero .proct-container {
    max-width: 1350px;
    background-color: #FCF6FE;
    border-radius: 50px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.proct-hero-content {
    flex-basis: 55%;
    z-index: 5;
}

.proct-hero-image {
    flex-basis: 45%;
    align-self: stretch;
}

.proct-hero-person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.proct-why-choose-us,
.proct-designed-for,
.proct-secured,
.proct-features {
    padding: 5rem 2rem;
}

.proct-why-choose-us .proct-container,
.proct-designed-for .proct-container,
.proct-secured .proct-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.proct-designed-for,
.proct-secured{
    background-color: #F8F6FE;
}

.proct-shield {
    background-color: #833AAF;
}

.proct-why-choose-us-content,
.proct-designed-for-content,
.proct-secured-content {
    flex-basis: 50%;
}

.proct-why-choose-us-image,
.proct-designed-for-image,
.proct-secured-image {
    flex-basis: 50%;
    text-align: center;
}

.proct-why-choose-us-image img,
.proct-designed-for-image img,
.proct-secured-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.proct-why-choose-us .proct-designed-for-image img {
    width: 75%;
    max-width: 400px;
    margin-left: auto;
    margin-right: 0;
    display: block;
}

.proct-features {
    text-align: center;
}

.proct-features-heading {
    margin-bottom: 3rem;
}

.proct-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.proct-feature-item {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proct-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.proct-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: 5px;
}

.proct-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 0.5rem 0;
}

.proct-feature-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4B5563;
}

.proct-get-started {
    padding: 5rem 2rem;
}

.proct-get-started .proct-container {
    padding: 0;
}

.proct-cta-box {
    padding: 5rem 3rem;
    background: linear-gradient(34.54deg, rgba(225, 244, 255, 0.6) 12%, rgba(249, 225, 255, 0.8) 27%, rgba(255, 230, 233, 0.6) 100%);
    text-align: center;
    border-radius: 50px;
}

.proct-cta-box .proct-heading {
    font-size: 2.5rem;
}

.proct-cta-box p {
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #4E276B;
}

.proct-cta-box .proct-buttons {
    justify-content: center;
}

@media (max-width: 992px) {
    .proct-hero .proct-container,
    .proct-why-choose-us .proct-container,
    .proct-designed-for .proct-container,
    .proct-secured .proct-container {
        flex-direction: column;
        text-align: center;
    }

    .proct-hero-content,
    .proct-why-choose-us-content,
    .proct-designed-for-content,
    .proct-secured-content {
        order: 0;
        margin-bottom: 2rem;
    }

    .proct-hero-image,
    .proct-why-choose-us-image,
    .proct-designed-for-image,
    .proct-secured-image {
        order: 1;
        width: 100%;
        margin-bottom: 2rem;
    }

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

@media (max-width: 768px) {
    .proct-hero,
    .proct-why-choose-us,
    .proct-designed-for,
    .proct-secured,
    .proct-get-started {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .proct-why-choose-us,
    .proct-designed-for,
    .proct-secured {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .proct-hero .proct-container,
    .proct-cta-box {
        padding: 1.5rem;
        border-radius: 30px;
    }
    
    .proct-hero-content {
        width: 100%;
        max-width: 100%;
    }

    .proct-why-choose-us .proct-container,
    .proct-designed-for .proct-container,
    .proct-secured .proct-container {
       padding: 0;
    }


    .proct-heading {
        font-size: 2.25rem;
    }

    .proct-hero .proct-heading {
        text-align: center;
        line-height: 1.3;
    }

    .proct-hero .proct-description {
        text-align: justify;
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 1.5rem;
    }

    .proct-hero-image {
        min-height: 250px;
    }

    .proct-why-choose-us .proct-designed-for-image img {
        margin-left: 3rem;
        margin-right: auto;
    }

    .proct-features-grid {
        grid-template-columns: 1fr;
    }
}
