* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #0d47a1;
    --secondary: #0078ff;
    --accent: #012970;
    --red-accent: #dc143c;
    --red-light: #ff6b6b;
    --green-accent: #28a745;
    --green-light: #4caf50;
    --yellow-accent: #ffc107;
    --yellow-light: #ffd54f;
    --black-accent: #212529;
    --black-light: #343a40;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #333;
    overflow-x: hidden;
}
.fs-12{font-size: 12px !important;}
.fs-14{font-size: 14px !important;}
.fs-18{font-size: 18px !important;}
.fs-21{font-size: 21px !important;}
/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 8px 0;
    transition: all 0.3s;
}
.navbar.scrolled {
    background: rgb(135 157 191);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.navbar-brand img.hdr-logo {height: 45px;}
.nav-menu {gap: 2rem;}
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: var(--red-light) !important;
}
.navbar-nav .nav-link.active {
    color: var(--red-accent) !important;
}
/* Dropdown Custom Style */
.dropdown-menu {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 0;
    overflow: hidden;
}
.dropdown-item {
    color: #333;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}
.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}
/* Toggler Icon Override (for dark bg) */
.navbar-toggler {
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}
.navbar-toggler-icon {
    filter: invert(1);
}
/* Parallax Hero */
.parallax-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}
.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}
.parallax-bg {
    background: linear-gradient(rgb(161 178 208), rgba(13, 71, 161, 0.8)),
                url('http://www.phidesk.io/assets/images/home-pg-banner.webp')
                center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    transform: none;
}
.parallax-content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 10;
}
.parallax-content h1 {
    font-size: 6rem;
    animation: fadeInUp 1s ease-out;
}
.parallax-content p {
    font-size: 2rem;
    max-width: 800px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}
.parallax-btn {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--red-accent), var(--red-light));
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}
.parallax-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.5);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Floating Stats Cards */
.stats-floating {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: -80px;
    position: relative;
    z-index: 100;
    padding: 0 2rem;
    flex-wrap: wrap;
}
.stat-float-card {
    background: #fff;
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s;
}
.stat-float-card:nth-child(1) { border-top: 5px solid var(--green-accent); }
.stat-float-card:nth-child(2) { border-top: 5px solid var(--yellow-accent); }
.stat-float-card:nth-child(3) { border-top: 5px solid var(--red-accent); }
.stat-float-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.stat-float-card .num {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-float-card .label {
    color: #555;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* Image & Text Section */
.image-text-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin: 5rem 0;
}
.section-image {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.3), rgba(0, 120, 255, 0.3));
    z-index: 1;
}
.img-placeholder {
    background: linear-gradient(rgba(13, 71, 161, 0.8), rgba(0, 120, 255, 0.8)),
                url('http://www.phidesk.io/assets/images/vision-sec-img.webp') center/cover;
}
.section-text h2 {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 2rem;
    line-height: 1.2;
}
.section-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}
/* Department Masonry Grid - Fixed 5 Column Layout */
.dept-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}
.section-title-para {
    text-align: center;
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 3rem;
}
.dept-masonry-card {
    background: #fff;
    padding: 2rem 1.5rem;
    margin-bottom: 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Colorful border tops for each department */
.dept-masonry-card:nth-child(1) { border-top: 4px solid var(--primary); }
.dept-masonry-card:nth-child(2) { border-top: 4px solid var(--red-accent); }
.dept-masonry-card:nth-child(3) { border-top: 4px solid var(--green-accent); }
.dept-masonry-card:nth-child(4) { border-top: 4px solid var(--yellow-accent); }
.dept-masonry-card:nth-child(5) { border-top: 4px solid var(--black-accent); }
.dept-masonry-card:nth-child(6) { border-top: 4px solid var(--secondary); }
.dept-masonry-card:nth-child(7) { border-top: 4px solid var(--red-light); }
.dept-masonry-card:nth-child(8) { border-top: 4px solid var(--green-light); }
.dept-masonry-card:nth-child(9) { border-top: 4px solid var(--yellow-light); }
.dept-masonry-card:nth-child(10) { border-top: 4px solid var(--black-light); }
.dept-masonry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.dept-icon-para {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.dept-masonry-card h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    min-height: 2.2rem;
}
.dept-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red-accent), var(--red-light));
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.dept-masonry-card p {
    color: #555;
    line-height: 1.7;
}
/* Parallax Section - Workflow */
.parallax-workflow {
    position: relative;
    background: linear-gradient(rgba(1, 41, 112, 0.95), rgba(13, 71, 161, 0.9)),
                url('http://www.phidesk.io/assets/images/workflow-home-img.webp') center/cover fixed;
    padding: 8rem 2rem;
    color: #fff;
}
.workflow-para-content {
    max-width: 1200px;
    margin: 0 auto;
}
.workflow-para-content h3 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
}
.workflow-para-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
}
.workflow-para-step {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}
.workflow-para-step:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
.workflow-para-num {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--red-accent), var(--red-light));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}
.workflow-para-step h4 {
    font-size: 1.1rem;
}
/* Revenue Cards with Image BG */
.revenue-para {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}
.revenue-para-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
.revenue-para-card:nth-child(1) {
    background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(0, 120, 255, 0.85)),
                url('http://www.phidesk.io/assets/images/studies-banner.webp') center/cover;
}
.revenue-para-card:nth-child(2) {
    background: linear-gradient(rgba(0, 120, 255, 0.9), rgba(13, 71, 161, 0.85)),
                url('http://www.phidesk.io/assets/images/revenue-sec-img.webp') center/cover;
}
.revenue-para-card .big-percent {
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
}
.revenue-para-card h3 {
    font-size: 2.5rem;
    margin: 1.5rem 0;
}
.revenue-para-card p {
    font-size: 1.2rem;
    opacity: 0.95;
}
/* Value Section Alternating */
.value-para-section {
    margin: 3rem 0;
}
.value-para-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 3rem;
}
.value-para-row:nth-child(even) {
    direction: rtl;
}
.value-para-row:nth-child(even) > * {
    direction: ltr;
}
.value-image {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.value-image-1 {
    background: linear-gradient(rgba(13, 71, 161, 0.7), rgba(0, 120, 255, 0.7)),
                url('http://www.phidesk.io/assets/images/tst-banner.webp') center/cover;
}
.value-image-2 {
    background: linear-gradient(rgba(0, 120, 255, 0.7), rgba(13, 71, 161, 0.7)),
                url('http://www.phidesk.io/assets/images/publ-val-img.webp') center/cover;
}
.value-para-content h4 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}
.value-para-content ul {
    list-style: none;
}
.value-para-content li {
    padding: 1.2rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 1.15rem;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}
.value-para-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red-accent);
    font-size: 1.5rem;
    font-weight: 700;
}
/* Parallax CTA */
.parallax-cta {
    position: relative;
    background: linear-gradient(rgb(25 58 108 / 90%), rgb(68 78 90 / 90%)), url('http://www.phidesk.io/assets/images/parallax-cta.webp') center / cover fixed;
    padding: 8rem 2rem;
    text-align: center;
    color: #fff;
    margin: 3rem 0;
}
.parallax-cta h3 {
    font-size: 2.9rem;
    margin-bottom: 1.5rem;
}
.parallax-cta p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
}
.btn-para {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
}
.btn-para:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #fff;
    padding: 4rem 0;
    margin-top: 2rem;
}
.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #fff;
}
.footer-column p{color: rgba(255, 255, 255, 0.8);}
.footer-column ul {
    list-style: none;
    padding-left: 1rem;
}
.footer-column ul li {
    margin-bottom: 0.8rem;
}
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}
.footer-column a:hover {
    color: var(--red-light);
    padding-left: 0.5rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.social-icon:hover {
    color: #fff !important;
    padding-left: 0 !important;
    background: var(--red-accent);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-bottom-links a:hover {
    color: var(--red-light);
}
.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red-accent), var(--red-light));
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2000;
}
.scroll-top-btn:hover {
    transform: translateY(-4px);
}
.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* contact page */
.hero {
    margin-top: 0;
    background: linear-gradient(rgb(161 178 208), rgba(13, 71, 161, 0.8)),
                url('http://www.phidesk.io/assets/images/hero-banner.webp') center/cover fixed;
    padding: 8rem 2rem;
    text-align: center;
    color: #fff;
}
.career-banner {
    background: linear-gradient(rgb(161 178 208), rgba(13, 71, 161, 0.8)),
                url('http://www.phidesk.io/assets/images/career-banner.webp') center/cover fixed;
}
.faq-banner {
    background: linear-gradient(rgb(161 178 208), rgba(13, 71, 161, 0.8)),
                url('http://www.phidesk.io/assets/images/faq-banner.webp') center/cover fixed;
}
.help-banner {
    background: linear-gradient(rgb(161 178 208), rgba(13, 71, 161, 0.8)),
                url('http://www.phidesk.io/assets/images/help-banner.webp') center/cover fixed;
}
.dashboard-banner {
    background: linear-gradient(rgb(161 178 208), rgba(13, 71, 161, 0.8)),
                url('http://www.phidesk.io/assets/images/dashboard-banner.webp') center/cover fixed;
}
.event-banner {
    background: linear-gradient(rgb(161 178 208), rgba(13, 71, 161, 0.8)),
                url('http://www.phidesk.io/assets/images/event-banner.webp') center/cover fixed;
}
.services-banner {
    background: linear-gradient(rgb(161 178 208), rgba(13, 71, 161, 0.8)),
                url('http://www.phidesk.io/assets/images/event-banner.webp') center/cover fixed;
}
.security-banner {
    background: linear-gradient(rgb(161 178 208), rgba(13, 71, 161, 0.8)),
                url('http://www.phidesk.io/assets/images/security-banner.webp') center/cover fixed;
}
.tst-banner {
    background: linear-gradient(rgb(161 178 208), rgba(13, 71, 161, 0.8)),
                url('http://www.phidesk.io/assets/images/tst-banner.webp') center/cover fixed;
}
.studies-banner {
    background: linear-gradient(rgb(161 178 208), rgba(13, 71, 161, 0.8)),
                url('http://www.phidesk.io/assets/images/studies-banner.webp') center/cover fixed;
}
.hero h1 { font-size: 4.5rem; font-weight: 700; margin-bottom: 1.5rem; animation: fadeInUp 1s ease-out;}
.hero p { font-size: 1.6rem; margin: auto 5rem; animation: fadeInUp 1s ease-out 0.3s both;}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1; 
        transform: translateY(0);
    }
}
.hrs-sec-hdng{
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}
/* Contact Methods Grid */
.contact-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.contact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.contact-card h3 {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.contact-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.rsps{
    color: var(--secondary) !important;
    font-weight: 600;
}
.contact-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}
.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.3);
}
/* Contact Form */
.form-section {
    background: linear-gradient(to bottom, #eaf3ff, #f9fbff);
    padding: 4rem 2rem;
    margin: 3rem 0;
}
.contact-from-cntnt {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.form-group {
    margin-bottom: 2rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.3);
}
/* Regional Offices */
.office-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
    margin: 0 auto;
}
.office-card h4 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.office-info {
    color: #555;
    line-height: 1.8;
}
.office-info p {
    margin: 0.5rem 0;
}
/* Support Hours */
.hours-section {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 3rem 0;
}
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.hours-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f9fbff, #eaf3ff);
    border-radius: 12px;
}
.hours-item h5 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* career page */
.file-upload {
    border: 2px dashed #e0e0e0;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}
.file-upload:hover {
    border-color: var(--secondary);
    background: #f9fbff;
}
/* Role Cards */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}
.role-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.role-card:nth-child(1) { border-top: 5px solid var(--primary); }
.role-card:nth-child(2) { border-top: 5px solid var(--red-accent); }
.role-card:nth-child(3) { border-top: 5px solid var(--green-accent); }
.role-card:nth-child(4) { border-top: 5px solid var(--yellow-accent); }
.role-card:nth-child(5) { border-top: 5px solid var(--black-accent); }
.role-card:nth-child(6) { border-top: 5px solid var(--secondary); }
.role-card:nth-child(7) { border-top: 5px solid var(--red-light); }
.role-card:nth-child(8) { border-top: 5px solid var(--green-light); }
.role-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.role-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.role-card h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.role-dept {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.role-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.role-requirements {
    list-style: none;
    margin: 1.5rem 0;
}
.role-requirements li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}
.role-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}
.apply-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}
.apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.3);
}
/* Application Form Section */
.career-form-cntnt {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
/* Training Schedule */
.training-schedule {
    margin: 5rem 0;
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}
.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}
.timeline-content {
    width: 45%;
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 1);
}
.timeline-content h4 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.timeline-content .duration {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}
/* Benefits Section */
.benefits-section {
    background: linear-gradient(rgba(1, 41, 112, 0.95), rgba(13, 71, 161, 0.9)),
                url('http://www.phidesk.io/assets/images/tst-banner.webp') center/cover fixed;
    padding: 5rem 2rem;
    color: #fff;
    margin: 4rem 0;
}
.benefits-grid {
    max-width: 1200px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.benefit-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}
.benefit-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
}
.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* faq page */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0 4rem;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 1rem 3rem;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}
.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.3);
}
/* FAQ Sections */
.faq-section {
    display: none;
    animation: fadeIn 0.5s ease-out;
}
.faq-section.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.section-header p {
    font-size: 1.2rem;
    color: #555;
}
.faq-list {
    display: grid;
    gap: 1.5rem;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(to right, #f9fbff, #fff);
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
}
.faq-question:hover {
    background: linear-gradient(to right, #eaf3ff, #f9fbff);
}
.faq-question h3 {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}
.faq-icon {
    font-size: 0.9rem;
    color: var(--secondary);
    transition: transform 0.3s;
    font-weight: 700;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-answer-content {
    padding: 1.5rem 2rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    border-top: 1px solid #f0f0f0;
}
/* Search Bar */
.search-container {
    max-width: 700px;
    margin: 4rem auto 4rem;
}
.search-box {
    position: relative;
}
.search-input {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    transition: all 0.3s;
}
.search-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1);
}
.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--secondary);
}
/* Stats Section */
.stats-section {
    background: linear-gradient(to bottom, #eaf3ff, #f9fbff);
    padding: 4rem 2rem;
    margin: 4rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}
.stat-label {
    color: #555;
    margin-top: 0.5rem;
}

/* help page */
.search-box {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.search-box input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    font-size: 1.1rem;
    outline: none;
}
.search-box button {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
}
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}
.quick-link-card {
    display: block;
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.quick-link-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.quick-link-card h4 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
/* Articles Grid */
.articles-category {
    margin: 5rem 0;
}
.category-header {
    background: linear-gradient(135deg, #eaf3ff, #f9fbff);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}
.category-header h3 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.articles-list {
    display: grid;
    gap: 1.5rem;
}
.article-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary);
    transition: all 0.3s;
    cursor: pointer;
}
.article-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.article-item h4 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.article-item p {
    color: #555;
    line-height: 1.7;
}
.article-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
}
/* Video Tutorials */
.video-section {
    background: linear-gradient(to bottom, #eaf3ff, #f9fbff);
    padding: 3rem 2rem;
    margin: 2rem 0;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto;
}
.video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.video-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    cursor: pointer;
}
.video-content {
    padding: 2rem;
}
.video-content h4 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.video-duration {
    display: inline-block;
    background: #eaf3ff;
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.help-faq-section {
    max-width: 900px;
    margin: 3rem auto;
} 
.help-faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f9fbff, #eaf3ff);
}
.help-faq-question h4 {
    color: var(--accent);
    font-size: 1.2rem;
}
.help-faq-answer {
    padding: 0 2rem 2rem;
    color: #555;
    line-height: 1.8;
}
/* Contact Support */
.support-cta {
    background: linear-gradient(rgba(1, 41, 112, 0.95), rgba(13, 71, 161, 0.9)),
                url('http://www.phidesk.io/assets/images/help-support-img.webp') center/cover fixed;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}
.support-cta h4 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.support-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}
.support-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}
.support-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* events page css */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}
.event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.event-date {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 2rem;
    text-align: center;
}
.event-day {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}
.event-month {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.event-content {
    padding: 2.5rem;
}
.event-type {
    display: inline-block;
    background: #eaf3ff;
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.event-content h3 {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.event-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.event-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
}
.register-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}
.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.3);
}
/* Past Events */
.past-events {
    background: linear-gradient(to bottom, #eaf3ff, #f9fbff);
    padding: 4rem 2rem;
    margin: 3rem 0;
}
.past-event-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 2rem;
    align-items: center;
}
.past-event-date {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f9fbff, #eaf3ff);
    border-radius: 8px;
}
.past-event-date .day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}
.past-event-info h4 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.recording-btn {
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
}

/* services page css */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    animation: fadeIn 0.6s ease-out;
}
.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.service-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 3rem;
    text-align: center;
    font-size: 5rem;
}
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--red-accent), var(--red-light));
}
.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--green-accent), var(--green-light));
}
.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, var(--yellow-accent), var(--yellow-light));
}
.service-content {
    padding: 3rem;
}
.service-content h4 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.service-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.service-features {
    list-style: none;
    padding-left: 1rem;
    margin: 1.5rem 0;
}
.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
}
.service-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}
.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.3);
}
.publication-section {
    background: linear-gradient(to bottom, #eaf3ff, #f9fbff);
    padding: 3rem 2rem;
    margin: 2rem 0;
}
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.workflow-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
/* .workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px 16px 0 0;
} */
.workflow-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.workflow-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}
.workflow-card h4 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.workflow-card p {
    color: #555;
    line-height: 1.8;
}
.pricing-section {
    margin: 4rem 0;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}
.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
}
.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: scale(1.05);
}
.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}
.pricing-badge {
    background: #ffd700;
    color: #012970;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}
.pricing-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}
.pricing-card.featured .pricing-title {
    color: #fff;
}
.pricing-price {
    font-size: 4rem;
    font-weight: 700;
    margin: 1.5rem 0;
}
.pricing-price span {
    font-size: 1.5rem;
    font-weight: 400;
}
.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}
.pricing-features li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}
.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.3rem;
}
.pricing-card.featured .pricing-features li::before {
    color: #ffd700;
}
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
    margin: 2rem 0;
}
.cta-section h4 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.cta-section p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-btn {
    display: inline-block;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}
.cta-btn-primary {
    background: #fff;
    color: var(--primary);
}
.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}


/* security page css */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0 4rem;
}
.security-card {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary);
}
.security-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.security-card h4 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.security-card p {
    color: #555;
    line-height: 1.8;
}
.compliance-section {
    background: linear-gradient(to bottom, #eaf3ff, #f9fbff);
    padding: 4rem 2rem;
    margin: 3rem 0;
}
.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}
.badge {
    background: #fff;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}
.badge-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.badge h4 {
    color: var(--accent);
    font-size: 1.2rem;
}
.practices-list {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.practices-list ul {
    list-style: none;
}
.practices-list li {
    padding: 1.5rem 0;
    padding-left: 3rem;
    position: relative;
    color: #555;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
}
.practices-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.policy-highlight-card{
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.policy-highlight-card h4{
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.policy-highlight-card p{
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.read-more-policy{
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* dashboard page css */
.section-desc {
    text-align: center;
    color: #555;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}
.dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}
.screenshot-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}
.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.screenshot-img {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #eaf3ff, #f9fbff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 3px solid var(--primary);
}
.screenshot-content {
    padding: 2rem;
}
.screenshot-content h3 {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.screenshot-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.screenshot-features {
    list-style: none;
    margin-top: 1.5rem;
}
.screenshot-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}
.screenshot-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}
.video-demo-section {
    background: linear-gradient(to bottom, #eaf3ff, #f9fbff);
    padding: 4rem 2rem;
    margin: 3rem 0;
}
.video-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.video-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    cursor: pointer;
    transition: all 0.3s;
}
.video-placeholder:hover {
    transform: scale(1.02);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary);
    transition: all 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.feature-card h4 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.feature-card p {
    color: #555;
    line-height: 1.7;
}
.dashboard-cta {
    background: linear-gradient(rgba(1, 41, 112, 0.95), rgba(13, 71, 161, 0.9)),
                url('http://www.phidesk.io/assets/images/studies-banner.webp') center/cover fixed;
}

/* testimonials page css */
.tst-stats-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 3rem 2rem;
    margin: 0 0 3rem 0;
}
.tst-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.tst-stat-number {
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.tst-stat-label {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.95;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}
.testimonial-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    animation: fadeIn 0.6s ease-out;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.quote-icon {
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 2rem;
}
.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #eaf3ff;
}
.author-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}
.author-info h4 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.author-info p {
    color: #777;
    font-size: 0.95rem;
}
.author-info .journal-name {
    color: var(--secondary);
    font-weight: 600;
    margin-top: 0.2rem;
}
.rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}
.tst-vid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.tst-video-thumbnail {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #eaf3ff, #f9fbff);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    transition: all 0.3s;
}
.tst-video-thumbnail:hover .play-button {
    transform: scale(1.1);
}
.tst-video-info {
    padding: 2rem;
}
.tst-video-info h4 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.tst-video-info p {
    color: #555;
    line-height: 1.6;
}
.partners-section {
    padding: 2rem;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}
.partner-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.partner-card:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.partner-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
}
.partner-card h4 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.partner-type {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.partner-info {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}
.trust-section {
    background: #fff;
    padding: 2rem;
}
.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 3rem auto;
}
.trust-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}
.trust-badge h4 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.trust-badge p {
    color: #777;
    font-size: 0.9rem;
}

/* case studies page css */
.case-stat-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 3rem 2rem;
}
.case-stat-label {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}
.case-studies-grid {
    display: grid;
    gap: 2.5rem;
    margin: 3rem 0;
}
.case-study {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.case-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 3rem;
}
.case-header h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.case-meta {
    display: flex;
    gap: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}
.case-body {
    padding: 3rem;
}
.case-challenge {
    margin-bottom: 2rem;
}
.case-challenge h4 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.case-challenge p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}
.case-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top:1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #eaf3ff;
}
.result-item {
    text-align: center;
}
.result-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}
.result-label {
    color: #555;
    margin-top: 0.5rem;
}
.case-testimonials-section {
    background: linear-gradient(to bottom, #eaf3ff, #f9fbff);
    padding: 3rem 2rem;
    margin: 2rem 0;
}
.case-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 2rem auto;
}
.case-testimonial-card {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.case-testimonial-text {
    font-style: italic;
    margin: 0 0 2rem 0;
}
.case-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.case-author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}
.case-author-info h5 {
    color: var(--accent);
    font-size: 1.1rem;
}
.case-author-info p {
    color: #777;
    font-size: 0.9rem;
}



/* Responsive */
@media (max-width: 1200px) {
    .dept-masonry { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .parallax-content h1 { font-size: 3rem; }
    .image-text-section { grid-template-columns: 1fr; }
    .dept-masonry { grid-template-columns: repeat(2, 1fr); }
    .workflow-para-grid { grid-template-columns: 1fr; }
    .revenue-para { grid-template-columns: 1fr; }
    .value-para-row { grid-template-columns: 1fr; }
    .value-para-row:nth-child(even) { direction: ltr; }
    .hero h1 { font-size: 2.5rem; }
    .hero p {margin: 0px;}
    .roles-grid {grid-template-columns: 1fr;}
    .timeline::before {left: 30px;}
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        text-align: left !important;
    }
    .timeline-number {left: 30px;}
    .category-tabs { gap: 1rem; }
    .tab-btn { padding: 0.8rem 2rem; font-size: 1rem; }
    .past-event-item { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .dashboard-tabs { flex-direction: column; }
}
@media (max-width: 480px) {
    .dept-masonry { grid-template-columns: 1fr; }
    .stats-floating{gap: 2rem;margin-top: -50px;}
    .contact-form-hdng{font-size: 1.8rem;}
    .contact-from-cntnt{padding: 3rem 2rem !important;}
}