/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Variables */
:root {
    --primary-red: #c92727;
    --dark-black: #000000;
    --pure-white: #ffffff;
    --heading-font: 'Orbitron', sans-serif;
    --body-font: 'Rajdhani', sans-serif;
}

/* Global Styles */
body {
    background-color: var(--dark-black);
    color: var(--pure-white);
    min-height: 100vh;
}

/* Announcement Bar */
.announcement {
    background-color: var(--primary-red);
    font-family: var(--body-font);
    color: var(--pure-white);
    padding: 10px;
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between; /* Align items to the edges */
    align-items: center;
}

.announcement a {
    color: var(--pure-white);
    text-decoration: underline;
}

/* New class for the email text */
.announcement .mail{
    margin-left: auto; /* Push the email text to the right */
    padding-left: 20px; /* Add some spacing between the announcement and email */
    
}

.mail a{
    font-size: 14px !important; /* Match the size of the training page */
    color: var(--pure-white) !important;
    text-decoration: none !important;
}

.close-notice {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0 8px;
    transition: transform 0.3s;
}

.close-notice:hover {
    transform: scale(1.2);
}

.announcement.hidden {
    display: none;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 99;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-family: var(--heading-font);
    color: var(--pure-white);
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--pure-white);
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: var(--heading-font);
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links a:hover {
    color: var(--primary-red);
    
}
/* Main Button Styles */
.breach-btn {
    background: linear-gradient(45deg, #ff0000, #990000);
    color: var(--pure-white);
    border: 2px solid #ff0000;
    border-radius: 6px;
    font-weight: bold;
    font-family: var(--heading-font);
    font-size: 1rem;
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: breathe 2s infinite, glow 2s infinite;
}

@keyframes breathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px #ff0000; }
    50% { box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000; }
    100% { box-shadow: 0 0 5px #ff0000; }
}

.breach-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    display: flex;
    padding: 50px 80px;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: block;
}

.hero-image embed {
    width: 100%;
    height: 500px; /* Fixed height for embed */
    display: block;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-family: var(--body-font);
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.8;
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(201, 39, 39, 0.1);
    border: 1px solid rgba(201, 39, 39, 0.2);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.dropdown-content a {
    color: var(--pure-white);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.dropdown-content a:hover {
    background: var(--primary-red);
    padding-left: 25px;
    color: var(--pure-white) !important;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        background: rgba(255, 255, 255, 0.05);
        min-width: 100%;
        margin-top: 10px;
        box-shadow: none;
        border: none;
    }

    .dropdown-content a {
        padding: 15px 30px;
    }
}


/* CTA Buttons */
.cta-buttons {
    margin-top: 8rem;
    display: flex;
    gap: 30px;
}

.primary-btn {
    background: var(--primary-red);
    margin-right: 4rem;
    color: var(--pure-white);
    padding: 15px 35px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.secondary-btn {
    background: transparent;
    color: var(--pure-white);
    padding: 15px 35px;
    border: 2px solid var(--pure-white);
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.primary-btn::before,
.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.primary-btn:hover::before,
.secondary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    background: #cc0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,0,0,0.3);
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}/* Zero Trust Section */
.zero-trust {
    padding: 80px 50px;
    background: linear-gradient(#1a1a1a, #1a1a1a, #1a1a1a 100%);
    overflow: hidden;
}

.zero-trust-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    height: 500px;
}

.zero-trust-image {
    flex: 1;
    max-width: 600px;
    display: block;
}

.zero-trust-image img {
    width: 100%;
    height: 500px;
    margin-top: 2rem;
    display: block;
    object-fit: contain;
}

.rotating-image {
  
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.zero-trust-content {
    flex: 1;
    padding: 40px;
    background: rgb(0, 0, 0);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    margin-top: 2rem;
    height: 500px;
}


.zero-trust-content h2 {
    font-family: var(--heading-font);
    margin-top: 5rem;
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-red), #ff3333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zero-trust-content p {
    font-family: var(--body-font);
    margin-top: 3rem;
    font-size: 18px;
    line-height: 1.6;
    color: var(--pure-white);
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 100px 50px;
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h1 {
    font-family: var(--heading-font);
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-red), #ff3333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-header p {
    font-family: var(--body-font);
    font-size: 20px;
    color: var(--pure-white);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.297);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15);
}

.service-card h3 {
    font-family: var(--heading-font);
    font-size: 26px;
    color: var(--pure-white);
    margin: 25px 0;
}

.service-card p {
    font-family: var(--body-font);
    font-size: 18px;
    color: var(--pure-white);
    opacity: 0.8;
    line-height: 1.7;
    flex-grow: 1;
}

.service-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
}

.service-icon svg,
.service-icon embed,
.service-icon img
 {
    width: 100px;
    height: 100px;
    display: block;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--pure-white);
    transition: 0.3s;
}

/* Service Card Hover Effect */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.service-card:hover::before {
    transform: translateX(100%);
}
.learn-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--heading-font);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 180px;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.2), transparent);
    transition: 0.5s;
}

.learn-more-btn:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.learn-more-btn:hover::before {
    left: 100%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-card {
        min-height: 380px;
    }

    .hero-image embed {
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .zero-trust-container {
        flex-direction: column;
        text-align: center;
    }
    
    .zero-trust-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .zero-trust-content {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-black);
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .services {
        padding: 60px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-buttons {
        margin-top: 3rem;
        flex-direction: column;
        gap: 20px;
    }
    
    .primary-btn {
        margin-right: 0;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .services-header h1 {
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
    
    .service-card p {
        font-size: 16px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .breach-btn,
    .primary-btn,
    .secondary-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .zero-trust-content {
        padding: 20px;
    }

    .zero-trust-content h2 {
        font-size: 24px;
    }

    .zero-trust-content p {
        font-size: 16px;
    }
    
    .announcement {
        padding: 8px;
        font-size: 14px;
    }
    
    .close-notice {
        right: 10px;
        font-size: 18px;
    }
}

/* Hide images only on mobile devices */
@media (max-width: 768px) {
    .hero-image,
    .zero-trust-image {
        display: none;
    }
}
.testimonials {
    padding: 100px 0;
    background-color: var(--dark-black);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-family: var(--heading-font);
    font-size: 48px;
    color: var(--pure-white);
    margin: 0;
}

.testimonials-container {
    position: relative;
    max-width: 1400px; /* Increased for 3 cards */
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px); /* Set to show 3 cards */
    min-width: calc(33.333% - 20px); /* Set to show 3 cards */
    background: transparent;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.quote-icon {
    font-size: 64px;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 20px;
    font-family: serif;
}

.quote-text {
    font-family: var(--body-font);
    font-size: 20px; /* Slightly smaller for 3 cards */
    line-height: 1.5;
    color: var(--pure-white);
    margin-bottom: 30px;
    opacity: 0.9;
}

.client-industry {
    font-family: var(--heading-font);
    font-size: 18px;
    color: var(--pure-white);
    font-weight: 600;
}

.nav-btn {
    background: transparent;
    border: none;
    color: var(--pure-white);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.nav-btn:hover {
    color: var(--primary-red);
}

.nav-btn svg {
    width: 40px;
    height: 40px;
}

/* Scroll Indicator */
.scroll-indicator {
    max-width: 200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.scroll-line {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.scroll-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary-red);
    width: 0;
    transition: width 0.5s ease;
    border-radius: 2px;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px); /* 2 cards on medium screens */
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-container {
        padding: 0 40px;
    }

    .testimonial-card {
        flex: 0 0 100%; /* 1 card on mobile */
        min-width: 100%;
    }

    .testimonials-header h2 {
        font-size: 36px;
    }

    .quote-text {
        font-size: 18px;
    }

    .nav-btn svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .testimonials-container {
        padding: 0 30px;
    }

    .quote-text {
        font-size: 16px;
    }

    .client-industry {
        font-size: 16px;
    }
}
.footer {
    position: relative;
    background-color: var(--dark-black);
    color: var(--pure-white);
    overflow: hidden;
    padding-top: 150px;
}

.footer-diagonal {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-red) 0%, #990000 100%);
    transform: skewY(-3deg);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100px;
}

.footer-logo span {
    font-family: var(--heading-font);
    font-size: 24px;
    color: var(--pure-white);
}

.footer-description {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-section h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--pure-white);
    text-decoration: none;
    font-family: var(--body-font);
    font-size: 16px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
    opacity: 1;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font);
    opacity: 0.8;
}

.contact-icon {
    color: var(--primary-red);
    font-style: normal;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 20px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: var(--body-font);
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--pure-white);
    text-decoration: none;
    font-family: var(--body-font);
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
    opacity: 1;
}

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

@media (max-width: 768px) {
    .footer {
        padding-top: 100px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 30px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding-top: 80px;
    }
    
    .footer-diagonal {
        height: 150px;
        top: -75px;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .footer-logo span {
        font-size: 20px;
    }
}
