/* Section Styling with Background Image */
.section-page-title {
    position: relative;
    background: url('/static/assets/img/service.png') no-repeat center center/cover;
    height: 75vh; /* Default height */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    background-attachment: fixed; /* Parallax effect */
    color: white;
}

/* Mobile Fix: Disable Fixed Background on Small Screens */
@media (max-width: 768px) {
    .section-page-title {
        background-attachment: scroll;
    }
}

/* Title Styling */
.service-title {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: white;
    z-index: 1;
    position: absolute;
    bottom: 20%;
    left: 5%; /* Adjusted for better responsiveness */
    max-width: 90%; /* Prevents title from overflowing */
    word-wrap: break-word;
}

/* Tablet View */
@media (max-width: 1024px) {
    .service-title {
        font-size: 40px;
        bottom: 15%;
        left: 5%;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .section-page-title {
        height: 50vh; /* Reduce height for better fit */
        padding: 15px;
    }

    .service-title {
        font-size: 30px;
        bottom: 10%;
        left: 10px;
        text-align: center;
        max-width: 90%;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .section-page-title {
        height: 40vh;
    }

    .service-title {
        font-size: 24px;
        bottom: 8%;
        left: 10px;
        text-align: center;
    }
}




/*--------------------------------------------------------------
# packages
--------------------------------------------------------------*/
/* Section Styling */
#pricing {
    background: linear-gradient(
        #000 30%,     /* Black Upper */
        #222 70%,     /* Dark Grey Middle */
        #1b1b1b 100%     /* Dark Grey Bottom */
    );
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Description */
.section-description {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 30px;
    max-width: 80%;
    margin: 0 auto;
}

/* Package Title */
.package-title {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 25px;
}

/* Package Cards Container - Using Grid */
.packages-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal-width columns */
    gap: 5px; /* Space between cards */
    margin-bottom: 40px; /* Bottom gap between the cards */
    margin-left: 5%;
    margin-right: 5%;
}

/* Individual Package Card */
.package-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px; /* Slightly reduced padding */
    text-align: left;
    color: #ecf0f1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    margin-bottom: 15px; /* Space between cards */
}

/* Package Card Hover Effect */
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Increased shadow on hover */
    border-color: #228B22;
}

/* Package Card Header */
.package-card h4 {
    font-size: 22px;
    font-weight: bold;
    color: #228B22;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

/* Package Card Paragraph */
.package-card p {
    font-size: 16px;
    color: #ecf0f1;
}

/* Features Section */
.features-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-top: 20px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #ecf0f1;
    margin-top: 10px;
    text-align: left;
}

/* Feature Item */
.features-list li {
    margin-bottom: 8px; /* Reduced space between features */
    position: relative;
    padding-left: 25px;
}

.features-list li::before {
    content: "✔";
    color: #228B22;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .packages-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }

    .package-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .packages-container {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }

    .package-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .features-title {
        font-size: 24px;
    }

    .features-list li {
        font-size: 14px;
    }
}




/*--------------------------------------------------------------
# 2nd div - honeypot
--------------------------------------------------------------*/
/* Honeypot Section */
.honeypot-section {
    position: relative;
    background: linear-gradient(#1b1b1b 0%, #222 70%, #000 100%);
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 5%;
}

/* Responsive Grid Layout */
.honeypot-grid {
    display: grid;
    grid-template-columns: 3fr 9fr; /* 3 columns for header, 9 for content */
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

/* Header (Left Side - 3 columns) */
.honeypot-header {
    text-align: left;
    max-width: 90%;
    color: white;
}

.honeypot-header h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ecf0f1;
    text-align: left;
}

.honeypot-header h5 {
    font-size: 22px;
    color: #00ff6a;
    text-transform: uppercase;
    text-align: left;
}

/* Content Box (Right Side - 9 columns) */
.honeypot-container {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: left;
}

.honeypot-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 90%;
    border: 4px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honeypot-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Neon Border Animation */
.honeypot-box::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff007b, #00c9ff, #00ff6a, #ff007b);
    z-index: -1;
    border-radius: 20px;
    filter: blur(10px);
    animation: neon-glow 4s linear infinite;
}

/* Heading Styling */
.honeypot-box h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #228B22;
}

/* Paragraph Styling */
.honeypot-box p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    text-align: left;
}

/* List Styling */
.honeypot-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.honeypot-list li {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.honeypot-list strong {
    color: #228B22; 
}

/* Animation for Neon Effect */
@keyframes neon-glow {
    0% { transform: translateX(-100%) translateY(-100%); }
    25% { transform: translateX(100%) translateY(-100%); }
    50% { transform: translateX(100%) translateY(100%); }
    75% { transform: translateX(-100%) translateY(100%); }
    100% { transform: translateX(-100%) translateY(-100%); }
}

/* Responsive Design */

/* ✅ Large Screens (1900px+) */
@media (min-width: 1900px) {
    .honeypot-grid {
        max-width: 1600px;
    }
    .honeypot-header h1 { font-size: 50px; }
    .honeypot-header h5 { font-size: 24px; }
    .honeypot-box h3 { font-size: 30px; }
    .honeypot-box p { font-size: 20px; }
    .honeypot-list li { font-size: 20px; }
}

/* ✅ Desktop & Laptops (1200px - 1900px) */
@media (max-width: 1900px) and (min-width: 1024px) {
    .honeypot-header h1 { font-size: 45px; }
    .honeypot-header h5 { font-size: 22px; }
}

/* ✅ Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .honeypot-grid {
        grid-template-columns: 1fr; /* Stacks header and content */
        text-align: center;
    }
    .honeypot-header {
        max-width: 100%;
        text-align: center;
    }
    .honeypot-box {
        max-width: 100%;
        padding: 20px;
    }
}

/* ✅ Mobile Devices (Below 768px) */
@media (max-width: 768px) {
    .honeypot-section {
        padding: 40px 5%;
    }
    .honeypot-header h1 { font-size: 32px; }
    .honeypot-header h5 { font-size: 18px; }
    .honeypot-box h3 { font-size: 22px; }
    .honeypot-box p, .honeypot-list li { font-size: 16px; }
}

/* ✅ Small Mobile Devices (Below 480px) */
@media (max-width: 480px) {
    .honeypot-section {
        min-height: 100vh;
    }
    .honeypot-grid {
        padding: 20px;
    }
    .honeypot-header h1 { font-size: 24px; }
    .honeypot-header h5 { font-size: 16px; }
    .honeypot-box {
        padding: 15px;
    }
}







/*--------------------------------------------------------------
# 3rd div - digital-solutions
--------------------------------------------------------------*/
/* Digital Solutions Section */
.digital-solutions-section {
    position: relative;
    background: linear-gradient(#000 0%, #222 30%, #1b1b1b 100%);
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 5%;
    text-align: left;
}

/* Responsive Grid Layout */
.digital-solutions-grid {
    display: grid;
    grid-template-columns: 9fr 3fr; /* 3 columns for header, 9 for content */
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

/* Header (Left Side - 3 columns) */
.digital-solutions-header {
    text-align: left;
    max-width: 90%;
    color: white;
    text-align: left;
}

.digital-solutions-header h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    color: whitesmoke;
    text-align: right;
}

.digital-solutions-header h5 {
    font-size: 22px;
    color: #00ff6a;
    text-transform: uppercase;
    text-align: right;
}

/* Content Box (Right Side - 9 columns) */
.digital-solutions-container {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: left;
}

.digital-solutions-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 90%;
    border: 4px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.digital-solutions-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Neon Border Animation */
.digital-solutions-box::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff007b, #00c9ff, #00ff6a, #ff007b);
    z-index: -1;
    border-radius: 20px;
    filter: blur(10px);
    animation: neon-glow 4s linear infinite;
    text-align: left;
}

/* Heading Styling */
.digital-solutions-box h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #228B22;
}

/* Paragraph Styling */
.digital-solutions-box p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    text-align: left;
}

/* List Styling */
.digital-solutions-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.digital-solutions-list li {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
    text-align: left;
}

.digital-solutions-list strong {
    color: #228B22; 
}

/* Animation for Neon Effect */
@keyframes neon-glow {
    0% { transform: translateX(-100%) translateY(-100%); }
    25% { transform: translateX(100%) translateY(-100%); }
    50% { transform: translateX(100%) translateY(100%); }
    75% { transform: translateX(-100%) translateY(100%); }
    100% { transform: translateX(-100%) translateY(-100%); }
}

/* Responsive Design */

@media (min-width: 1900px) {
    .digital-solutions-grid {
        max-width: 1600px;
    }
    .digital-solutions-header h1 { font-size: 50px; }
    .digital-solutions-header h5 { font-size: 24px; }
    .digital-solutions-box h3 { font-size: 30px; }
    .digital-solutions-box p { font-size: 20px; }
    .digital-solutions-list li { font-size: 20px; }
}

@media (max-width: 1900px) and (min-width: 1024px) {
    .digital-solutions-header h1 { font-size: 45px; }
    .digital-solutions-header h5 { font-size: 22px; }
}


@media (max-width: 1024px) {
    .digital-solutions-grid {
        grid-template-columns: 1fr; /* Stacks header and content */
        text-align: center;
    }
    .digital-solutions-header {
        max-width: 100%;
        text-align: center;
    }
    .digital-solutions-box {
        max-width: 100%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .digital-solutions-section {
        padding: 40px 5%;
    }
    .digital-solutions-header h1 { font-size: 32px; }
    .digital-solutions-header h5 { font-size: 18px; }
    .digital-solutions-box h3 { font-size: 22px; }
    .digital-solutions-box p, .digital-solutions-list li { font-size: 16px; }
}

@media (max-width: 480px) {
    .digital-solutions-section {
        min-height: 100vh; /* Adjusted height for small screens */
        text-align: left;
    }
    .digital-solutions-grid {
        padding: 20px;
        text-align: left;
    }
    .digital-solutions-header h1 { font-size: 24px; }
    .digital-solutions-header h5 { font-size: 16px; }
    .digital-solutions-box {
        text-align: left;
        padding: 15px;
    }
    .digital-solutions-box h3 { font-size: 18px; }
    .digital-solutions-box p, .digital-solutions-list li { font-size: 14px; }
}







/*--------------------------------------------------------------
# SOC Development 
--------------------------------------------------------------*/
/* SOC Development Section */
.soc-development-section {
    position: relative;
    background: linear-gradient(#1b1b1b 0%, #222 70%, #000 100%);
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 5%;
}

/* Responsive Grid Layout */
.soc-development-grid {
    display: grid;
    grid-template-columns: 3fr 9fr; /* 3 columns for header, 9 for content */
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

/* Header (Left Side - 3 columns) */
.soc-development-header {
    text-align: left;
    max-width: 90%;
    color: white;
}

.soc-development-header h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    color: whitesmoke;
    text-align: left;
}

.soc-development-header h5 {
    font-size: 22px;
    color: #00ff6a;
    text-transform: uppercase;
    text-align: left;
}

/* Content Box (Right Side - 9 columns) */
.soc-development-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.soc-development-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 90%;
    border: 4px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.soc-development-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Neon Border Animation */
.soc-development-box::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff007b, #00c9ff, #00ff6a, #ff007b);
    z-index: -1;
    border-radius: 20px;
    filter: blur(10px);
    animation: neon-glow 4s linear infinite;
}

/* Heading Styling */
.soc-development-box h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #228B22;
}

/* Paragraph Styling */
.soc-development-box p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    text-align: left;
}

/* List Styling */
.soc-development-list {
    list-style-type: none;
    padding: 0;
}

.soc-development-list li {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.soc-development-list strong {
    color: #228B22; 
}

/* Animation for Neon Effect */
@keyframes neon-glow {
    0% { transform: translateX(-100%) translateY(-100%); }
    25% { transform: translateX(100%) translateY(-100%); }
    50% { transform: translateX(100%) translateY(100%); }
    75% { transform: translateX(-100%) translateY(100%); }
    100% { transform: translateX(-100%) translateY(-100%); }
}

/* Responsive Design */

/* ✅ Large Screens (1900px+) */
@media (min-width: 1900px) {
    .soc-development-grid {
        max-width: 1600px;
    }
    .soc-development-header h1 { font-size: 50px; }
    .soc-development-header h5 { font-size: 24px; }
    .soc-development-box h3 { font-size: 30px; }
    .soc-development-box p { font-size: 20px; }
    .soc-development-list li { font-size: 20px; }
}

/* ✅ Desktop & Laptops (1200px - 1900px) */
@media (max-width: 1900px) and (min-width: 1024px) {
    .soc-development-header h1 { font-size: 45px; }
    .soc-development-header h5 { font-size: 22px; }
}

/* ✅ Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .soc-development-grid {
        grid-template-columns: 1fr; /* Stacks header and content */
        text-align: center;
    }
    .soc-development-header {
        max-width: 100%;
        text-align: center;
    }
    .soc-development-box {
        max-width: 100%;
        padding: 20px;
    }
}

/* ✅ Mobile Devices (Below 768px) */
@media (max-width: 768px) {
    .soc-development-section {
        padding: 40px 5%;
    }
    .soc-development-header h1 { font-size: 32px; }
    .soc-development-header h5 { font-size: 18px; }
    .soc-development-box h3 { font-size: 22px; }
    .soc-development-box p, .soc-development-list li { font-size: 16px; }
}

/* ✅ Small Mobile Devices (Below 480px) */
@media (max-width: 480px) {
    .soc-development-section {
        min-height: 100vh;
        text-align: left;
    }
    .soc-development-grid {
        padding: 20px;
        text-align: left;
    }
    .soc-development-header h1 { font-size: 24px; }
    .soc-development-header h5 { font-size: 16px; }
    .soc-development-box {
        padding: 15px;
        text-align: left;
    }
}







/*--------------------------------------------------------------
# VAPT
--------------------------------------------------------------*/
/* VAPT Section */
.vapt-section {
    background: linear-gradient(#000 0%, #222 30%, #1b1b1b 100%);
    color: white;
    padding: 50px 10%;
    text-align: center;
}

/* VAPT Header Styling */
.service-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

/* VAPT Content */
.vapt-content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vapt-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin-bottom: 40px;
    color: #228B22;
    text-align: center;
}

/* Grid Layout for VAPT Cards */
.vapt-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* Flexible grid layout */
    gap: 20px;
    width: 100%;
    max-width: 1000px; /* Centering the grid */
    margin: 0 auto;
}

/* VAPT Card Styling */
.vapt-card {
    background: rgba(0, 0, 0, 0.8); /* Dark background */
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    text-align: left;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* Keeps all content inside */
    justify-content: space-between;
    min-height: 100%;
}

.vapt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.5);
}

.vapt-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #00ff6a;
    margin-bottom: 15px;
    text-align: center;
}

.vapt-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ddd;
}

/* List inside card */
.vapt-card ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 15px;
}

.vapt-card ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: white;
    position: relative;
    padding-left: 20px;
}

/* Custom list bullet */
.vapt-card ul li::before {
    content: "✔";
    color: #00ff6a;
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
    .vapt-section {
        padding: 50px 5%;
    }

    .vapt-card {
        padding: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-header h2 {
        font-size: 28px;
    }

    .vapt-card {
        padding: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-header h2 {
        font-size: 24px;
    }

    .vapt-card {
        padding: 10px;
    }
}


