/* Biski Font */
@font-face {
    font-family: 'Biski';
    src: url('fonts/biski/BiskiTrial-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Helvetica Font */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/helvetica/helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Styled company name */
.company-name {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-weight: normal;
}

.biski-x {
    font-family: 'Biski', sans-serif;
    color: #00c3f5;
    font-weight: bold;
    font-size: 1.4em;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    margin: 0;
    padding: 0;
    padding-top: 80px; /* Space for fixed navigation */
    font-size: 1.05rem; /* Base font size increase */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    padding: 0.8rem 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    position: relative;
    z-index: 1001;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    padding: 10px;
    margin-right: -10px;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #00c3f5;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .hamburger-icon span,
.hamburger-menu.active .hamburger-icon span {
    background-color: #fff;
}

/* Mobile Navigation Styles */
@media (max-width: 1101px) {
    .hamburger-menu {
        display: block;
    }
    
    /* Adjust container padding for mobile */
    .nav-container {
        padding: 0 1.5rem;
    }
    
    /* Make logo smaller on mobile */
    .nav-logo-img {
        height: 40px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s, transform 0.3s;
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links > a, 
    .nav-links .dropbtn, 
    .nav-links .nav-item {
        font-size: 1.4rem;
        padding: 0.8rem;
    }
    
    .dropdown {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-content {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
        box-shadow: none;
        border: none;
        background-color: #111;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
    }
    
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 300px;
        transition: max-height 0.5s ease, opacity 0.3s ease, visibility 0.3s, transform 0.3s;
    }
    
    /* Add a close button for the mobile menu */
    .nav-links::before {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
    }
}

/* Specific adjustments for iPhone 12 and similar sized devices */
@media (min-width: 375px) and (max-width: 414px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo-img {
        height: 35px;
    }
    
    .hamburger-icon {
        width: 25px;
        height: 18px;
        padding: 8px;
    }
    
    /* Hero section adjustments for iPhone 12 */
    .hero {
        height: 100vh;
    }
    
    .hero-container {
        padding: 1.5rem 1rem;
    }
    
    .hero-logo-img {
        max-width: 80%;
        height: auto;
    }
    
    .solution-btn, .solution-btn-dropdown {
        width: 95%;
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
}

/* Extra small devices (iPhone SE, etc) */
@media (max-width: 374px) {
    .hero {
        height: 100vh;
    }
    
    .hero-container {
        padding: 1rem;
    }
    
    .hero-logo-img {
        max-width: 75%;
        height: auto;
    }
    
    .services-line {
        font-size: 0.9rem;
    }
    
    .support-line {
        font-size: 0.85rem;
    }
    
    .solution-btn, .solution-btn-dropdown {
        width: 100%;
        font-size: 0.85rem;
        padding: 0.5rem;
        min-height: 40px;
    }
}

.nav-links > a, .nav-links .dropbtn, .nav-links .nav-item {
    color: white;
    text-decoration: none;
    padding: 1rem;
    transition: color 0.3s ease;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    line-height: 45px;
    display: inline-block;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    padding: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00c3f5;
}

.nav-links a.active, .nav-links .dropdown.active > .dropbtn, .nav-links .nav-item.active {
    color: #00c3f5;
    font-weight: 500;
}

.nav-links > a:hover, .nav-links .dropbtn:hover, .nav-links .nav-item:hover {
    color: #00c3f5;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 1rem;
    transition: color 0.3s ease;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    line-height: 45px;
    display: inline-block;
}

.nav-link:hover {
    color: #00c3f5;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000000;
    min-width: 160px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: 1px solid #333;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-content a:hover {
    background-color: #2a2a2a;
    color: #00c3f5;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropbtn {
    cursor: pointer;
    position: relative;
    padding-right: 1.8rem;
}

.dropbtn::after {
    content: '▼';
    font-size: 0.8rem;
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #00c3f5;
}

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

.hero {
    height: calc(100vh - 80px); /* Subtract the body padding */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    position: relative;
    margin-top: -80px; /* Pull up to fill the space */
    overflow: hidden;
    max-width: 100%;
    min-height: 600px; /* Ensure minimum height on small screens */
    padding-top: 40px; /* Add padding to prevent logo from hiding behind nav */
}

.background-video-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6);
    opacity: 0.3;
}

@media (max-width: 992px) {
    .background-video-hero {
        height: 100vh; /* Ensure video covers full viewport height */
        object-position: center; /* Center the video content */
    }
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 3rem;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Media query for responsive layout */
@media (max-width: 992px) {
    .hero {
        height: 100vh; /* Full viewport height */
        min-height: auto; /* Remove min-height constraint */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-container {
        justify-content: center;
        padding: 2rem 1.5rem; /* Reduce padding */
        height: auto; /* Allow content to determine height */
        min-height: 0;
    }
    
    .hero-right, .mobile-hide {
        display: none !important;
    }
    
    .hide-on-mobile {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        pointer-events: none !important;
        clip: rect(0, 0, 0, 0) !important;
    }
    
    .hero-left {
        width: 100% !important;
        max-width: 100% !important;
    }
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    min-width: 300px;
    max-width: 600px;
    transition: all 0.3s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

@media (max-width: 992px) {
    .hero-left {
        align-items: center;
        text-align: center;
        margin-bottom: 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-logo {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
    }
    
    .hero-tagline {
        align-items: center;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .tagline-wrapper {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .services-line, .support-line {
        text-align: center !important;
        width: 100%;
        display: block;
    }
    
    .services-line span, .support-line span, .highlight-service, .highlight-security, .tagline-static {
        text-align: center !important;
        display: inline-block;
        width: auto;
        word-break: keep-all;
        hyphens: none;
        overflow-wrap: normal;
    }
    
    .hero-tagline p {
        text-align: center !important;
    }
    
    .solution-buttons {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .solution-btn, .solution-btn-dropdown {
        margin: 0.1rem auto;
        width: 90%;
        max-width: 280px;
        min-height: 45px;
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
        white-space: normal;
        height: auto;
    }
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    min-width: 300px;
    max-width: 600px;
    overflow: hidden;
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

.carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    max-width: 500px;
}

.solutions-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slides-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    gap: 20px;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding: 0 10px;
    box-sizing: border-box;
}

.solutions-box {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 195, 245, 0.3);
    overflow: hidden;
    height: clamp(280px, 40vh, 350px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.solutions-box h2 {
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #00c3f5;
    margin-bottom: 0.75rem;
    white-space: normal; /* Allow text to wrap */
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.2;
    max-height: 2.4em; /* Limit to 2 lines */
    overflow: hidden;
}

.solutions-box p {
    font-size: clamp(0.75rem, 2vw, 1rem);
    line-height: 1.3;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-height: 3.9em; /* Limit to 3 lines */

    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Media query for carousel on mobile devices */
@media (max-width: 768px) {
    .carousel-container {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .carousel-slide {
        min-width: 100%;
        padding: 0;
    }
    
    .carousel-slides-container {
        gap: 0;
    }
    
    .solutions-box {
        margin: 0 auto;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.carousel-dots {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.dot.active {
    background-color: white;
}

.get-started-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #00c3f5;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 195, 245, 0.4);
}

.hero-right-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    animation: fadeIn 1.5s ease-in-out;
    margin-top: 0;
    margin-right: 0;
    position: relative;
    right: 0;
    display: block;
    transform: scale(1.2);
    align-items: center; 
}

.hero-logo {
    margin-bottom: 1.5rem;
    text-align: left;
    margin-top: 1rem;
}

.hero-logo-img {
    max-width: 25rem;
    width: 100%;
    height: auto;
    animation: fadeIn 1.5s ease-in-out;
    transition: all 0.3s ease;
}

.hero-slogan {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e0e0e0;
    text-align: center;
    margin: 1rem 0 0.5rem;
    animation: fadeIn 2s ease-in-out;
}

.hero-tagline {
    max-width: 100%;
    margin: 0 0 1.5rem;
    text-align: left;
    animation: fadeIn 2s ease-in-out;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero-tagline p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #e0e0e0;
    font-weight: 500;
    padding: 0;
    margin-bottom: 0.5rem;
}

.services-line {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    white-space: normal; /* Allow text to wrap */
    display: block;
    text-align: left;
    width: 100%;
}

.support-line {
    margin-top: 0.5rem;
    text-align: left;
    margin-bottom: 2rem;
    color: #919090 !important;
    display: block;
    white-space: normal; /* Allow text to wrap */
    width: 100%;
}

.tagline-static {
    color: inherit;
}

.letter {
    display: inline-block;
    transform-origin: center;
    opacity: 1 !important;
}

.tagline-static, .highlight-security {
    display: inline-block;
    white-space: normal;
}

.space {
    display: inline-block;
    width: 0.3em;
}

.highlight-security {
    color: #00c3f5;
}

.highlight-service {
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    transition: color 0.3s ease;
}

.highlight-service:hover {
    color: #5fb8e6;
}

.scroll-indicator {
    text-align: center;
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 26, 26, 0.7);
    padding: 10px 0;
    margin: 20px auto 0;
    width: 120px;
    border-radius: 20px;
}

.scroll-indicator p {
    font-size: 1rem;
    margin: 0;
    color: #e0e0e0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #00c3f5;
    border-radius: 15px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #00c3f5;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Solution Buttons */
.solution-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 1rem;
    animation: fadeIn 1s ease-in-out 1.5s forwards;
    opacity: 0;
    flex-wrap: wrap;
    width: 100%;
}

.solution-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: #00c3f5;
    border: 2px solid #00c3f5;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    min-width: 180px;
    box-sizing: border-box;
}

.solution-btn:hover {
    background-color: rgba(0, 195, 245, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.business-btn, .individual-btn {
    /* Ensuring both buttons are exactly the same */
    width: 200px;
    height: 45px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Solution Dropdown */
.solution-btn-dropdown {
    position: relative;
    display: inline-block;
}

.solution-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 4px;
    margin-top: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 195, 245, 0.3);
}

.solution-dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 195, 245, 0.1);
}

.solution-dropdown-content a:last-child {
    border-bottom: none;
}

.solution-dropdown-content a:hover {
    background-color: rgba(0, 195, 245, 0.1);
    color: #00c3f5;
}

/* Show dropdown when active class is added via JavaScript */
.solution-btn-dropdown.active .solution-dropdown-content {
    display: block;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes flyInFromRight {
    0% { 
        opacity: 0;
        transform: translateX(100%) rotate(5deg);
    }
    100% { 
        opacity: 1;
        transform: translateX(0) rotate(2deg);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes flyInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    70% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

.logo-container {
    width: 100%;
    max-width: 800px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 195, 245, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.header-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00c3f5;
}

.content {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

/* Make sure all cards have hover effect regardless of animation state */
.card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 5px 15px rgba(0, 195, 245, 0.2);
}

.card.animate {
    animation: flyInFromBottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.card.animate h2 {
    animation: fadeInText 0.5s ease-out 0.6s forwards;
}

.card.animate p {
    animation: fadeInText 0.5s ease-out 0.8s forwards;
}

.card.animate li {
    animation: fadeInText 0.5s ease-out 0.8s forwards;
}

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

.content .card:nth-child(2).animate {
    animation-delay: 0.2s;
}

.content .card:nth-child(3).animate {
    animation-delay: 0.4s;
}

/* Hover effect is now in the main card selector */

.card h2 {
    color: #00c3f5;
    margin-bottom: 1rem;
    opacity: 0;
}

.card p {
    opacity: 0;
}

.card li {
    opacity: 0;
}

.calculator-section {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #2a2a2a;
}

.why-choose-section {
    background-color: #2a2a2a;
    padding: 4rem 0;
    margin-top: 2rem;
}

.why-choose-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-header h2 {
    color: #00c3f5;
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    font-weight: 700;
}

.why-choose-intro {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.solution-box {
    background-color: #1a1a1a;
    border: 1px solid #00c3f5;
    border-radius: 8px;
    padding: 1.8rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.solution-box.animate {
    animation: flyInFromBottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.solution-box.animate h3 {
    animation: fadeInText 0.5s ease-out 0.6s forwards;
    opacity: 0;
}

.solution-box.animate p {
    animation: fadeInText 0.5s ease-out 0.8s forwards;
    opacity: 0;
}

.solution-box.animate:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 3px 5px rgba(0, 195, 245, 0.8); /* #00c3f5 */
}

.solution-box h3 {
    color: #00c3f5;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.solution-box p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.15rem;
}

@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-header h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-intro {
        font-size: 1rem;
    }
}

.calculator-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.calculator-text {
    flex: 1;
    max-width: 400px;
}

.calculator-text h2 {
    color: #00c3f5;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.calculator-text p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.calculator-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1rem;
    max-width: 600px;
}

.calc-box {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
}

.calc-box h3 {
    color: #00c3f5;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.calc-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #2a2a2a;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.calc-input:focus {
    outline: none;
    border-color: #00c3f5;
    box-shadow: 0 0 0 2px rgba(0, 195, 245, 0.2);
}

.calc-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.calc-dropdown {
    position: relative;
    width: 100%;
}

.calc-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 4px;
    margin-top: 0.5rem;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.dropdown-box:hover .calc-dropdown-content {
    display: block;
}

.dropdown-item {
    padding: 0.8rem 1rem;
    color: #e0e0e0;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-item:hover {
    background-color: #2a2a2a;
    color: #00c3f5;
}

@media (max-width: 900px) {
    .content {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .calculator-grid {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .content {
        grid-template-columns: 1fr;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* IT Support Page Styles */
body.it-support-page .services-grid {
    margin-top: 0;
}

body.it-support-page header {
    margin-bottom: 0;
    padding-bottom: 0;
}

body.it-support-page main.container {
    padding-top: 0;
    margin-top: -20px;
}

body.it-support-page h1 {
    margin-bottom: 10px;
}

/* IT Support Title Screen */
.it-title-screen {
    height: 450px;
    width: 100%;
    background: url("images/it-background.png") no-repeat center center;
    background-size: cover;
    position: relative;
    margin-bottom: 3rem;
    margin-top: 0rem;
    position: relative;
}

.it-title-screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.it-title-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.it-title-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.0s ease-out;
    max-width: 100%;
    word-wrap: break-word;
}

/* Removed duplicated styles */

@media (max-width: 768px) {
    .it-title-screen {
        height: 350px;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .it-title-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .it-title-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
}
.partner-section {
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
    background: rgba(0, 195, 245, 0.1);
    border-radius: 8px;
}

.partner-section h2 {
    color: #00c3f5;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    width: 100%;
    box-sizing: border-box;
}

/* Media queries for services grid on mobile devices */
@media screen and (max-width: 900px) {
    .partner-section .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .partner-section .service-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem;
    }
}

.service-card {
    background: #1a1a1a;
    border: 1px solid #00c3f5;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 5px 15px rgba(0, 195, 245, 0.2);
}

/* Animation classes for service cards */
.animate {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Scroll reveal animations */
.reveal-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.0s ease, transform 1.0s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card h2, .service-card h3 {
    color: #00c3f5;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.15rem;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-message-container {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.contact-form-container h2 {
    color: #00c3f5;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form h3 {
    color: #00c3f5;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.contact-form h3:first-of-type {
    margin-top: 0;
}

.address-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00c3f5;
    box-shadow: 0 0 0 2px rgba(0, 195, 245, 0.2);
}

.submit-btn {
    background-color: #00c3f5;
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.submit-btn:hover {
    background-color: #5fb4d9;
}

/* Specific rules with high specificity to ensure links with submit-btn class are not underlined */
a.submit-btn, .cta-box a.submit-btn, body a.submit-btn, .bottom-section a.submit-btn {
    text-decoration: none !important;
}

.contact-info {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.contact-info h2 {
    color: #00c3f5;
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    color: #00c3f5;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.intake-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.google-form-btn {
    display: inline-block;
    background-color: #00c3f5;
    color: #000;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.google-form-btn:hover {
    background-color: #5fb4d9;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* BlackCloak Page Styles */
.subtitle {
    font-size: 2em;
    color: white;
    margin: 15px 0;
    font-weight: bold;
}

.highlight-text {
    color: white;
    font-weight: bold;
}

.text-center {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.spacer {
    height: 60px;
    background-color: #1a1a1a;
}

/* Features Section Styling */
.features-section {
    padding: 2rem 0 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.senior-feature-box {
    background-color: #1a1a1a;
    border: 1px solid #00c3f5;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    padding: 1.8rem;
}

.feature-box:hover,
.senior-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.feature-image-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #00c3f5;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-title {
    color: #00c3f5;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.feature-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Features Grid */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .bottom-section .features-grid {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-box {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .bottom-section .features-grid {
        margin-top: 2rem;
    }
    
    .feature-image-container {
        width: 150px;
        height: 150px;
    }
}

.calculator-section {
    background-color: #2a2a2a;
    padding: 40px 0;
}

.bottom-section {
    padding: 60px 0;
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}

.highlight-title {
    color: #00c3f5;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.section-description {
    margin-bottom: 30px;
}

.cta-title {
    color: white;
    margin-bottom: 15px;
}

.panel-content {
    padding: 15px 0;
}

.panel-list {
    padding-left: 20px;
    margin: 0 0 10px 0;
    list-style-position: outside;
}

.panel-content {
    padding: 15px;
}

.panel-content li {
    margin-bottom: 8px;
}

.panel-content li:last-child {
    margin-bottom: 0;
}

.trust-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: nowrap;
}

.trust-box {
    width: 19%;
    padding: 20px 10px;
    text-align: center;
    background-color: #1a1a1a;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0; /* Start hidden */
    transform: scale(0.5); /* Start small */
}

.trust-box.animate {
    animation: popUp 0.6s forwards;
}

.percentage {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
    color: #4CAF50;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
}

.left-side {
    width: 40%;
}

.right-side {
    width: 55%;
}

.cta-box {
    background-color: #333;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border: 1px solid #444;
}

.accordion {
    background-color: #333;
    color: #e0e0e0;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    border-bottom: 1px solid #444;
    outline: none;
    transition: 0.4s;
    font-weight: bold;
    font-size: 16px;
    position: relative;
}

.accordion:hover {
    background-color: #3a3a3a;
}

.accordion:after {
    content: '+';
    font-size: 18px;
    color: #999;
    float: right;
}

/* Removed minus sign */
.active:after {
    display: none;
}

.panel {
    padding: 0 18px;
    background-color: #2f2f2f;
    color: #ccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid #444;
}

/* Media queries for BlackCloak page */
@media (max-width: 768px) {
    .trust-row {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .trust-box {
        width: 48%;
        margin-bottom: 10px;
    }
    
    .bottom-flex {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .trust-row {
        flex-direction: column;
    }
    
    .trust-box {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .left-side, .right-side {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Cyber Insurance Page Styles */
.cyber-warranty-intro {
    background-color: #1a1a1a;
    padding: 30px 0;
    min-height: calc(100vh - 80px); /* Subtract header height */
    display: flex;
    align-items: flex-start;
    padding-top: 40px;
    margin-bottom: 0;
    border-bottom: none;
}

.warranty-intro-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in-out;
    padding: 0 2rem;
}

/* Warranty content section with lighter background */
.cyber-warranty-content {
    background-color: #222;
    padding: 4rem 0;
    border-top: 1px solid #333;
}

.warranty-intro-text {
    width: 60%;
}

.warranty-protection-list {
    width: 35%;
    background-color: #333;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    align-self: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.warranty-protection-list.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Warranty intro text large */
.warranty-intro-text-large {
    flex: 1.3;
    animation: fadeIn 1s ease-in-out;
}

/* Warranty intro image */
.warranty-intro-image {
    flex: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-in-out;
    background-color: #1a1a1a;
}

.warranty-image-container {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    animation: fadeIn 1.2s ease-out;
    background-color: #222;
}

.warranty-image-container:hover {
    transform: translateY(-5px);
}

.warranty-square-image {
    width: 100%;
    height: auto;
    display: block;
}

.warranty-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.warranty-slogan {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
}

.warranty-slogan::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, rgba(0, 195, 245, 0), rgba(0, 195, 245, 1), rgba(0, 195, 245, 0));
}

.warranty-tagline {
    font-size: 1.7rem;
    font-weight: 500;
    color: #00c3f5;
    margin-bottom: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.warranty-highlight {
    background-color: #333;
    padding: 1.5rem 2rem;
    border-left: 4px solid #00c3f5;
    margin: 2rem auto 2rem;
    max-width: 800px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.warranty-highlight.animate {
    opacity: 1;
    transform: translateY(0);
}

.warranty-content-box {
    margin-bottom: 1.5rem;
    background-color: #2a2a2a;
    padding: 1.2rem;
    border-radius: 5px;
}

.warranty-highlight p {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
}

.protection-items {
    list-style-type: none;
    margin: 1.5rem 0;
}

.protection-items li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #444;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.warranty-protection-list.animate .protection-items li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay for list items */
.warranty-protection-list.animate .protection-items li:nth-child(1) {
    transition-delay: 0.2s;
}

.warranty-protection-list.animate .protection-items li:nth-child(2) {
    transition-delay: 0.4s;
}

.warranty-protection-list.animate .protection-items li:nth-child(3) {
    transition-delay: 0.6s;
}

.warranty-protection-list.animate .protection-items li:nth-child(4) {
    transition-delay: 0.8s;
}

.warranty-protection-list.animate .protection-items li:nth-child(5) {
    transition-delay: 1s;
}

.protection-items li:before {
    content: '✓';
    color: #00c3f5;
    position: absolute;
    left: 0;
}

.disclaimer {
    font-size: 0.9rem;
    color: #999;
    margin-top: 2rem;
    font-style: italic;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.warranty-protection-list.animate .disclaimer {
    opacity: 1;
    transition-delay: 1.2s;
}

/* Cork Certification Section */
.cork-certification {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

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

.cork-partnership-image {
    margin-bottom: 2rem;
}

.partnership-logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.cork-content h2 {
    color: #00c3f5;
    margin-bottom: 1.5rem;
}

.cork-content h3 {
    color: #e0e0e0;
    margin: 2rem 0 1rem;
}

/* Pricing Plans Section */
.pricing-plans {
    background-color: #222;
    padding: 3rem 0;
}

.plans-flex {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.plan-card {
    background-color: #333;
    padding: 2.5rem;
    border-radius: 8px;
    width: 350px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.plan-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Removed featured border styling */

.plan-card h3 {
    color: #00c3f5;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.price-period {
    color: #999;
    font-size: 1rem;
}

.plan-cost {
    margin-bottom: 2rem;
}

.cost-amount {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e0e0e0;
}

.cost-period {
    color: #999;
    font-size: 1rem;
}

.learn-more-btn {
    display: inline-block;
    background-color: #00c3f5;
    color: #111;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.learn-more-btn:hover {
    background-color: #00a8d4;
}

/* FAQ Section */
.faq-section {
    background-color: #1a1a1a;
    padding: 3rem 0 5rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #00c3f5;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.panel-content {
    padding: 1rem 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .warranty-intro-flex {
        flex-direction: column;
    }
    
    .warranty-intro-text, .warranty-intro-text-large, .warranty-protection-list, .warranty-intro-image {
        width: 100%;
    }
    
    .warranty-slogan {
        font-size: 2.2rem;
    }
    
    .warranty-image-container {
        margin: 0 auto;
    }
    
    .plans-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .plan-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .trust-box {
        width: 100%;
    }
}

/* Seniors Page Styles */
.senior-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    gap: 3rem;
}

.senior-text {
    flex: 1;
}

.senior-text h2 {
    color: #00c3f5;
    margin-bottom: 1.5rem;
    font-size: 2.2em;
}

.senior-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #2a2a2a;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #444;
    color: #00c3f5;
    font-size: 1.2rem;
}

/* BlackCloak Page Styles */
.blackcloak-intro {
    background-color: #1a1a1a;
    padding: 30px 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: flex-start;
    padding-top: 40px;
    margin-bottom: 0;
    border-bottom: none;
}

.blackcloak-intro-flex {
    display: flex;
    align-items: center;
    gap: 0px;
    animation: fadeIn 1s ease-in-out;
}

.blackcloak-intro-text {
    flex: 1.3;
    animation: fadeIn 1s ease-in-out;
}

.blackcloak-slogan {
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.blackcloak-intro-image {
    flex: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-in-out;
}

.blackcloak-image-container {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
    animation: flyInFromRight 1.2s ease-out;
}

.blackcloak-image-container:hover {
    transform: rotate(0deg);
}

.blackcloak-shield {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Scrolling Banner Styles */
.scrolling-banner {
    background-color: #2a2a2a;
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
    margin-top: -40px;
    position: relative;
}

.banner-container {
    width: 100%;
    overflow: hidden;
}

.banner-text {
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    padding: 10px 0;
}

.banner-text h2 {
    color: #00c3f5;
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    display: inline-block;
    margin-right: 100px;
}

@media (max-width: 768px) {
    .banner-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner-text h2 {
        font-size: 1.2rem;
    }
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Video and Benefits Section Styles */
.video-benefits-section {
    padding: 30px 0;
    margin-bottom: 10px;
}

.video-benefits-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.video-container {
    flex: 1;
}

.video-placeholder {
    width: 100%;
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    line-height: 0;
    padding: 0;
}

.video-frame {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.benefits-container {
    flex: 1;
    padding: 20px;
}

.benefits-container h2 {
    color: #00c3f5;
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefits-container p {
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefits-list li {
    position: relative;
    padding-left: 25px;
    color: #e0e0e0;
    line-height: 1.4;
}

.benefits-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00c3f5;
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 992px) {
    .video-benefits-flex {
        flex-direction: column;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blackcloak-intro-flex {
        flex-direction: column;
    }
    
    .blackcloak-intro-text, .blackcloak-intro-image {
        width: 100%;
    }
    
    .blackcloak-slogan {
        font-size: 2rem;
        text-align: center;
    }
}

.senior-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.senior-full-img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    object-fit: contain;
}

.powered-by {
    font-size: 0.7em;
    font-style: italic;
    font-weight: normal;
    color: #cccccc;
}

@media (max-width: 768px) {
    .senior-intro {
        flex-direction: column;
    }
    
    .senior-text, .senior-image {
        width: 100%;
    }
}

/* Financial Protection Section Styles */
.financial-protection-section {
    padding: 100px 0;
    margin: 40px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
    pointer-events: none;
}

/* Hide video controls on all devices */
.background-video::-webkit-media-controls {
    display: none !important;
}

.background-video::-webkit-media-controls-panel {
    display: none !important;
}

.background-video::-webkit-media-controls-play-button {
    display: none !important;
}

.background-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* Comprehensive video control hiding for all background video classes */
.background-video-hero,
.background-video-sb,
.background-video-bc {
    /* Hide all possible video controls */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* WebKit controls hiding */
.background-video-hero::-webkit-media-controls,
.background-video-sb::-webkit-media-controls,
.background-video-bc::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none;
}

.background-video-hero::-webkit-media-controls-panel,
.background-video-sb::-webkit-media-controls-panel,
.background-video-bc::-webkit-media-controls-panel {
    display: none !important;
}

.background-video-hero::-webkit-media-controls-play-button,
.background-video-sb::-webkit-media-controls-play-button,
.background-video-bc::-webkit-media-controls-play-button {
    display: none !important;
}

.background-video-hero::-webkit-media-controls-start-playback-button,
.background-video-sb::-webkit-media-controls-start-playback-button,
.background-video-bc::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.background-video-hero::-webkit-media-controls-enclosure,
.background-video-sb::-webkit-media-controls-enclosure,
.background-video-bc::-webkit-media-controls-enclosure {
    display: none !important;
}

.background-video-hero::-webkit-media-controls-overlay-play-button,
.background-video-sb::-webkit-media-controls-overlay-play-button,
.background-video-bc::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

.background-video-hero::-webkit-media-controls-current-time-display,
.background-video-sb::-webkit-media-controls-current-time-display,
.background-video-bc::-webkit-media-controls-current-time-display {
    display: none !important;
}

.background-video-hero::-webkit-media-controls-time-remaining-display,
.background-video-sb::-webkit-media-controls-time-remaining-display,
.background-video-bc::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.background-video-hero::-webkit-media-controls-timeline,
.background-video-sb::-webkit-media-controls-timeline,
.background-video-bc::-webkit-media-controls-timeline {
    display: none !important;
}

.background-video-hero::-webkit-media-controls-volume-slider,
.background-video-sb::-webkit-media-controls-volume-slider,
.background-video-bc::-webkit-media-controls-volume-slider {
    display: none !important;
}

.background-video-hero::-webkit-media-controls-mute-button,
.background-video-sb::-webkit-media-controls-mute-button,
.background-video-bc::-webkit-media-controls-mute-button {
    display: none !important;
}

.background-video-hero::-webkit-media-controls-fullscreen-button,
.background-video-sb::-webkit-media-controls-fullscreen-button,
.background-video-bc::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* Additional mobile-specific rules */
@media (max-width: 768px) {
    .background-video,
    .background-video-hero,
    .background-video-sb,
    .background-video-bc {
        pointer-events: none;
    }
}

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

.protection-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.3s ease;
}

.protection-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.protection-image:hover {
    box-shadow: 0 10px 60px rgba(0, 195, 245, 0.2);
}

.protection-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.protection-img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 195, 245, 0.6);
}

.protection-content {
    flex: 1;
}

.protection-content h2 {
    color: #00c3f5;
    font-size: 2.4em;
    margin-bottom: 20px;
    line-height: 1.3;
}

.protection-content p {
    font-size: 1.2em;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.protection-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.protection-btn {
    display: inline-block;
    background-color: #00c3f5;
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.protection-btn:hover {
    background-color: #5fb8e6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive styles for financial protection section */
@media (max-width: 992px) {
    .protection-flex {
        flex-direction: column;
        gap: 40px;
    }
    
    .protection-content h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .financial-protection-section {
        padding: 40px 0;
    }
    
    .protection-content h2 {
        font-size: 1.6em;
    }
    
    .protection-content p {
        font-size: 1em;
    }
}

/* IT Support Process Section Styles */
.process-section {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 40px 30px;
    margin: 50px 0 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.process-title {
    color: #00c3f5;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #00c3f5;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background-color: #00c3f5;
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 195, 245, 0.3);
}

.process-step p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 5px;
}

@media (max-width: 768px) {
    .process-section {
        padding: 30px 20px;
    }
    
    .process-title {
        font-size: 1.6rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .process-step p {
        font-size: 1rem;
    }
}

/* Partner Section Styles */
.partner-section {
    background-color: #222;
    border-radius: 8px;
    padding: 35px;
    margin: 40px 0;
    border: 1px solid #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 195, 245, 0.08) 0%, rgba(0, 195, 245, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.partner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.partner-text {
    flex: 2;
}

.partner-text h2 {
    color: #00c3f5;
    margin-bottom: 18px;
    font-size: 2rem;
    position: relative;
    display: block;
    text-align: center;
}

.partner-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00c3f5;
}

.partner-text p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.partner-highlight {
    color: #00c3f5;
    font-weight: 600;
}

.partner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
}

.unite-logo {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.partner-benefits {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    background-color: rgba(0, 195, 245, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1;
    border: 1px solid rgba(0, 195, 245, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 195, 245, 0.1);
}

.benefit-icon {
    color: #00c3f5;
    font-size: 1.2rem;
    margin-right: 12px;
    font-weight: bold;
}

.benefit-text {
    color: #e0e0e0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .partner-flex {
        flex-direction: column;
        gap: 25px;
    }
    
    .partner-text, .partner-image {
        width: 100%;
        max-width: 100%;
    }
    
    .partner-benefits {
        flex-direction: column;
    }
}

/* Industries We Serve Section */
.industries-section {
    padding: 120px 0;
    margin-top: 60px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.background-video-industries {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
    opacity: 1.0;
}

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

.industries-title {
    color: #ffffff;
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
    margin: 0;
    text-align: center;
}

.industries-quote-btn {
    display: inline-block;
    background-color: #00c3f5;
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 195, 245, 0.3);
}

.industries-quote-btn:hover {
    background-color: #00b0e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 195, 245, 0.4);
}

.industries-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 195, 245, 0), rgba(0, 195, 245, 1), rgba(0, 195, 245, 0));
}

.industries-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
    margin-top: 40px;
}

.industries-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 10px 0;
    width: 100%;
}

.industry-box {
    min-width: 320px;
    background-color: #e0e0e0;
    flex: 0 0 320px;
    height: 260px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.industry-box:hover .industry-image img {
    transform: scale(1.05);
}

.industry-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-name {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0 10px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.industry-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    
    opacity: 0.7;
}

.carousel-arrow {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: transform 0.2s;
    padding: 0.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    transform: scale(1.2);
    color: #00c3f5;
}

.prev-arrow {
    left: -60px;
}

.next-arrow {
    right: -60px;
}

@media (max-width: 768px) {
    .industries-title {
        font-size: 2.2rem;
    }
    
    .carousel-arrow {
        font-size: 1.5rem;
        padding: 0.3rem;
        width: 40px;
        height: 40px;
    }
    
    .prev-arrow {
        left: 5px;
    }
    
    .next-arrow {
        right: 5px;
    }
    
    .industries-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .industries-quote-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Extra small devices (phones) */
@media (max-width: 480px) {
    .industries-carousel-container {
        padding: 0 30px;
    }
    
    .industry-box {
        min-width: 220px;
        flex: 0 0 220px;
        height: 200px;
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        position: absolute;
        top: calc(50% - 15px);
        z-index: 20;
    }
    
    .prev-arrow {
        left: 0px;
    }
    
    .next-arrow {
        right: 0px;
    }
}

/* Technology Partners Section Styles */
.tech-partners-section {
    padding: 10px 0 40px;
    background-color: #1a1a1a; /* Matches the existing gray background */
    width: 100%;
    position: relative;
    margin-top: 10px;
}

.tech-partners-title {
    color: #00c3f5;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    width: 100%;
    display: block;
}

.tech-partners-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 195, 245, 0), rgba(0, 195, 245, 1), rgba(0, 195, 245, 0));
}

.tech-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px; /* Increased padding for arrows and glow effect */
}

.tech-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 15px 10px; /* Added horizontal padding to prevent glow cropping */
    width: 100%;
}

.tech-partner-box {
    min-width: calc(25% - 15px); /* Show 4 items at a time with gap */
    flex: 0 0 calc(25% - 15px);
    height: 120px;
    background-color: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-partner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 195, 245, 0.4);
}

.tech-partner-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Carousel navigation buttons */
.carousel-arrow {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: rgba(0, 195, 245, 0.8);
    transform: scale(1.1);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* Responsive styles for tech partners carousel */
@media (max-width: 992px) {
    .tech-partner-box {
        min-width: calc(33.333% - 15px); /* Show 3 items at a time on medium screens */
        flex: 0 0 calc(33.333% - 15px);
    }
}

@media (max-width: 768px) {
    .tech-partner-box {
        min-width: calc(50% - 15px); /* Show 2 items at a time on small screens */
        flex: 0 0 calc(50% - 15px);
    }
    
    .tech-partners-title {
        font-size: 2rem;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .tech-partner-box {
        min-width: calc(100% - 15px); /* Show 1 item at a time on very small screens */
        flex: 0 0 calc(100% - 15px);
    }
    
    .tech-partners-title {
        font-size: 1.8rem;
    }
}

/* Small Business Page Styles */
/* Blue banner header styling for the Business Solutions section */
body.small-business-page header {
    background-color: #00c3f5;
    width: 100%;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
    padding-bottom: 0;
    margin-bottom: 0;
}

body.small-business-page header .container {
    margin: 0;
    padding: 1.2rem 2.5rem;
}

body.small-business-page header h1 {
    color: black;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0.75rem;
}

/* Responsive styles for the blue banner header */
@media (max-width: 1101px) {
    body.small-business-page header {
        margin-top: -70px;
        height: 90px;
        position: relative;
    }
    
    body.small-business-page header .container {
        padding: 0;
        margin: 0;
        padding: 0 2.5rem;
        width: 100%;
        position: absolute;
        bottom: 0.2rem;
    }
    
    body.small-business-page header h1 {
        top: 0;
        margin: 0;
    }
}

@media (max-width: 768px) {
    body.small-business-page header {
        margin-top: -70px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    body.small-business-page header {
        margin-top: -70px;
        height: 90px;
    }
}

body.small-business-page main.container {
    padding-top: 0;
    margin-top: -20px;
}

body.small-business-page h1 {
    margin-bottom: 10px;
}

/* Small Business Title Screen */
.sb-title-screen {
    height: 500px;
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
    margin-top: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-title-screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.background-video-sb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.8);
    opacity: 1.0;
}

/* Enterprise Title Screen */
.enterprise-title-screen {
    margin-bottom: 1rem;
    margin-top: 0;
}

/* BlackCloak Page Styles */
/* Blue banner header styling for the BlackCloak Services section */
body.inner-page header {
    background-color: #00c3f5;
    width: 100%;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
    padding-bottom: 0;
    margin-bottom: 0;
}

body.inner-page header .container {
    margin: 0;
    padding: 1.2rem 2.5rem;
}

body.inner-page header h1 {
    color: black;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0.75rem;
    z-index: 1;
}

@media (max-width: 1101px) {
    body.inner-page header {
        margin-top: -70px;
        height: 90px;
        position: relative;
    }
    
    body.inner-page header .container {
        padding: 0;
        margin: 0;
        padding: 0 2.5rem;
        width: 100%;
        position: absolute;
        bottom: 0.2rem;
    }
    
    body.inner-page header h1 {
        top: 0;
        margin: 0;
    }
}

@media (max-width: 768px) {
    body.inner-page header {
        margin-top: -70px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    body.inner-page header {
        margin-top: -70px;
        height: 90px;
    }
}

/* BlackCloak Title Screen with Video Background */
.bc-title-screen {
    height: 600px;
    width: 100%;
    position: relative;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-video-bc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.8);
    opacity: 1.0;
}

.bc-title-banner {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    position: absolute;
    z-index: 2;
}

.bc-title-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem; /* Reduced gap between text and buttons */
}

.bc-title-text {
    flex: 3;
    text-align: right;
}

.bc-title-text h2 {
    color: #00c3f5;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.bc-title-text p {
    color: white;
    font-size: 1.4rem; /* Increased from 1.2rem */
    margin: 0;
    max-width: 800px;
    padding-left: 4rem; /* Added indent */
    line-height: 1.5;
}

/* Control line break visibility */
.desktop-break {
    display: inline; /* Show by default on desktop */
}

@media (max-width: 768px) {
    .desktop-break {
        display: none; /* Hide on mobile/tablet */
    }
}



/* Highlighted text styles */
.bc-highlight-blue {
    color: #00c3f5;
    font-weight: bold;
}

.bc-highlight-white {
    color: white;
    font-weight: bold;
}

.bc-title-buttons {
    display: flex;
    gap: 1rem;
    margin-right: 1.5rem
}

.bc-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #00c3f5;
    border: 2px solid #00c3f5;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bc-button:hover {
    background-color: #111111;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 195, 245, 0.3);
}

@media (max-width: 768px) {
    .bc-title-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }
    
    .bc-title-text {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .bc-title-text h2 {
        font-size: 2rem;
    }
    
    .bc-title-text p {
        margin: 0 auto;
        padding-left: 0;
        font-size: 1.2rem;
        text-align: center;
        max-width: 100%;
    }
    

    
    .bc-title-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-right: 0;
        width: 100%;
    }
    
    .bc-button {
        width: 80%;
        max-width: 250px;
        text-align: center;
        margin: 0.25rem 0;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .bc-title-screen {
        height: 500px;
    }
    
    .bc-title-text h2 {
        font-size: 1.8rem;
    }
    
    .bc-title-text p {
        font-size: 1.1rem;
    }
    
    .bc-button {
        width: 90%;
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* IT Support Page Styles */
/* Blue banner header styling for the IT Support Services section */
body.it-support-page header {
    background-color: #00c3f5;
    width: 100%;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
    padding-bottom: 0;
    margin-bottom: 0;
}

body.it-support-page header .container {
    margin: 0;
    padding: 1.2rem 2.5rem;
}

body.it-support-page header h1 {
    color: black;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0.75rem;
}

/* Responsive styles for the IT Support blue banner header */
@media (max-width: 1101px) {
    body.it-support-page header {
        margin-top: -70px;
        height: 90px;
        position: relative;
    }
    
    body.it-support-page header .container {
        padding: 0;
        margin: 0;
        padding: 0 2.5rem;
        width: 100%;
        position: absolute;
        bottom: 0.2rem;
    }
    
    body.it-support-page header h1 {
        top: 0;
        margin: 0;
    }
}

@media (max-width: 768px) {
    body.it-support-page header {
        margin-top: -70px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    body.it-support-page header {
        margin-top: -70px;
        height: 90px;
    }
}

/* Enterprise Page Styles */
/* Blue banner header styling for the Enterprise Solutions section */
body.enterprise-page header {
    background-color: #00c3f5;
    width: 100%;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
    padding-bottom: 0;
    margin-bottom: 0;
}

body.enterprise-page header .container {
    margin: 0;
    padding: 1.2rem 2.5rem;
}

body.enterprise-page header h1 {
    color: black;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0.75rem;
}

/* Responsive styles for the enterprise blue banner header */
@media (max-width: 1101px) {
    body.enterprise-page header {
        margin-top: -70px;
        height: 90px;
        position: relative;
    }
    
    body.enterprise-page header .container {
        padding: 0;
        margin: 0;
        padding: 0 2.5rem;
        width: 100%;
        position: absolute;
        bottom: 0.2rem;
    }
    
    body.enterprise-page header h1 {
        top: 0;
        margin: 0;
    }
}

@media (max-width: 768px) {
    body.enterprise-page header {
        margin-top: -70px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    body.enterprise-page header {
        margin-top: -70px;
        height: 90px;
    }
}

.sb-title-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.sb-title-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
}

.sb-title-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    animation: fadeInUp 1.0s ease-out;
}

.sb-title-content p {
    font-size: 1.5rem;
    color: #00c3f5;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.0s ease-out 0.3s both;
}

.sb-title-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    justify-content: center;
    animation: fadeInUp 1.0s ease-out 0.5s both;
}

.sb-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000000;
    color: #00c3f5;
    border: 2px solid #00c3f5;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sb-button:hover {
    background-color: #111111;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 195, 245, 0.3);
}

/* MDR Intro Section */
.mdr-intro-section {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 195, 245, 0.3);
}

.mdr-intro-content {
    flex: 2;
}

.mdr-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 2rem;
    position: relative;
}

.mdr-image img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    border: 2px solid rgba(0, 195, 245, 0.7);
    box-shadow: 0 0 15px rgba(0, 195, 245, 0.5), inset 0 0 10px rgba(0, 195, 245, 0.2);
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mdr-image img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 25px rgba(0, 195, 245, 0.7), inset 0 0 15px rgba(0, 195, 245, 0.3);
}

/* Underglow removed */

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.mdr-intro-content h2 {
    color: #00c3f5;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    animation: fadeIn 1.0s ease-out;
}

.mdr-tagline {
    font-size: 1.1rem;
    font-weight: 400;
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    font-style: italic;
    animation: fadeIn 1.0s ease-out 0.3s both;
}

.mdr-intro-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* MDR Features Styling */
.mdr-features {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.mdr-feature-column {
    flex: 1;
}

.mdr-feature-column h3 {
    color: #00c3f5;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.mdr-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mdr-feature-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mdr-feature-list li.animate {
    opacity: 1;
    transform: translateY(0);
}

.mdr-feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00c3f5;
    font-weight: bold;
}

/* Challenges Section */
.challenges-section {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 195, 245, 0.3);
}

.challenges-section h2 {
    color: #00c3f5;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    text-align: center;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.challenge-item {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.challenge-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 195, 245, 0.2);
}

.challenge-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ff6b6b;
}

.challenge-text {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits-section {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 195, 245, 0.3);
}

.benefits-section h2 {
    color: #00c3f5;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-box {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-box.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 195, 245, 0.2);
}

.benefit-check {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #00c3f5;
    font-weight: bold;
}

.benefit-box p {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Partner section styles for small business page */
.secondary-partner {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 195, 245, 0.3);
}

.partner-features {
    margin-top: 1.5rem;
}

.partner-features p {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #00c3f5;
}

.partner-features ul {
    list-style-type: none;
    padding-left: 1rem;
}

.partner-features ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Footer Styles */
footer {
    background-color: black;
    color: #ffffff;
    padding: 5rem 0;
    margin-top: 3rem;
}

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

.footer-left {
    flex: 1;
    min-width: 300px;
    padding-left: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-left.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-left h3 {
    color: #00c3f5;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.footer-contact-item {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #cccccc;
    display: flex;
    align-items: flex-start;
}

.footer-icon {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    display: inline-block;
    min-width: 1.5rem;
}

.footer-social-icons {
    display: flex;
    gap: 30px;
    margin-top: 1rem;
    justify-content: flex-start;
}

.footer-social-link {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-social-link:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.footer-social-link .footer-icon {
    width: 24px;
    height: 24px;
    margin-right: 0;
}

.linkedin-icon,
.instagram-icon,
.facebook-icon {
    fill: currentColor;
    transition: fill 0.3s ease;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-right.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-logo {
    display: block;
    max-width: 580px;
}

.footer-logo-img {
    width: 100%;
    height: auto;
}

/* Responsive footer styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left, .footer-right {
        width: 100%;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-right {
        margin-top: 1rem;
    }
}

.partner-features ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00c3f5;
}

.learn-more-btn {
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #00c3f5;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #5fb8e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Why Choose Section */
.why-choose-section {
    margin-top: 4rem;
    padding: 2rem 0;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Field Effect Section */
.field-effect-section {
    background-color: #222;
    border-radius: 8px;
    padding: 35px;
    margin: 40px 0;
    border: 1px solid #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.field-effect-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 195, 245, 0.08) 0%, rgba(0, 195, 245, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.field-effect-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 195, 245, 0.05) 0%, rgba(0, 195, 245, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.field-effect-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.field-effect-content {
    flex: 2;
}

.field-effect-content h2 {
    color: #00c3f5;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.field-effect-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.field-effect-content .highlight {
    color: #00c3f5;
    font-weight: 600;
}

.field-effect-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.field-effect-logo img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
}

.why-field-effect {
    margin-top: 3rem;
}

.why-field-effect h2 {
    color: #00c3f5;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: bold;
    width: 100%;
}

.field-effect-boxes {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.field-effect-box {
    flex: 1;
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.field-effect-box h3 {
    color: #00c3f5;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.field-effect-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 195, 245, 0.8); /* #00c3f5 */
    margin-top: 5px; /* Add margin to prevent shadow clipping */
}

.box-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.box-image img {
    max-width: 100%;
    height: 225px;
    object-fit: contain;
}

.feature-list {
    list-style-type: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.blue-arrow {
    color: #00c3f5;
    margin-right: 0.5rem;
    font-weight: bold;
}

@media (max-width: 992px) {
    .field-effect-header {
        flex-direction: column;
    }
    
    .field-effect-logo {
        margin-top: 1.5rem;
        justify-content: center;
    }
    
    .field-effect-boxes {
        flex-direction: column;
    }
}

/* SOC Certification Section */
.soc-certification-section {
    background-color: #000;
    color: #fff;
    padding: 4rem 0 0;
    margin: 3rem 0 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.soc-certification-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 195, 245, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.soc-certification-section h2 {
    color: #00c3f5;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.soc-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #e0e0e0;
}

.certification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.certification-info {
    flex: 1;
}

.certification-info h3 {
    color: #00c3f5;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.certification-info p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.certification-list {
    list-style-type: none;
    padding: 0;
}

.certification-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    color: #e0e0e0;
}

.badge-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.badge {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: scale(1.5);
}

.no-animation:hover {
    transform: none !important;
    transition: none !important;
}

.badge img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
}

@media (max-width: 992px) {
    .certification-content {
        flex-direction: column;
    }
    
    .certification-info {
        margin-bottom: 2rem;
    }
}

/* CTA Section */
.cta-section {
    margin: 4rem 0 2rem;
    padding: 3rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text {
    text-align: left;
    flex: 1;
}

.cta-section h2 {
    color: #00c3f5;
    margin-bottom: 1rem;
    font-size: 3rem;
    text-align: left;
}

.cta-section p {
    margin-bottom: 0;
    font-size: 1.3rem;
    max-width: 700px;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
}

.primary-btn {
    background-color: #00c3f5;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid #00c3f5;
    color: #00c3f5;
}

.secondary-btn:hover {
    background-color: rgba(0, 195, 245, 0.1);
}

/* Biski-x styling - DO NOT REMOVE */
.biski-x {
    font-family: 'Biski', sans-serif;
    color: #00c3f5;
    font-weight: bold;
    font-size: 1.4em;
}

/* Underwriter Partners Section */
.underwriter-partners-section {
    padding: 4rem 0 0rem 0;
    background-color: #1a1a1a;
}

.underwriter-partners-section h2 {
    color: #00c3f5;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.underwriter-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.underwriter-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 15px 10px;
    width: 100%;
}

.underwriter-logo-box {
    min-width: calc(20% - 16px); /* Show 5 items at a time with gap */
    flex: 0 0 calc(20% - 16px);
    height: 100px;
    background-color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.underwriter-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.underwriter-logo-box img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .underwriter-logo-box {
        min-width: calc(33.333% - 14px);
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .underwriter-logo-box {
        min-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .underwriter-logo-box {
        min-width: calc(100% - 0px);
        flex: 0 0 calc(100% - 0px);
    }
}

/* Cyber Concierge Service Section */
.cyber-concierge-section {
    padding: 5rem 0;
    background-color: #161616;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    border-radius: 12px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #333;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.cyber-concierge-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    z-index: 0;
    border-radius: 12px;
}

.cyber-concierge-section .container {
    position: relative;
    z-index: 1;
}

.concierge-content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.concierge-text {
    flex: 1;
}

.concierge-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.concierge-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cyber-concierge-section h2 {
    color: #00c3f5;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.concierge-tagline {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.cyber-concierge-section p {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .concierge-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .concierge-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .cyber-concierge-section {
        padding: 4rem 0;
        margin-top: 2rem;
        border-radius: 8px;
    }
    
    .cyber-concierge-section h2 {
        font-size: 2rem;
    }
    
    .concierge-tagline {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cyber-concierge-section p {
        font-size: 1rem;
    }
}

/* Scroll Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.9s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1.2);
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Vulnerability Scan Section */
.vulnerability-scan-section {
    padding: 5rem 0;
    margin-top: 0rem;
    position: relative;
    overflow: hidden;
}

/* Removed background gradient */

.vulnerability-scan-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: #222;
    border-radius: 8px;
    padding: 35px;
    border: 1px solid #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.vulnerability-scan-section h2 {
    color: #00c3f5;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vulnerability-scan-section p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.scan-disclaimer {
    font-size: 1rem;
    color: #b0b0b0;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.scan-button-container {
    margin-top: 2rem;
}

.scan-button {
    display: inline-block;
    background-color: #00c3f5;
    color: #000;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.scan-button:hover {
    background-color: #5fb4d9;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .vulnerability-scan-section h2 {
        font-size: 2rem;
    }
    
    .vulnerability-scan-section p {
        font-size: 1rem;
    }
    
    .scan-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0 8rem;
    background-color: #111;
    position: relative;
    overflow: hidden;
    margin: 5rem 0 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, #000 25%, transparent 25%) -10px 0,
        linear-gradient(-45deg, #000 25%, transparent 25%) -10px 0,
        linear-gradient(45deg, transparent 75%, #000 75%) -10px 0,
        linear-gradient(-45deg, transparent 75%, #000 75%) -10px 0;
    background-size: 20px 20px;
    background-color: #111;
    opacity: 0.1;
    z-index: 0;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    color: #00c3f5;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials-header p {
    color: #e0e0e0;
    font-size: 1.2rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    width: 100%;
    /* Removed animation from slide to prevent blue box flashing */
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {opacity: 0.7;}
    to {opacity: 1;}
}

.testimonial-box {
    background-color: #00c3f5;
    border-radius: 10px;
    padding: 3rem;
    color: black;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    text-align: left;
}

.reviewer-name {
    font-size: 1.3rem;
    font-weight: bold;
}

.testimonial-navigation {
    display: flex;
    gap: 0.5rem;
}

.testimonial-arrow {
    background: none;
    border: none;
    color: black;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 0.2rem 0.5rem;
}

.testimonial-arrow:hover {
    transform: scale(1.2);
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-header p {
        font-size: 1rem;
    }
    
    .testimonial-box {
        padding: 1.5rem;
    }
    
    .reviewer-name {
        font-size: 1.1rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

/* Media query for CTA section */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
    }
    
    .cta-text {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cta-section h2 {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
}

/* Responsive styles for small business page */
@media (max-width: 992px) {
    .sb-title-content h2 {
        font-size: 2.8rem;
    }
    
    .partner-flex {
        flex-direction: column;
    }
    
    .partner-image {
        margin-top: 2rem;
        text-align: center;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mdr-intro-section {
        flex-direction: column;
    }
    
    .mdr-image {
        margin-top: 2rem;
        text-align: center;
        padding-right: 0;
    }
    
    .mdr-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sb-title-content h2 {
        font-size: 2.2rem;
    }
    
    .sb-title-content p {
        font-size: 1.2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mdr-intro-content h2 {
        font-size: 1.8rem;
    }
    
    .mdr-tagline {
        font-size: 1.1rem;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .challenges-section h2,
    .benefits-section h2 {
        font-size: 1.8rem;
    }
}

/* Mobile Popup Styles */
.mobile-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: auto; /* Ensure clicks are captured */
}

.mobile-popup-content {
    background-color: #1a1a1a;
    border: 2px solid #00c3f5;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 90%;
    box-shadow: 0 0 20px rgba(0, 195, 245, 0.3);
    position: relative; /* Ensure proper stacking */
    z-index: 10000; /* Higher than parent */
}

.mobile-popup-content h3 {
    color: #00c3f5;
    margin-bottom: 1rem;
}

.mobile-popup-content p {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.mobile-popup-content button {
    background-color: #00c3f5;
    color: #000;
    border: none;
    padding: 1rem 1.8rem; /* Larger touch target */
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem; /* Larger text */
    cursor: pointer !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    z-index: 10001; /* Even higher z-index */
    display: inline-block;
    margin: 10px auto;
    -webkit-tap-highlight-color: rgba(0,195,245,0.5); /* Better touch feedback */
    user-select: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Add depth */
}

.mobile-popup-content button:hover {
    background-color: #5fb8e6;
    transform: translateY(-2px);
}

.mobile-popup-content button:active {
    background-color: #008db3;
    transform: translateY(1px);
}

/* Small Business Page - Scroll Padding */
html {
    scroll-padding-top: 200px; /* Buffer for fixed header */
}

/* Enhanced Field Effect Section */
.field-effect-enhanced {
    position: relative;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Header */
.fe-section-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.partner-features p {
    font-weight: 500;
    margin-bottom: 1rem;
    color: #00c3f5;
    text-align: center;
}

.fe-section-header h2 {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.fe-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #00c3f5;
}

.fe-tagline {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 15px;
}

/* Main Content Layout */
.fe-main-content {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* Platform Features */
.fe-platform-section h3 {
    color: #00c3f5;
    margin: 25px 0 15px;
    font-size: 1.5rem;
    text-align: center;
}

.fe-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.fe-feature-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: rgba(0, 195, 245, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 195, 245, 0.15);
    transition: all 0.3s ease;
    align-items: center;
    height: 100%;
}

.fe-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 195, 245, 0.1);
    border-color: rgba(0, 195, 245, 0.3);
}

.fe-feature-icon {
    width: 10px;
    height: 10px;
    background-color: #00c3f5;
    border-radius: 50%;
    margin-right: 5px;
}

.fe-feature-content h4 {
    color: #00c3f5;
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.fe-feature-content p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Sidebar */
.fe-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
    max-width: 350px;
}

.fe-logo-container {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}

.fe-logo-container img {
    max-width: 200px;
    height: auto;
}

/* Benefits */
.fe-benefits-container {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid rgba(0, 195, 245, 0.15);
}

.fe-benefits-container h3 {
    color: #00c3f5;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
}

.fe-benefits-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #00c3f5;
}

.fe-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fe-benefit-enhanced {
    padding: 15px;
    background-color: rgba(0, 195, 245, 0.05);
    display: flex;
    align-items: center;
}

.fe-benefit-enhanced .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.fe-benefit-enhanced .benefit-text {
    display: flex;
    flex-direction: column;
}

.fe-benefit-enhanced .benefit-text strong {
    color: #00c3f5;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.fe-benefit-enhanced .benefit-text span {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* CTA Button */
.fe-cta {
    text-align: center;
    margin-top: 20px;
}

.fe-button {
    display: inline-block;
    background-color: #00c3f5;
    color: #000;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #00c3f5;
    font-size: 1.05rem;
}

.fe-button:hover {
    background-color: transparent;
    color: #00c3f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 195, 245, 0.3);
}

/* Responsive Design for Field Effect Section */
@media (max-width: 992px) {
    .fe-main-content {
        flex-direction: column;
    }
    
    .fe-sidebar {
        width: 100%;
        max-width: 100%;
    }
    
    .fe-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-text {
        text-align: center;
    }
    
    .field-effect-enhanced {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .fe-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Next Level Business Strategies Section */
.next-level-section {
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
}

.next-level-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.next-level-content {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.next-level-text {
    flex: 1;
    padding-right: 40px;
    max-width: 550px;
}

.next-level-text h2 {
    color: #00c3f5;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.1;
}

.next-level-text h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.next-level-text p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.next-level-image-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
}

.next-level-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.next-level-cta {
    text-align: center;
    width: 100%;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.next-level-button {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #00c3f5;
    padding: 12px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.next-level-button:hover {
    background-color: #00c3f5;
    color: #000000;
    transform: translateY(-3px);
}

.next-level-button-primary {
    background-color: #00c3f5;
    color: #000000;
    border: 2px solid #00c3f5;
}

.next-level-button-primary:hover {
    background-color: transparent;
    color: #ffffff;
}

@media (max-width: 992px) {
    .next-level-content {
        flex-direction: column;
    }
    
    .next-level-text {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
        max-width: 100%;
    }
    
    .next-level-image-container {
        max-width: 100%;
    }
}
