:root {
    --hero-dark-blue: #0A0A33; /* Used as a base for text */
    --hero-red: #A8003E; /* Main button color */
    --hero-purple: #5F009F; /* Button hover/gradient start */
    --hero-text-color: #ffffff;
}
body{
    font-family: "Manrope", sans-serif;
}
h1,h2,h3,h4,h5{
    font-family: "Manrope", sans-serif;
}
/* 1. Hero Section Background and Overlay */
.main-section {
    position: relative;
    padding-top: 100px;
    color: var(--hero-text-color);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url(../images/main-bg.svg);
    background-size: cover;
    padding-bottom: 40px;
}

.main-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Create the complex red/blue wave gradient effect */
    background: radial-gradient(circle at 10% 50%, rgba(168,0,62,0.4) 0%, transparent 40%),
                radial-gradient(circle at 90% 50%, rgba(30,144,255,0.4) 0%, transparent 40%),
                url('path/to/your/abstract_wave_pattern.svg') no-repeat center center / cover;
    opacity: 1; 
    z-index: -1;
}

/* 2. Headline Styling */
.hero-headline {
    font-size: 3rem; /* Adjust size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

/* 3. Button Styling */
.hero-button {
    background-image: linear-gradient(to right, var(--hero-red), var(--hero-purple));
    border: none;
    color: var(--hero-text-color);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-button:hover,
.hero-button:focus {
    background-image: linear-gradient(to right, var(--hero-purple), var(--hero-red));
    color: var(--hero-text-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.news-slider {
    position: relative;
    padding-top: 20px;
    padding-bottom: 10px;
}

.news-divider {
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    margin: 0;
}

.news-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 20px;
}

.news-item p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--hero-text-color);
    opacity: 0.8;
    cursor: pointer;
}

.slider-controls .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-controls .dot.active {
    background-color: var(--hero-text-color);
}

.services-accordion-section {
}

.accordion-item {
    margin-bottom: 20px;
}

.accordion-button {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 10px 0;
    color: #ffffff;
    transition: color 0.3s;
    border-bottom: none !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Active/Expanded State Styling (Cyber Security) */
.accordion-button:not(.collapsed) {
    color: #A8003E; /* Red color for active title */
    background-color: transparent !important;
}

.accordion-button:not(.collapsed) .service-title {
    font-size: 2.25rem; /* Large size for active title */
    font-weight: 800;
}

/* Service Number (01, 02, etc.) */
.service-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-right: 15px;
    transition: color 0.3s;
    color: #CCCCCC;
    position: relative;
}

/* 3. Active Content (Description, Tags, Link) */
.accordion-description {
    font-size: 1rem;
    max-width: 85%;
    line-height: 1.6;
    margin-top: 16px;
}

.tag-badge {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: default;
    transition: background-color 0.2s;
    border: 1px solid var(--primary-red);
    color: #222;
}

.tag-badge:hover {
    border-color: var(--primary-red);
    color: #222;
}

.accordion-button:not(.collapsed) .accordion-title {
    color: var(--primary-red);
}

.learn-more-link {
    color: black; /* Red link color */
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}
.accordion-body {
    padding-left: 90px !important;
}

span.service-number:before {
    content: "";
    width: 30px;
    height: 4px;
    background: #C7C7C7;
    top: 19px;
    right: -43px;
    position: absolute;
    border-radius: 50px;
}

span.accordion-title {
    position: relative;
}

.chevron-btn {
    width: 28px;
    height: 28px;
    background-color: var(--primary-red);
    margin-left: 9px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 13px;
    overflow: hidden;
}
.chevron-btn .red-arrow-icon:nth-child(2) {
    position: relative;
    left: -33px;
    color: #000;
}
.chevron-btn .red-arrow-icon:first-child {
    left: 3px;
    position: relative;
}
a.learn-more-link:hover i:first-child {
    left: 24px;
}
a.learn-more-link:hover i:nth-child(2) {
    left: -3px;
}
.red-arrow-icon {
    transition: 0.3s all;
}
.learn-more-link:hover .chevron-btn {
    background: #fff;
    border: 1px solid #000;
}
.graphic-content-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.main-graphic {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background-image: url('path/to/your/cyber_security_graphic.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
}

.top-badge {
    position: absolute;
    top: 10%; /* Adjust position */
    right: 5%; /* Adjust position */
    z-index: 20;
    background-color: #ffffff;
    color: #000000;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.accordion-button::after {
    display: none;
}


.service-tags {
    width: 68%;
}

.top-badge .up-icon {
    background-color: #64C056; /* Green */
    color: #ffffff;
    border-radius: 50%;
    padding: 0 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

span.accordion-title {
    color: #222;
    font-size: 2.5rem;
    margin-left: 45px;
}

/* Custom Colors */
.bg-dark-bg {
    background-color: #F2F2F2;
}
/* 1. Card Layout and General Styling */
.case-study-card {
    border-radius: 12px;
    
     /* Fixed height for consistency */
    position: relative;
    overflow: hidden;
    display: block;
}

/* Specific Card Colors */
.tims-card {
    background-color: #0A0A33; /* Dark Blue */
}
.ifg-card {
    background-color: #005030; /* Dark Green */
}

/* 2. Card Content and Text */
.case-study-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.7;
    margin-bottom: 10px;
    display: block;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-description {
    font-size: 1rem;
    opacity: 0.9;
}

/* 3. Feature List Styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    opacity: 0.8;
}

.feature-icon {
    /* Placeholder for icons */
    margin-right: 10px;
    font-size: 1.2rem;
    color: #A8003E; /* Red accent color */
}

/* 4. Image Placeholder (Styling the placement of the internal graphic) */
.card-image-placeholder {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%; 
    height: 50%;
    /* In a real project, you would use a background image for this or an <img> tag */
}

/* 5. Slick Slider Overrides (Dots and Arrows) */
.slick-dots {
    bottom: -60px; /* Move dots down */
    text-align: left;
    padding-left: 15px; 
}

.slick-dots li button:before {
    font-size: 10px;
    color: #fff; 
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: #A8003E; /* Active dot is red */
    opacity: 1;
}

/* Custom Arrows to match the design */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    border: 1px solid #000 !important;
    border-radius: 50%;
    z-index: 10;
    color: #000;
    bottom: -8px;
}

.slick-prev:before, .slick-next:before {
    color: #ffffff;
    font-size: 18px;
    line-height: 40px; 
    opacity: 1;
}

.slick-prev {
    /* left: -60px; */ /* Position the arrow */
}

.slick-next {
    right: -60px; /* Position the arrow */
}
.slide-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}
ul.slick-dots button {
    background: #000;
}
ul.slick-dots {
    margin-top: 2rem;
    justify-content: center;
}
.work-slider .slick-list {
    padding: 0 35% 0 0;
}
/* 1. Section Background */
.abm-difference-section {
    background-color: #ffffff;
    color: #000000;
}

/* 2. Header Styling */
.difference-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.lead {
    font-size: 1.15rem;
}

/* 3. Card Styling */
.difference-card {
    padding: 20px 30px;
     /* Light gray border */
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
    background: #F6F6F6;
}

.difference-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Subtle shadow on hover */
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.card-description {
    font-size: 1rem;
    color: #4F4F4F; /* Muted text color */
    line-height: 1.6;
}

/* 4. Icon Styling (to match the red-outlined effect) */
.card-icon-wrapper {
    width: 60px;
    height: 60px;
    padding: 10px;
     /* Red border */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    /* Assuming icons are SVGs or images that can be colored */
    width: 100%;
    height: 100%;
     /* Optional: to make a grayscale icon red */
}
.why-us-grid {
    display: grid;
    grid-auto-columns: 15.5%;
    grid-gap: 1rem;
    grid-auto-rows: 130px;
    justify-content: center;
}
.box-item1 {
    grid-column: 1/3;
}

.box-item2 {
    grid-column: 3/5;
}

.box-item3 {
    grid-column: 5/7;
}

.box-item4 {
    grid-column: 1/3;
}

.box-item8 {
    /* grid-row: 2 / 3; */
}

.box-item8 {grid-column: 6/7;grid-row: 2/4;}

.box-item7 {
    grid-column: 1/3;
}

.box-item5 {
    grid-column: 3/5;
    grid-row: 2/4;
}

.box-item6 {
    grid-row: 2/4;
    grid-column: 5/6;
}

/* 1. Section Background and Text */
.why-us-section {
    background-color: #f7f7f7; /* Very light gray/off-white background */
    color: #000000;
}
.why-us-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.text-muted-dark {
    color: #555555;
}

/* 2. Feature Card Styling */
.feature-card {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    box-shadow: 0 4px 9px 1px rgba(0, 0, 0, 0.3);
}

/* Red Title Text (for the main numerical/short items) */
.feature-title {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #A8003E; /* Red accent color */
    line-height: 1;
}

/* Large Text Styling (Since 1983, ISO, 24/7) */
.feature-title.text-large {
    font-size: 2rem;
    font-weight: 800;
}

.feature-subtitle {
    font-size: 1.15rem;
    color: #4F4F4F;
    font-weight: 800;
    margin-top: 5px;
    line-height: 1.2;
}
.box-item8 .feature-subtitle {
    font-size: 0.95rem;
}
/* 3. Icon and Image Styling */
.feature-icon-wrapper {
    /* Styles for the icon container */
    max-width: 80px;
    min-width: 60px;
    height: auto;
}

.feature-icon {
    /* Styles for the actual icon image */
    width: 100%;
    height: auto;
    opacity: 0.7; /* Optional: adjust icon lightness */
}

/* 4. Certified Logos Specific Styling (Feature 8) */
.certified-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: space-around;
}

.certified-logo {
    max-height: 25px; /* Control logo size */
    width: auto;
    opacity: 0.8;
}
:is(.box-item6,.box-item5) .feature-icon-wrapper {
    display: block;
    align-self: flex-end;
}
:is(.box-item6,.box-item5) .feature-card-inner {
    flex-direction: column;
    align-items: flex-start !important;
    height: 100%;
}
/* 1. Section Container */
.cta-banner-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* 2. Banner Box Styling (Background, Radius, Position) */
.cta-banner-box {
     /* Red/Maroon base color */
     border-radius: 12px;
     color: #ffffff;
     position: relative;
     overflow: hidden;
    
    /* Complex Gradient/Pattern Overlay to match the image */
     /* Light effect */
     background-size: cover;
    
    /* Ensure text is above the background effects */
     z-index: 1;
     background: #B10C2A;
     background-image: url(../images/cta-bg.svg);
     background-repeat: no-repeat;
     background-size: cover;
}

/* 3. Headline Styling */
.cta-headline {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
}
section.region-numbers p {
    margin-bottom: 0;
}

span.accordion-title:after {
    background-color: var(--primary-red);
    content:
    "";
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    transition: .7s 
cubic-bezier(.16, 1, .3, 1);
    position: absolute;
}
button.accordion-button:hover .accordion-title:after {
    width: 100%;
}
button.accordion-button:hover .accordion-title {
    color: var(--primary-red);
}

button.slick-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}
button.slick-next i {
    transform: translateX(-20px);
    transition: 0.3s all;
}
button.slick-next:hover i {
    transform: translateX(20px);
}
button.slick-prev i {
    transform: translateX(21px);
    transition: 0.3s all;
}
button.slick-prev:hover i {
    transform: translateX(-19px);
}
button.slick-arrow:hover {
    background: #000 !important;
    color: #fff;
    transition: 0.3s all;
}

@media (min-width: 768px) {
    .cta-headline {
        font-size: 2.25rem;
    }
}

/* 4. Button Styling */
.cta-button {
    /* The button is white with red text, reverse of the standard theme button */
    background-color: #ffffff;
    color: #A8003E; /* Red text color */
    border: 2px solid #ffffff;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap; /* Prevents text from wrapping on small screens */
}

.cta-button:hover,
.cta-button:focus {
    background-color: #f0f0f0; /* Slightly off-white hover */
    color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

a.btn.cta-button {
    text-transform: capitalize;
    font-size: 1.5rem;
}

@media (max-width: 500px) {
    .logo-item img {
        max-width: 70px;
    }
    .hero-headline {
        font-size: 1.75rem;
        margin-top: 0;
        text-align: left;
        line-height: 49px;
    }
    span.accordion-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    .service-number {
        font-size: 1.5rem;
    }
    span.accordion-title:before {
        height: 4px;
        top: 12px;
    }
    .accordion-button {
        align-items: flex-start;
    }
    .accordion-body {
        padding-left: 10px !important;
    }
    .accordion-description{
        max-width: 100%;
    }
    .service-tags {
        width: 100%;
    }
    .client-logos {
        padding-bottom: 1.5rem;
    }
    .why-us-grid {
        display: flex;
        flex-wrap: wrap;
    }
    .box-item8 {
        width: 100%;
    }
    .box-item5 {
        width: 100%;
    }
    .feature-card-inner {
        flex-direction: row;
    }
    .feature-title {
        font-size: 1.4rem;
    }
    .feature-subtitle {
        font-size: 1rem;
    }
    .feature-icon {
        height: 62px;
        margin-top: 10px;
    }
    ul.slick-dots {
        row-gap: 6px;
        flex-wrap:wrap;
    }
    .work-slider .slick-list {
        padding: 0 15% 0 0;
    }
    .box-item {
        width: 96%;
    }
    .feature-title.text-large {
        font-size: 1.5rem;
        font-weight: 700;
    }
    .box-item1 .feature-text,.feature-text {
        width: 60%;
    }
    :is(.box-item6,.box-item5) .feature-card-inner {
        flex-direction: row;
    }
    .box-item8 .feature-text {
        width: 100%;
    }
    .main-section {
        background-image: url(../images/hero_bg_mobile.svg);
        height: 600px;
    }
    .cta-banner-box {
        background-image: url(../images/cta_bg_mobile.svg);
    }
    .cta-button {
        padding: 9px 20px;
        width: 90%;
    }
    .logo-item img {
        filter: grayscale(1);
    }
    .logo-item img:hover {
        filter: grayscale(0);
    }
    .site-header {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 99;
    }
    button.menu-toggle {
        background: transparent;
        border: 0;
        font-size: 20px;
    }
}