.feature-style-two {
    padding: 80px 20px;
    background: #f3f4f6;
}

/* Container */
.wrapper {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

/* Title */
.title {
    font-size: 34px;
    color: #1d3557;
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Left line */
.title::before {
    content: "";
    width: 60px;
    height: 3px;
    background:linear-gradient(90deg,#00aaff,#1d3557);
        border-radius:10px;

}

/* Right line */
.title::after {
    content: "";
    width: 60px;
    height: 3px;
    background:linear-gradient(90deg,#00aaff,#1d3557);
        border-radius:10px;

}
/* Subtitle */
.subtitle {
    color: #1d3557;
    margin-bottom: 40px;
    text-align: center;   /* ADD THIS */

}


/* Grid */
.grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Card */
.box {
    display: flex;
    align-items: center;
    gap: 20px;

    background: #ffffff;
    padding: 20px;
    border-radius: 12px;

    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

/* Icon */
.icon {
    font-size: 35px;
    background: #e0f2fe;
    padding: 15px;
    border-radius: 10px;
}

/* Text */
.box h3 {
    margin: 0;
    color: black;
}

.box p {
    margin-top: 5px;
    color: #6b7280;
    font-size: 14px;
}

/* Hover */
.box:hover {
    border-color: #1d3557;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .grid-box {
        grid-template-columns: 1fr;
    }
}
/* Layout */
.layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left */
.content-side {
    flex: 1;
}

/* Right */
.image-side {
    flex: 1;
}

.image-side img {
    width: 100%;
    border-radius: 12px;
    display:block;
}

/* Responsive */
@media (max-width: 768px) {
    .layout {
        flex-direction: column;
    }
}



/* Section */
.features-two {
    padding: 80px 20px;
    background: #f9fafb;
}

/* Container */
.features-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Image */
.features-image {
    flex: 1;
}

.features-image img {
    width: 100%;
    border-radius: 12px;
}

/* Content */
.features-content {
    flex: 1;
}

/* Heading */
.features-content h2 {
    font-size: 32px;
    color: #1d3557;
    margin-bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Left line */
.features-content h2::before {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #1d3557);
    border-radius: 10px;
}

/* Right line */
.features-content h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1d3557, #00aaff);
    border-radius: 10px;
}

/* Feature items */
.feature-item {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #1d3557;
}

.feature-item h3 {
    margin-bottom: 5px;
    color: #31827;
}

.feature-item p {
    color: #6b7280;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
    }
}



/* Section */
.cyber-alt {
    padding: 80px 20px;
    background: #0f172a;
}

/* Box */
.cyber-box {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border-left: 6px solid #00aaff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Title */
.cyber-box h2 {
    font-size: 30px;
    color: #1d3557;
    margin-bottom: 20px;
}

/* Content */
.cyber-content p {
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

/* Bullet style */
.cyber-content p::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00aaff;
}

/* Hover effect */
.cyber-box:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}


/* Section */
.offers-number {
    padding: 80px 20px;
    background: #f8fafc;
}

/* Container */
.offers-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Title */
.offers-title {
    font-size: 32px;
    color: #1d3557;
    margin-bottom: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Left line */
.offers-title::before {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #1d3557);
}

/* Right line */
.offers-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #1d3557);
}

/* Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.offer-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Number circle */
.number {
    width: 50px;
    height: 50px;
    background: #1d3557;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;
}

/* Heading */
.offer-card h3 {
    margin-bottom: 10px;
    color: #1d3557;
}

/* Text */
.offer-card p {
    color: #6b7280;
    font-size: 14px;
}

/* Hover */
.offer-card:hover {
    transform: translateY(-10px);
    background: #1d3557;
}

.offer-card:hover h3,
.offer-card:hover p {
    color: #fff;
}

.offer-card:hover .number {
    background: #fff;
    color: #1d3557;
}

/* Responsive */
@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

/* Section */
.digital-split {
    padding: 80px 20px;
    background: #f1f5f9;
}

/* Container */
.split-container {
    max-width: 80%;
    margin: auto;
}

/* Content */
.split-content {
    position: relative;
    padding-left: 40px;
}

/* Vertical line */
.split-content::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00aaff, #1d3557);
    border-radius: 10px;
}

/* SAME DOT STYLE (apply to both) */
.split-content h2::before,
.split-content p::before {
    content: "";
    position: absolute;
    left: -34px;
    width: 12px;
    height: 12px;
    background: #00aaff;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

/* Title */
.split-content h2 {
    font-size: 30px;
    color: #1d3557;
    margin-bottom: 25px;
    position: relative;
}

/* Dot position for title */
.split-content h2::before {
    top: 10px;
}

/* Paragraph */
.split-content p {
    position: relative;
    margin-bottom: 20px;
    padding-left: 5px;
    color: #4b5563;
    line-height: 1.7;
}

/* Dot position for paragraph */
.split-content p::before {
    top: 6px;
}


/* Section */
.cyber-showcase {
    position: relative;
    height: 360px;
    overflow: hidden;
}

/* Image */
.cyber-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay */
.cyber-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */

    text-align: center;
    padding: 20px;

    background: rgba(0,0,0,0.15);  /* very light */
}

/* Text */
.cyber-overlay h2 {
    color: #ffffff;
    font-size: 30px;
    max-width: 700px;
    line-height: 1.5;
    margin: 0 auto;
}

/* Section */
.cyber-navigate {
    padding: 80px 20px;
    background: #f1f5f9;
}

/* Section */
.cyber-journey {
    padding: 80px 20px;
    background: #ffffff;
}

/* Container */
.journey-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Left */
.journey-left {
    flex: 2;
}

.journey-left h2 {
    font-size: 32px;
    color: #1d3557;
    margin-bottom: 20px;
}

.journey-left p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Right Quote */
.journey-right {
    flex: 1;
    background: #1d3557;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    font-size: 18px;
    line-height: 1.6;
    position: relative;
}

/* Quote mark */
.journey-right::before {
    content: "“";
    font-size: 60px;
    position: absolute;
    top: -20px;
    left: 15px;
    color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .journey-container {
        flex-direction: column;
    }
}





/* Hover Effect */
.image-side img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Hover Effect */
.features-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}