/* Our Security Page - Premium Styles */

.security-hero-section {
    position: relative;
    padding: 80px 0 100px;
    background: #020b1c;
    background-image:
        radial-gradient(circle at 75% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 25% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 45%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='800' viewBox='0 0 1600 800'%3E%3Cg stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1' fill='none'%3E%3Cpath d='M-100 100c300 50 600-100 900-100s600 150 900 150'/%3E%3Cpath d='M-100 200c300 50 600-100 900-100s600 150 900 150'/%3E%3Cpath d='M-100 300c300 50 600-100 900-100s600 150 900 150'/%3E%3Cpath d='M-100 400c300 50 600-100 900-100s600 150 900 150'/%3E%3Cpath d='M-100 500c300 50 600-100 900-100s600 150 900 150'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    overflow: hidden;
}

/* Hide Porto Style Switcher and Demo Elements */
#styleSwitcher, 
.style-switcher,
.style-switcher-open,
.demo-switcher,
.buy-now,
.porto-style-switcher,
.envato-purchase-banner {
    display: none !important;
}

.security-hero-section {
    color: white;
}

.security-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.security-hero-content {
    flex: 1.2;
    max-width: 600px;
}

.security-hero-tagline {
    color: #ff6b00; /* More vibrant orange */
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 18px;
}

.security-hero-title {
    font-size: 36px; /* Even smaller for a tight, professional look */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -1px;
}

.security-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

.security-hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-demo {
    background: linear-gradient(90deg, #7c3aed 0%, #f97316 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.btn-demo .dot {
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
}

.btn-watch {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.play-icon-box {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-watch:hover .play-icon-box {
    transform: scale(1.1);
    background: #f97316;
    color: white;
}

.security-hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-bg-circle {
    position: absolute;
    width: 460px;
    height: 460px;
    background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
    border-radius: 50%;
    z-index: 1;
    opacity: 1;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.4);
    border: 8px solid rgba(255, 255, 255, 0.1); /* Added a subtle ring */
}

.man-image {
    width: 460px; /* Match circle size */
    height: 460px; /* Match circle size */
    object-fit: cover;
    border-radius: 50%; /* Make image circular */
    position: relative;
    z-index: 2;
    filter: brightness(1.1) contrast(1.05); /* Slightly pop the image */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid rgba(255, 255, 255, 0.05);
}

.security-hero-visual:hover .man-image {
    transform: scale(1.05);
}

/* Security Services Section */
.security-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f6f8ff 0%, #ffffff 50%, #fff9f5 100%);
    position: relative;
    overflow: hidden;
}

.security-services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(124, 58, 237, 0.1), transparent);
}

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

.services-subtitle {
    color: #ff6b00;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.services-title {
    font-size: 32px; /* Smaller as requested */
    font-weight: 800;
    color: #020b1c;
    letter-spacing: -0.5px;
}

.security-service-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(2, 11, 28, 0.05);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(2, 11, 28, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card-title {
    color: #020b1c !important;
}

.service-card-desc {
    color: #64748b !important;
}

.security-service-card:hover {
    transform: translateY(-10px);
    background: #ffffff; /* Turns white on hover for a clean effect */
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.2);
}

.security-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #f97316);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.security-service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(249, 115, 22, 0.08); /* Light orange background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.service-icon-box i {
    font-size: 32px;
    color: #ff6b00; /* Orange icon */
    transition: all 0.4s ease;
}

.security-service-card:hover .service-icon-box {
    background: #ff6b00;
    transform: rotateY(360deg);
}

.security-service-card:hover .service-icon-box i {
    color: #ffffff;
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #020b1c;
    margin-bottom: 20px;
}

.service-card-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #020b1c;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.security-service-card:hover .service-link {
    color: #ff6b00;
}

.security-service-card:hover .service-link i {
    transform: translateX(5px);
}

/* About Cyber Section */
.about-cyber-section {
    padding: 70px 0; /* Reduced padding for compactness */
    background: #f4f4f6; /* Slightly deeper light grey/tint */
    position: relative;
    overflow: hidden;
}

.about-cyber-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-cyber-left {
    flex: 1.1;
}

.about-cyber-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.about-subtitle {
    color: #ff6b00;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.about-title {
    font-size: 32px;
    font-weight: 800;
    color: #020b1c;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 580px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.about-grid-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.about-grid-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    border-color: rgba(249, 115, 22, 0.1);
}

.about-grid-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #020b1c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-grid-item i {
    color: #ff6b00;
    font-size: 18px;
}

.about-grid-item p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.organic-image-wrap {
    width: 100%;
    max-width: 440px;
    height: 380px;
    position: relative;
    z-index: 2;
}

.organic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(2, 11, 28, 0.1);
}

.organic-image:hover {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    transform: scale(1.02);
}

.about-visual-bg {
    position: absolute;
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    z-index: 1;
    top: -5%;
    left: -5%;
    border-radius: 50%;
    filter: blur(40px);
}

/* More Services Grid Section */
.more-services-section {
    padding: 60px 0;
    background-color: #eef2f7; /* Deeper shadowy grey */
    background-image: linear-gradient(180deg, rgba(2, 11, 28, 0.04) 0%, transparent 100%);
    border-top: 1px solid rgba(0,0,0,0.03);
}

.more-services-header {
    text-align: center;
    margin-bottom: 40px; /* Reduced */
}

.more-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px; /* Spaced out as requested */
}

.more-service-item {
    padding: 40px 30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.more-service-item:hover {
    background: #fff9f5;
    z-index: 2;
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.1);
}

.ms-icon-box {
    width: 55px; /* Smaller */
    height: 55px;
    background: #fdfdfd;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px; /* Modern squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.ms-icon-box i {
    font-size: 22px;
    color: #ff6b00;
}

.more-service-item:hover .ms-icon-box {
    background: #ff6b00;
    border-color: #ff6b00;
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.more-service-item:hover .ms-icon-box i {
    color: #ffffff;
}

.ms-subtitle {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.ms-title {
    font-size: 17px;
    font-weight: 800;
    color: #020b1c;
    line-height: 1.4;
    margin: 0;
}

.more-service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ff6b00;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.more-service-item:hover::after {
    width: 40%;
}

/* Vigilance Why Choose Section */
.vigilance-section {
    padding: 40px 0; /* Extremely compact */
    background: #020b1c;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='800' viewBox='0 0 1600 800'%3E%3Cg stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1' fill='none'%3E%3Cpath d='M-100 100c300 50 600-100 900-100s600 150 900 150'/%3E%3Cpath d='M-100 200c300 50 600-100 900-100s600 150 900 150'/%3E%3Cpath d='M-100 300c300 50 600-100 900-100s600 150 900 150'/%3E%3Cpath d='M-100 400c300 50 600-100 900-100s600 150 900 150'/%3E%3Cpath d='M-100 500c300 50 600-100 900-100s600 150 900 150'/%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
    color: white;
}

.vigilance-container {
    display: flex;
    align-items: center;
    gap: 40px; /* Even smaller gap */
}

.vigilance-circle {
    position: absolute;
    width: 320px; /* Tiny circle */
    height: 320px;
    background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.9;
}

.vigilance-img {
    width: 320px; /* Tiny image */
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.vigilance-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px; /* Tiny badge */
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    z-index: 3;
    animation: rotateBadge 10s linear infinite;
}

.vigilance-badge i {
    font-size: 24px !important;
}

.vigilance-subtitle {
    color: #ff6b00;
    font-weight: 700;
    font-size: 12px; /* Smaller */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.vigilance-title {
    font-size: 26px; /* Smaller */
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.vigilance-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px; /* Smaller */
}

.vigilance-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px; /* Tiny padding */
    border-radius: 50px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    width: fit-content;
}

.vigilance-item span {
    font-size: 13px; /* Smaller */
    font-weight: 500;
}


.btn-vigilance {
    background: linear-gradient(90deg, #7c3aed 0%, #f97316 100%);
    color: white !important;
    padding: 10px 25px; /* Smaller */
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px; /* Smaller */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(124, 58, 237, 0.2);
}

.btn-vigilance:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.3);
}

@media (max-width: 991px) {
    .vigilance-container {
        flex-direction: column;
        text-align: center;
    }
    .vigilance-item {
        margin-left: auto;
        margin-right: auto;
    }
}



