/* 
  IT Protector Custom CSS 
  Font: Outfit (Google Fonts)
*/

:root {
    --primary-teal: #05b0a3;
    --primary-teal-light: #e6f7f6;
    --primary-teal-dark: #038f84;
    --dark-blue: #1b2f44;
    --dark-blue-header: rgba(27, 47, 68, 0.95);
    --footer-bg: #0a1c2e;
    --light-gray: #f8fafc;
    --light-gray-alt: #f1f5f9;
    --text-muted: #64748b;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #334155;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
.text-teal {
    color: var(--primary-teal) !important;
}

.bg-teal {
    background-color: var(--primary-teal) !important;
}

.bg-teal-light {
    background-color: var(--primary-teal-light) !important;
}

.text-dark-blue {
    color: var(--dark-blue) !important;
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

.bg-footer {
    background-color: var(--footer-bg) !important;
}

.bg-footer a.text-muted,
.bg-footer .text-muted {
    color: #94a3b8 !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

.bg-light-gray-alt {
    background-color: var(--light-gray-alt) !important;
}

.fs-7 {
    font-size: 0.875rem;
}

.fs-8 {
    font-size: 0.75rem;
}

.tracking-wide {
    letter-spacing: 1px;
}

.tracking-wider {
    letter-spacing: 2px;
}

.hover-teal:hover {
    color: var(--primary-teal) !important;
}

.hover-white:hover {
    color: #fff !important;
}

.transition {
    transition: all 0.3s ease;
}

/* Buttons */
.btn-teal {
    background-color: var(--primary-teal);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-teal:hover {
    background-color: var(--primary-teal-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-dark-blue {
    background-color: var(--dark-blue);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-dark-blue:hover {
    background-color: #122131;
    color: white;
    transform: translateY(-2px);
}

.form-card {
    background-color: #f1f5f9;
}

.form-card-header {
    background-color: #122238;
}

/* Review Card Styles */
.review-quote-icon {
    position: absolute;
    right: -10px;
    top: -20px;
    font-size: 8rem;
    color: rgba(165, 216, 255, 0.15);
    z-index: 0;
    pointer-events: none;
}

.btn.hover-scale:hover {
    transform: scale(1.05);
}

/* Header Area */
.header-area {
    transition: all 0.3s ease;
}

.top-bar {
    transition: all 0.3s ease;
}

.header-area.scrolled .top-bar {
    display: none !important;
}

/* Navbar */
.custom-navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

.interior-header .custom-navbar {
    background-color: var(--dark-blue);
}

.header-area.scrolled .custom-navbar {
    padding: 0.75rem 0;
    background-color: var(--dark-blue-header);
    backdrop-filter: blur(10px);
}

.custom-navbar .nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.custom-navbar .nav-link:hover {
    opacity: 1;
    color: var(--primary-teal) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 47, 68, 0.92) 0%, rgba(10, 28, 46, 0.98) 100%);
}

/* Breadcrumb Section */
.breadcrumb-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 180px;
    padding-bottom: 80px;
}

.avatar-sm {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.ms-n2 {
    margin-left: -0.5rem;
}

.hero-btn {
    line-height: 1.2;
}

/* Partners */
.partner-logo i {
    opacity: 0.8;
}

/* About / Founder Badge */
.founder-badge {
    /* bottom: -20px !important; */
    border-radius: 8px;
    white-space: nowrap;
}

.founder-card {
    padding-bottom: 20px;
}

/* Space for badge */

/* Features */
.feature-icon {
    width: 60px;
    height: 60px;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card.have-security:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(5, 176, 163, 0.15) !important;
}

.feature-card.dont-have-security:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

/* Trust Feature */
.trust-feature-card {
    background-color: #f3fcf6 !important;
    border-radius: 1rem;
    padding: 1.75rem;
    transition: transform 0.3s ease;
    border: none;
}

.trust-feature-card:hover {
    transform: translateY(-3px);
}

.trust-icon-box {
    width: 45px;
    height: 45px;
    background-color: var(--primary-teal);
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Team Section */
.team-card {
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img-wrap {
    background-color: #e2e8f0;
    overflow: hidden;
    width: 100%;
}

.team-info-box {
    margin-top: -30px;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Base (Mobile) */
.team-img-wrap {
    border-radius: 40px 40px 0 0;
}

.team-info-box {
    border-bottom: 4px solid var(--primary-teal);
}

/* Desktop Team Grid Details */
@media (min-width: 992px) {
    .team-col-1 .team-img-wrap {
        border-radius: 60px 0 0 0;
    }

    .team-col-2 .team-img-wrap {
        border-radius: 60px 60px 0 0;
    }

    .team-col-3 .team-img-wrap {
        border-radius: 0 60px 0 0;
    }

    .team-col-1 .team-info-box {
        border-bottom: none;
        border-left: 5px solid var(--primary-teal);
    }

    .team-col-2 .team-info-box {
        border-bottom: none;
    }

    .team-col-3 .team-info-box {
        border-bottom: none;
        border-right: 5px solid var(--primary-teal);
    }
}

/* Testimonials / Swiper */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #cbd5e1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-teal);
    width: 30px;
    border-radius: 6px;
}

.testimonial-wrapper .card {
    transition: transform 0.4s ease;
}

.testimonial-wrapper .card:hover {
    transform: translateY(-5px);
}

/* Layers Section */
.icon-circle {
    transition: transform 0.3s ease;
}

.layer-item:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.shield-graphic img {
    animation: shieldPulse 4s infinite alternate ease-in-out;
}

@keyframes shieldPulse {
    0% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 10px 15px rgba(0, 210, 181, 0.3)) saturate(100) hue-rotate(130deg);
    }

    100% {
        transform: translateY(-10px) scale(1.02);
        filter: drop-shadow(0 20px 25px rgba(0, 210, 181, 0.5)) saturate(120) hue-rotate(130deg);
    }
}

/* FAQ Accordion */
.custom-accordion .accordion-item {
    background-color: transparent;
}

.custom-accordion .accordion-button {
    background-color: var(--dark-blue);
    color: white;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-teal);
    color: white;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* When collapsed but has .bg-white we need to handle border-radius */
.custom-accordion .accordion-collapse {
    border: 1px solid #e2e8f0;
    border-top: none;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* Footer CTA */
.footer-cta {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-gradient-teal {
    background: linear-gradient(135deg, rgba(5, 176, 163, 0.92) 0%, rgba(3, 115, 106, 0.98) 100%);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .header-area .custom-navbar {
        background-color: var(--dark-blue);
        padding: 0.75rem 0;
    }

    h1.display-4 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding-top: 140px;
    }

    .breadcrumb-section {
        padding-top: 130px;
    }
}

@media (max-width: 767.98px) {
    h1.display-4 {
        font-size: 2rem;
    }

    .testimonial-wrapper .card {
        margin: 0;
        padding: 1.5rem !important;
    }

    .shield-image-wrapper {
        display: none;
    }

    /* Hide complicated graphic on mobile for space */
}