
/* =========================================
   Home Page Specific Styles
   ========================================= */

/* --- Hero Carousel Section --- */
.hero-carousel-section {
    position: relative;
    width: 100%;
    height: 600px; /* Desktop default height */
    overflow: hidden;
    background-color: #000;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    max-width: none;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
    overflow: hidden; /* Ensure zoomed image doesn't overflow */
}

.carousel-slide.active {
    visibility: visible;
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1);
}

@keyframes zoomInEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.carousel-slide.active .slide-bg {
    animation: zoomInEffect 6s linear forwards;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center horizontally */
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px 140px 60px; /* Added bottom padding to prevent overlap with cards */
}

.slide-content {
    max-width: 800px;
    color: #ffffff;
    text-align: center; /* Center text */
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.highlight-text {
    color: var(--color-secondary-text);
}

.slide-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    color: #ffffff;
}

/* --- Hero Buttons --- */
.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: #013760;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
    font-size: 16px;
}

.btn-hero-cta:hover {
    color: #fff;
}

/* --- Carousel Navigation --- */
.carousel-nav-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none; /* Let clicks pass through the wrapper */
    z-index: 10;
    max-width: 1440px;
    margin: 0 auto;
}

.carousel-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto; /* Enable clicks on buttons */
}

.carousel-nav:hover {
    background: #ffffff;
    color: var(--color-primary);
    transform: scale(1.1);
}

/* --- Progress Bar --- */
.carousel-progress-bar {
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: 150px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    z-index: 30;
}

.progress-fill {
    height: 100%;
    background-color: var(--color-secondary-text);
    width: 0%;
    transition: width 0.1s linear;
}

/* --- Floating Glass Cards --- */
.hero-bottom-cards-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    z-index: 20;
    padding: 0 20px;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.hero-glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.card-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}

.card-text {
    flex: 1;
}

.card-title {
    display: block;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.card-link {
    color: #A7E8FF;
    font-size: 14px;
    font-weight: 600;
}

/* --- Identity Security Section --- */
.identity-security-section {
    background-color: transparent;
    padding: 0;
    margin-top: 60px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.identity-security-content {
    display: flex;
    align-items: stretch;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.identity-text-column {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #001f3f; /* Deep Navy Blue matching screenshot */
    color: #ffffff;
    align-items: flex-start;
}

.identity-text-column h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #ffffff;
    max-width: 500px;
}

.identity-text-column h2 .text-highlight {
    color: #A7E8FF; /* Light blue/cyan highlight */
}

.btn-identity-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #013760; /* Slightly lighter navy for button */
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    transition: all 0.3s ease;
    border: none;
    font-size: 14;
}

.btn-identity-cta:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.identity-image-column {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.video-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.identity-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding-left: 4px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ffffff;
    color: var(--color-primary);
}

/* --- Secure Identities Section --- */
.secure-identities-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.secure-identities-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.secure-left-column {
    flex: 1;
}

.secure-image-wrapper {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.secure-main-image {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.secure-left-column h2 {
    font-size: 35px;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 20px;
}

.secure-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555F74;
    font-weight: 500;
}

.secure-right-column {
    flex: 1;
    padding-top: 10px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-icon {
    font-size: 24px;
    color: #003366;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
    padding-top: 4px;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #555F74;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
}

.btn-secure-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #013760;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: none;
}

.btn-secure-cta:hover {
    background-color: #004080;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.2);
}

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background-color: #021a32; /* Deep Navy Background */
    color: #ffffff;
    text-align: center;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9EC6FF; /* Light Grey-Blue for label */
    margin-bottom: 16px;
}

.services-header h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #A7E8FF;
}

.services-header p {
    font-size: 16px;
    color: #CFE2F8; /* Lighter text for description */
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #0e2a4763; /* Slightly lighter navy for cards */
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%; /* Optional: circle background for icon */
}

.service-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #CFE2F8;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes link to bottom */
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #A7E8FF; /* Light blue link color */
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #A7E8FF;
}

/* --- Trusted Worldwide Section --- */
.trusted-worldwide-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.trusted-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.trusted-title-group h2 {
    font-size: 35px;
    font-weight: 600;
    color: #0B2746;
    margin-bottom: 10px;
}

.trusted-title-group p {
    font-size: 14px;
    color: #6B7280;
    max-width: 600px;
}

.view-more-link {
    color: #003366;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.view-more-link:hover {
    text-decoration: underline;
    gap: 12px;
}

.trusted-featured {
    margin-bottom: 60px;
}

.featured-content {
    display: flex;
    background-color: #f8f9fa; /* Very light grey bg for featured area if needed, or white */
    /* Screenshot looks like it might be just white or transparent, but let's keep it clean. */
    /* Actually screenshot shows image on left and text on right, no visible container bg color diff from section */
    gap: 40px;
    align-items: center;
}

.featured-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.play-button-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding-left: 4px; /* Optical center for play icon */
}

.play-button-small:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ffffff;
    color: #003366;
}

.featured-quote-wrapper {
    flex: 1;
    padding-right: 20px;
}

.featured-quote-wrapper blockquote {
    font-size: 28px;
    font-weight: 600;
    color: #0B2746;
    line-height: 1.3;
    margin: 0 0 20px 0;
    border: none;
    padding: 0;
}

.featured-quote-wrapper cite {
    display: block;
    font-style: normal;
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 20px;
}

.read-case-study {
    color: #013760;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.read-case-study:hover {
    gap: 12px;
    color: #013760;
}

.trusted-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.story-card {
    display: flex;
    flex-direction: column;
}

.story-image-wrapper {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image {
    transform: scale(1.05);
}

.story-label {
    font-size: 13px;
    color: #587AA1;
    margin-bottom: 8px;
    display: block;
}

.story-title {
    font-size: 16px;
    font-weight: 600;
    color: #0B2746;
    line-height: 1.4;
    margin: 0;
}

/* --- Work Showcase Section --- */
.work-showcase-section {
    padding: 100px 0;
    background-color: #F7FAFC; /* Light grey background */
    text-align: center;
}

.showcase-header {
    margin-bottom: 60px;
}

.showcase-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #001f3f;
    margin-top: 10px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.showcase-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 336px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    text-align: left;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.showcase-overlay h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.showcase-category {
    font-size: 10px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* --- Insights & Updates Section --- */
.insights-updates-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.insights-header {
    margin-bottom: 50px;
}

.insights-header h2 {
    font-size: 35px;
    font-weight: 600;
    color: #0B2746;
    margin-bottom: 15px;
}

.insights-header p {
    font-size: 14px;
    color: #555;
    max-width: 700px;
}

.featured-insight {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    /* align-items: center; */
}

.featured-insight-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.featured-insight-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.featured-insight-content {
    flex: 1;
}

.insight-date {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.insight-title {
    font-size: 16px;
    font-weight: 600;
    color: #0B2746;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insight-title i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.insight-title:hover i {
    transform: translateX(5px);
}

.featured-insight-content p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.update-card {
    display: flex;
    flex-direction: column;
}

.update-logo-wrapper {
    background-color: #f1f5f9; /* Light grey background */
    padding: 40px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    height: 140px; /* Fixed height for consistency */
}

.update-logo-wrapper img {
    max-width: 140px;
    height: auto;
}

.update-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    display: block;
}

.update-title {
    font-size: 12px;
    font-weight: 600;
    color: #0B2746;
    line-height: 1.4;
    margin: 0;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #F7FAFC; /* Light grey background */
}

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

.testimonials-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #587AA1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonials-header h2 {
    font-size: 35px;
    font-weight: 700;
    color: #0B2746;
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-user-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 24px;
    color: #001f3f;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-user-info {
    flex: 1;
}

.user-name {
    font-size: 14px;
    font-weight: 700;
    color: #001f3f;
    margin: 0 0 4px 0;
}

.user-title {
    font-size: 12px;
    color: #666;
    display: block;
}

.testimonial-date {
    font-size: 12px;
    color: #999;
    position: absolute;
    top: 0;
    right: 0;
}

.testimonial-stars {
    color: #001f3f; /* Dark blue stars as per screenshot */
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
}

.faq-title-col {
    flex: 1;
    max-width: 600px;
}

.faq-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.faq-title-col h2 {
    font-size: 34px;
    font-weight: 600;
    color: #0B2746;
    line-height: 1.2;
    margin: 0;
}

.faq-desc-col {
    flex: 1;
    max-width: 500px;
    padding-top: 40px; /* Align with title visually */
}

.faq-desc-col p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid #DBE5F3;
    border-radius: 8px;
    background-color: #DBE5F3; /* Slight off-white for contrast */
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: #d1d5db;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #ffffff;
}

.accordion-number {
    font-size: 16px;
    font-weight: 600;
    color: #003366; /* Accent color */
    background-color: #E6EDF5; /* Light blue bg */
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    margin-right: 20px;
    border: 1px solid #e5eef9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #001f3f;
}

.accordion-icon {
    font-size: 14px;
    color: #666;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #003366;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    padding-bottom: 25px;
    /* max-height is set via JS */
}

.accordion-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding-left: 60px; /* Indent to align with title */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    /* Hero Section Mobile */
    .hero-carousel-section {
        height: auto;
        min-height: unset;
    }

    .carousel-container {
        height: auto;
    }

    .carousel-slides {
        display: grid;
        height: auto;
    }

    .carousel-slide {
        position: relative;
        grid-area: 1 / 1;
        height: auto;
        padding: 80px 20px;
        width: 100%;
        /* Ensure inactive slides are hidden to prevent overlap/scroll */
        opacity: 0;
        visibility: hidden;
    }
    
    .carousel-slide.active {
        opacity: 1;
        visibility: visible;
    }

    .slide-content-container {
        height: auto;
        padding: 0;
        padding-bottom: 20px;
        justify-content: center;
        text-align: center;
    }
    
    .slide-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .slide-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .slide-desc {
        font-size: 16px;
        margin-bottom: 24px;
        padding: 0 10px;
    }

    /* Hide cards on mobile */
    .hero-bottom-cards-container {
        display: none;
    }

    /* Navigation adjustments */
    .carousel-nav-wrapper {
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        padding: 0 10px;
        width: 100%;
        left: 50%;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .carousel-progress-bar {
        bottom: 10px;
        right: 10px;
        width: 100px;
    }
    
    /* Identity Section Mobile */
    .identity-security-content {
        flex-direction: column;
    }

    .identity-text-column {
        padding: 40px 20px;
        text-align: center;
    }

    .identity-text-column h2 {
        font-size: 24px;
    }

    .btn-identity-cta {
        margin: 0 auto;
    }

    .identity-image-column {
        height: 300px;
    }

    /* Secure Identities Section Mobile */
    .secure-identities-content {
        flex-direction: column;
        gap: 40px;
    }

    .secure-left-column, .secure-right-column {
        width: 100%;
        padding: 0 20px;
    }

    .secure-left-column h2 {
        font-size: 28px;
    }

    .feature-item {
        flex-direction: column; /* Stack icon and text on mobile for better space usage, or keep row? Row is probably fine if icon is small. */
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Keep feature item row on mobile if screen is wide enough, but column is safer for very small screens. 
       Let's stick to row but ensure text doesn't break badly. 
       Actually, row is better for the icon-text relationship shown. */
    .feature-item {
        flex-direction: row;
    }

    /* Services Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .services-header {
        padding: 0 20px;
    }

    .services-header h2 {
        font-size: 28px;
    }

    /* Trusted Worldwide Mobile */
    .trusted-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .trusted-title-group h2 {
        font-size: 28px;
    }

    .featured-content {
        flex-direction: column;
        gap: 30px;
    }

    .featured-quote-wrapper {
        padding-right: 0;
        text-align: center;
    }

    .featured-quote-wrapper blockquote {
        font-size: 22px;
    }

    .read-case-study {
        justify-content: center;
    }

    .trusted-stories-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Work Showcase Mobile */
    .showcase-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .showcase-header h2 {
        font-size: 28px;
    }

    /* Insights Section Mobile */
    .featured-insight {
        flex-direction: column;
        gap: 30px;
    }

    .featured-insight-image {
        width: 100%;
    }

    .insight-title {
        font-size: 20px;
    }

    .updates-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        gap: 30px;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    /* FAQ Section Mobile */
    .faq-header {
        flex-direction: column;
        gap: 20px;
    }

    .faq-desc-col {
        padding-top: 0;
    }

    .faq-title-col h2 {
        font-size: 32px;
    }

    .accordion-header {
        padding: 20px;
    }

    .accordion-number {
        margin-right: 15px;
    }

    .accordion-content p {
        padding-left: 0;
    }
}
