/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-family: "Albert Sans", sans-serif;
}
ol,
ul {
    padding-left: 0;
}
.dropdown-menu h6 {
    font-weight: 600;
}
.hover-effect:hover {
    background: #f2f2f2;
    border-radius: 12px;
}
.hover-effect {
    padding: 6px 6px 0px 6px;
}
.logo img {
    width: 80px;
    height: 40px;
    object-fit: contain;
}
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
button.slick-prev.slick-arrow,
button.slick-next.slick-arrow {
    display: none !important;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-square {
    background: #ec1b21;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: #ec1b21;
}

.cta-button {
    background: #ec1b21;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #d32f2f;
}

/* Megamenu Styles */
.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

.product-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.product-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.4;
}

/* Hero Section */
.hero {
    background: linear-gradient(
        327.12deg,
        #04122f -10.77%,
        #1e3b58 41.56%,
        #001744 100.97%
    );
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    margin-top: 110px;
    border-radius: 12px;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%234CAF50" opacity="0.6"/><circle cx="80" cy="40" r="1" fill="%234CAF50" opacity="0.4"/><circle cx="40" cy="80" r="1.5" fill="%234CAF50" opacity="0.5"/><line x1="10" y1="10" x2="90" y2="90" stroke="%234CAF50" stroke-width="0.5" opacity="0.3"/><line x1="90" y1="10" x2="10" y2="90" stroke="%234CAF50" stroke-width="0.5" opacity="0.3"/></svg>');
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    /* line-height: 1.2; */
    margin-bottom: 24px;
    height: 172px;
}
.hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #ec1b21;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    /* width: 193px; */
    height: 48px;
    line-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: #d32f2f;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 193px;
    height: 48px;
    line-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: white;
    color: #1a237e;
}

.hero-visual {
    position: relative;
    /* height: 500px; */
}

.globe-animation {
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(76, 175, 80, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

.globe-animation::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 C70 10 90 30 90 50 C90 70 70 90 50 90 C30 90 10 70 10 50 C10 30 30 10 50 10" fill="none" stroke="%234CAF50" stroke-width="2"/><path d="M20 30 Q40 20 60 30 Q80 40 80 60 Q60 80 40 70 Q20 60 20 30" fill="none" stroke="%234CAF50" stroke-width="1"/></svg>');
    opacity: 0.6;
}

.tech-animation {
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(33, 150, 243, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 4s linear infinite;
}

.tech-animation::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%232196F3" stroke-width="2"/><circle cx="50" cy="50" r="25" fill="none" stroke="%232196F3" stroke-width="1"/><circle cx="50" cy="50" r="10" fill="%232196F3"/><line x1="50" y1="10" x2="50" y2="90" stroke="%232196F3" stroke-width="1"/><line x1="10" y1="50" x2="90" y2="50" stroke="%232196F3" stroke-width="1"/></svg>');
    opacity: 0.6;
}

.security-animation {
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 193, 7, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: shield 3s ease-in-out infinite;
}

.security-animation::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 L80 25 L80 45 C80 65 65 85 50 90 C35 85 20 65 20 45 L20 25 Z" fill="none" stroke="%23FFC107" stroke-width="2"/><path d="M40 45 L50 55 L60 45" fill="none" stroke="%23FFC107" stroke-width="2"/></svg>');
    opacity: 0.6;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes shield {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid #ec1b21;
    border-bottom: 3px solid #ec1b21;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Client Logos */
.clients {
    padding: 60px 0;
    background: #f8f9fa;
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.client-logos img {
    height: 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.client-logos img:hover {
    opacity: 1;
}

/* Products Section */

.products {
    padding: 80px 0;
    background: white;
}

.products h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem 1rem 1rem 1rem;
    border: 1px solid #d1d9e6;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    /* height: 200px; */
    overflow: hidden;
}

.product-image img {
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 20px 0px 10px;
}

.product-card p {
    font-size: 14px;
    color: #666;
    margin: 0 00px 20px;
    line-height: 1.5;
}

.btn-demo {
    background: #ec1b21;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin: 0 20px 20px;
    transition: background-color 0.3s ease;
    margin-left: 0;
}
.product-card button.btn-demo {
    margin-left: 0px;
}
.product-image {
    position: relative;
    text-align: center;
}

.product-image::before {
    bottom: 10%;
}

.product-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 128px;
    background-color: #ccfaf6;
    left: 0;
    border-radius: 12px;
}

.btn-demo:hover {
    background: #d32f2f;
}

.product-card.view-more {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(
        327.12deg,
        #04122f -10.77%,
        #1e3b58 41.56%,
        #001744 100.97%
    );
}

.placeholder-content {
    padding: 40px 20px;
}

.placeholder-content p {
    color: white;
    font-size: 16px;
    margin: 0;
}

.btn-view-more {
    background: #ec1b21;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.btn-view-more:hover {
    background: #d32f2f;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid red !important;
}
.service-card:hover h3 {
    color: red;
}
.service-icon {
    font-size: 48px;
    margin-bottom: 0px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}
.service-icon img {
    width: 42px !important;
    height: 42px;
    border: 1px solid red;
    padding: 7px;
    border-radius: 24px;
    margin-bottom: 10px;
}
.services .owl-nav button {
    position: absolute;
    top: 40%;
    background: #000 !important;
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px !important;
}
.services .owl-nav .owl-prev {
    left: -50px;
}
.services .owl-nav .owl-next {
    right: -50px;
}
.services .owl-carousel .owl-stage-outer {
    padding: 3rem 0.2rem;
}
.service-cards .owl-stage {
    display: flex !important;
}
.service-cards .owl-item {
    display: flex;
    height: auto !important;
}
.service-cards .service-card {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* keeps button at bottom */
    height: 100%;
    border: 2px solid #fff;
}
.services button.owl-dot {
    width: 20px;
    height: 20px;
    margin: 5px;
    border-radius: 50%;
    border: 1px solid #aaa;
    background-color: #fff;
}
.services button.owl-dot.active {
    background-color: red;
    border-color: red;
}
.services .owl-dots {
    display: block;
    text-align: center;
}
.services .owl-nav {
    display: none;
}
/* Deployment Section */
.deployment {
    background: linear-gradient(276.02deg, #ea3b40 9.41%, #5c080a 89.43%);
    padding: 80px 0;
    color: white;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    margin-bottom: 40px;
}
.logo-carousel {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 20px 0;
    box-sizing: border-box;
}

.logo-track {
    display: flex;
    animation: scroll 10s linear infinite;
    width: max-content;
    padding: 3rem 0rem;
}

.logo-item {
    flex: 0 0 auto;
    padding: 0 5rem;
}

.logo-item img {
    /* height: 50px; */
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-item {
        padding: 0 1.5rem;
    }

    .logo-item img {
        height: 40px;
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.organizations {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    margin-bottom: 40px;
}
.deployment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.deployment-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    transition: opacity 0.5s ease;
}

.deployment-text p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    transition: opacity 0.5s ease;
}

.deployment-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.step-line {
    position: absolute;
    left: 18px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.step-line-progress {
    position: absolute;
    left: 0px;
    top: 20px;
    width: 100%;
    height: 0;
    background: white;
    transition: height 0.8s ease;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 3;
}
.feature-marker.completed,
.feature-marker.active {
    color: #fff;
}
.feature-marker {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    background: #d5d5d5;
    color: #001133;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 20px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 4;
}

.feature-marker.active {
    background: #f44336;
    border-color: #f44336;
    transform: scale(1.1);
}

.feature-marker.completed {
    background: #f44336;
    border-color: #f44336;
}

.feature-content {
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.feature-content.active {
    opacity: 1;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Organizations Section */
.organizations {
    padding: 80px 0;
    color: white;
    background: linear-gradient(
        327.12deg,
        #001133 -10.77%,
        #00385e 41.56%,
        #001133 100.97%
    );
    border-radius: 22px;
}

.organizations h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: left;
}

.org-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.org-number {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.org-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.org-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Global Presence Section */
.global-presence {
    padding: 80px 0;
    background: white;
    position: relative;
}

.global-presence::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 50 Q30 30 50 50 Q70 70 90 50" fill="none" stroke="%23E0E0E0" stroke-width="0.5"/><path d="M20 30 Q40 20 60 30 Q80 40 80 60" fill="none" stroke="%23E0E0E0" stroke-width="0.5"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.global-presence h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.location-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.location-image {
    height: 275px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 81%;
    padding: 1rem;
    width: -webkit-fill-available;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-item:before {
    content: "";
    left: 0;
    top: 14px;
    height: 67px;
    width: 2px;
    background: #1a91e0;
    position: absolute;
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: left;
}

.stats-grid {
    display: flex;
    max-width: 536px;
    flex-wrap: wrap;
    justify-content: unset;
    align-items: center;
    gap: 60px;
}

.stat-item {
    text-align: left;
    padding-left: 20px;
    position: relative;
}
.stat-number {
    font-size: 36px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* News Section */
.news {
    padding: 80px 0;
    background: white;
}

.news h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
}

.news-cards {
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
}
.news-card {
    margin: 0 10px; /* 10px gap on left & right */
}
.news-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-logo {
    background: #ec1b21;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}
.news .slick-list {
    padding: 34px 0px;
}
.news .slick-track {
    height: 100%;
}
/* CTA Section */
.cta-section {
    background: #333;
    padding: 80px 0;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}
section.cta-section {
    max-width: 1320px;
    width: 100%;
    margin: 30px auto;
    border-radius: 12px;
}
section.cta-section button.btn-primary {
    margin: 0 auto;
}
.stats {
    background-image: url(../images/v2-img/globe.png);
    background-size: cover;
    background-position: 0px 0px;
    position: relative;
    padding: 209px 0 60px;
}
/* Footer */
.footer {
    background: linear-gradient(
        327.12deg,
        #04122f -10.77%,
        #1e3b58 41.56%,
        #001744 100.97%
    );
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    /* display: grid; */
    /* grid-template-columns: 2fr 1fr 1fr 1fr 1fr; */
    /* gap: 40px; */
    margin-bottom: 40px;
}

.footer-section h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.8;
}
.footer-bottom p.mb-0.small,
.footer-links {
    opacity: 1 !important;
    transform: unset !important;
}
.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block; /* keep structure */
        opacity: 0;
        transform: translateY(10px);
        visibility: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        transition: all 0.3s ease;
    }

    /* Show when hovering on li */
    .navbar .nav-item.dropdown:hover > .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-slider .slick-prev {
        left: 15px;
    }

    .hero-slider .slick-next {
        right: 15px;
    }

    .product-cards,
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 991.5px) {
    .dropdown-menu.show {
        height: 41vh;
    }
    .dropdown-menu.show .row {
        height: 35vh;
        overflow-y: scroll;
    }
}
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-slider .slick-prev,
    .hero-slider .slick-next {
        display: none !important;
    }

    .hero-slider .slick-dots {
        bottom: 0 !important;
    }

    .product-cards,
    .service-cards,
    .location-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deployment-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .deployment-features {
        margin-top: 40px;
    }

    .step-line {
        left: 20px;
    }

    .feature-item {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .image-inside-screen {
        zoom: 50%;
    }
}
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ec1b21;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d32f2f;
}

/* Slick Slider Customization */

.hero-slider .slick-dots {
    bottom: 0px;
    z-index: 10;
}

.hero-slider .slick-dots li button:before {
    color: rgba(255, 255, 255, 0.5);
    font-size: 32px;
    opacity: 1;
}

.hero-slider .slick-dots li.slick-active button:before {
    color: #ec1b21;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    font-size: 24px;
    color: white;
}

.hero-slider .slick-prev {
    left: 30px;
}

.hero-slider .slick-next {
    right: 30px;
}

.img-awards {
    display: none;
}

.hero-slider .hero-slide {
    display: none;
}

.hero-slider .hero-slide:first-child {
    display: block;
}

.hero-slider.slick-initialized .hero-slide {
    display: block;
}

/* Cyber Security page css  */
.bg-img-section {
    background-image: url(../images/v2-img/HeroBg.png);
    background-size: cover;
    background-position: 0px 0px;
    height: 652px;
    position: relative;
    padding: 130px 0 22px;
    margin-top: 105px;
    margin-bottom: 20px;
}
.custom-input-group {
    border: 1px solid #e6e6e6;
    border-radius: 50px;
    overflow: hidden;
    background: transparent;
}

.custom-input-group .form-control {
    border: none;
    background: transparent;
    color: #fff;
}

.custom-input-group .form-control:focus {
    box-shadow: none;
    background: transparent;
    color: #fff;
}

.btn-send {
    background: #fff;
    color: #0d6efd;
    padding: 10px 11px;
    margin: 3px;
    border-radius: 50% !important;
}

.btn-send:hover {
    background: #ec1b21;
    color: #fff;
}
.custom-input-group .form-control::placeholder {
    color: #bbb;
    opacity: 1;
}
.custom-input-group .form-control:focus::placeholder {
    color: transparent;
}
.border-short-top {
    width: 40px;
    height: 3px;
    background-color: #0a1633;
}
.border-card {
    border: 2px solid #ccced9;
    padding: 2rem 1rem 3rem 1rem;
    border-radius: 12px;
    cursor: pointer;
}
.border-card:hover {
    background-color: #0e284e;
    color: #fff;
}
.border-card:hover .text-muted {
    color: #fff !important;
}
.border-card:hover .me-3 img {
    filter: hue-rotate(-222deg) saturate(4) !important;
}
.p-style-color {
    color: #00385e;
    font-weight: 500;
}
.border-red-left {
    border-left: 1px solid #ec1b21;
    padding-left: 2rem;
}
.image-inside-screen {
    position: relative;
}
img.pos-absol {
    position: absolute;
    left: 71px;
    top: 11px;
}

/* White label solution css  */
.feature-icon {
    font-size: 2rem;
}

.feature-box {
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    background-color: #f8f9fa;
    transition: transform 0.2s;
    height: 100%;
    cursor: pointer;
}

.feature-box:hover {
    transform: scale(1.02);
}

.additional-box {
    background-color: #fff9f9;
    border-radius: 0.5rem;
    padding: 1.5rem;
}
ul.fr-mrgn li {
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 500;
}
section.white-label-wallet-section {
    background-color: #fff9f9;
}
.white-label-wallet-section .feature-box p {
    font-size: 0.95rem;
}
.white-label-wallet-section h5 {
    font-weight: 600;
}
.wallet-bg {
    background-color: #586268;
    border-radius: 12px;
}
.white-label-wallet-section .feature-box {
    box-shadow: 0px 4px 30px 0px #0000000d;
    background-color: #fff;
}
/* Carousels css start  */

.wallet-carousel .carousel-indicators {
    position: relative;
    inset: unset;
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
    overflow-x: auto;
}

.wallet-carousel .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: auto;
    height: unset;
    padding: 0.575rem;
    text-indent: 0;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid transparent;
    opacity: 1;
    white-space: nowrap;
    font-size: 14px;
    border-radius: 6px;
}

.wallet-carousel :is(.carousel-control-prev, .carousel-control-next) {
    position: relative;
    inset: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0.4rem;
    color: #828282;
    text-align: center;
    border-radius: 50%;
    background: #f3f4f5;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
}

.wallet-carousel :is(.carousel-control-prev, .carousel-control-next):hover {
    filter: brightness(-1) invert(1);
    box-shadow: 0px 2px 4px 0px #0000001f;
}

:is(.wallet-carousel button):is(
        [data-bs-slide="prev"],
        [data-bs-slide="next"]
    ) {
    width: auto;
}

.wallet-carousel :is(.carousel-control-prev-icon, .carousel-control-next-icon) {
    width: 1.5rem;
    height: 1.5rem;
    filter: invert(1);
}

.owl-prev,
.owl-next {
    background: #ecf2f7 !important;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

:is(.owl-prev, .owl-next) span {
    font-size: 2rem;
    padding-bottom: 0.2rem;
}

.wallet-carousel .carousel-indicators [data-bs-target]:first-child {
    background-color: #f6fff7;
}

.wallet-carousel .carousel-indicators [data-bs-target]:nth-child(2) {
    background-color: #fffcf4;
}

.wallet-carousel .carousel-indicators [data-bs-target]:nth-child(3) {
    background-color: #edfbff;
}

.wallet-carousel .carousel-indicators [data-bs-target]:nth-child(4) {
    background-color: #fff5f5;
}

.wallet-carousel .carousel-indicators [data-bs-target]:nth-child(5) {
    background-color: #fff6ff;
}

.wallet-carousel .carousel-indicators [data-bs-target]:nth-child(6) {
    background-color: #fff5f5;
}

.wallet-carousel .carousel-indicators [data-bs-target].active:first-child {
    background: #f6fff7;
    border: 1px solid #1a91e0;
}

.wallet-carousel .carousel-indicators [data-bs-target].active:nth-child(2) {
    background: #fffcf4;
    border: 1px solid #1a91e0;
}

.wallet-carousel .carousel-indicators [data-bs-target].active:nth-child(3) {
    background-color: #edfbff;
    border: 1px solid #1a91e0;
}

.wallet-carousel .carousel-indicators [data-bs-target].active:nth-child(4) {
    background-color: #fff5f5;
    border: 1px solid #1a91e0;
}

.wallet-carousel .carousel-indicators [data-bs-target].active:nth-child(5) {
    background-color: #fff6ff;
    border: 1px solid #1a91e0;
}

.wallet-carousel .carousel-indicators [data-bs-target].active:nth-child(6) {
    background-color: #fff5f5;
    border: 1px solid #1a91e0;
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    margin: 0.5rem;
    border-radius: 8px;
    height: 100%;
    text-align: center;
}

.owl-carousel div:nth-child(odd) .review-card {
    background: #f3f4f5;
    color: var(--black);
}

.owl-carousel div:nth-child(even) .review-card {
    background: var(--theme);
    color: var(--white);
}
.owl-carousel div:nth-child(odd) .loanOrigTest {
    background: #f3f4f5;
    color: var(--black);
}

.owl-carousel div:nth-child(even) .loanOrigTest {
    background: var(--theme);
    color: var(--white);
}
.owl-nav {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.owl-dots {
    display: none;
}

/* Carousels css End  */

.faq-section {
    padding: 15px 15px;
}
.faq-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e0e0e0;
}

.accordion-button {
    background-color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    color: #000;
    padding-left: 2.5rem;
    position: relative;
    box-shadow: none;
}

.accordion-button::before {
    content: "+";
    position: absolute;
    left: 1rem;
    font-size: 1.5rem;
    color: #d60000;
    transition: transform 0.3s;
}

.accordion-button:not(.collapsed)::before {
    content: "−";
}

.accordion-button:not(.collapsed) {
    color: #d60000;
    background-color: #fff;
}

.accordion-body {
    font-size: 0.95rem;
    color: #555;
    padding-left: 2.5rem;
}

.faq-footer {
    text-align: center;
    margin-top: 30px;
}

.faq-footer a {
    color: #d60000;
    text-decoration: none;
    font-weight: 500;
}

.faq-footer a:hover {
    text-decoration: underline;
}
.faq-section .accordion-button::after {
    display: none;
}
.left-border {
    border-left: 3px solid #ec1b21;
    padding-left: 8px;
    line-height: 1.3;
}
span.header-badge {
    background: #ec1b2129;
    padding: 7px 10px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
}

/* Loan management sysytem page css  */

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
}

.bg-image {
    position: absolute;
    right: 50px;
    width: 100%;
    border-radius: 16px;
    z-index: 1;
    bottom: 42px;
}

.fg-image {
    position: relative;
    width: 100%;
    border-radius: 16px;
    z-index: 2;
}

/* footer links pages */

.member-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    color: #000;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}
.member-card img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    object-position: top;
}
.member-info {
    position: absolute;
    bottom:6px;
    background: #ffffffcc;
    margin: 0 auto;
    display: block;
    width: 250px;
    left: 0;
    right: 0;
    border-radius: 8px;
    padding: 0.5rem;
}
.member-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}
.member-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}
/* Contact Section */
.contact-section {
    padding: 3rem 0;
}

.contact-box ul li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.form-control {
    border-radius: 6px;
}
.btn-submit {
    background-color: #001133;
    color: #fff;
    border-radius: 6px;
    padding: 0.5rem 2rem;
}
.contact-card {
    background: #00385e;
    color: white;
    padding: 30px;
    border-radius: 12px;
}

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #d1d5db;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
    color: #ffffff;
}

.contact-item h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.contact-item p {
    margin: 4px 0;
    font-size: 14px;
    color: #d1d5db;
}

.social-icons {
    margin-top: 8px;
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #38bdf8;
}
section.our-team h2 {
    font-size: 48px;
    text-align: center;
    padding: 40px;
    color: #242424;
}
section.our-team h2 {
    font-size: 48px;
    text-align: center;
    padding: 100px 0px 80px;
    color: #242424;
}

.contact-section {
    padding: 80px 0;
}
.container.contact-section h4 {
    font-size: 40px;
    font-weight: 700;
    padding: 0px 0 40px;
}

/* Frame 1984078331 */
.map-loc img {
    max-width: 400px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}
section.location-sec h4 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
}
section.location-sec .container {
    margin-top: 40px;
    margin-bottom: 20px;
}
/* footer pages end */

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(
        327.12deg,
        #04122f -10.77%,
        #1e3b58 41.56%,
        #001744 100.97%
    );
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blog-posts img {
    width: 100%;
    height: 312px;
    object-fit: cover;
    border-radius: 12px;
}
.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 20 Q30 10 50 20 Q70 30 90 20" stroke="%23ffffff" stroke-width="0.5" opacity="0.3" fill="none"/><path d="M20 40 Q40 30 60 40 Q80 50 100 40" stroke="%23ffffff" stroke-width="0.5" opacity="0.2" fill="none"/><path d="M5 60 Q25 50 45 60 Q65 70 85 60" stroke="%23ffffff" stroke-width="0.5" opacity="0.4" fill="none"/><path d="M15 80 Q35 70 55 80 Q75 90 95 80" stroke="%23ffffff" stroke-width="0.5" opacity="0.3" fill="none"/></svg>');
    opacity: 0.1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-light:hover {
    background: white;
    color: #1a237e;
}
.our-story {
    background: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.story-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0px !important;
}

.mission-vision-card {
    background: linear-gradient(
        327.12deg,
        #001133 -10.77%,
        #00385e 41.56%,
        #001133 100.97%
    );
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
section.our-values.py-5 .row.g-4 {
    justify-content: space-around;
}

.mission-content img,
.vision-content img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mission-content h3,
.vision-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.mission-content p,
.vision-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Our Values Section */
.our-values {
    background: #f8f9fa;
}

.value-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.blog-posts h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .mission-vision-card {
        padding: 40px 20px;
    }

    .value-card {
        padding: 20px 15px;
    }
    section.faqs_main h1 {
        font-size: 22px;
    }
}

.faqs_main .accordion-item {
    border: none;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}
.faqs_main a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}
.faqs_main .apply-btn {
    background: #e50914;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    text-wrap: nowrap;
    font-weight: 600;
}
.faqs_main .apply-btn:hover {
    background-color: #f53740;
    color: #fff;
}
.faqs_main .accordion-button:focus {
    z-index: 3;
    border-color: none;
    outline: 0;
    box-shadow: none;
}
.faqs_main .accordion-button::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #eeeeee;
    border-radius: 50%;
    padding: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    transition: transform 0.3s ease;
}
.faqs_main .accordion-button h3 {
    color: #396582;
    font-size: 24px;
}
section.faqs_main h1 {
    font-size: 32px;
}
.faqs_main .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    border-bottom: transparent;
}
.faqs_main .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1.5 5.5l6 6 6-6'/%3e%3c/svg%3e");
}
.faqs_main .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1.5 10.5l6-6 6 6'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

/* Our Story Section */

@media (max-width: 767.98px) {
    .image-wrapper {
        margin-top: 2rem;
    }

    .bg-image {
        /* position: relative; */
        /* top: 0; */
        left: 0;
        bottom: 34;
    }

    .fg-image {
        margin-left: 2rem;
        margin-top: 2rem;
    }
    section.faqs_main h1 {
        font-size: 22px;
    }
    p.job-meta.mb-0 {
        font-size: 12px;
    }
    .bg-img-section {
        height: 100%;
        padding: 130px 15px 22px;
    }
    .phone-cover-inner {
        left: 54px !important;
    }
    .phone-cover {
        left: 45px !important;
    }
    .small-slide {
        position: sticky !important;
        margin-top: 17rem !important;
        margin-left: 12rem !important;
        z-index: 5 !important;
    }
    section.our-team h2 {
        font-size: 22px;
        text-align: center;
        padding: 32px 0px 32px;
        color: #242424;
    }
    .w-sm-100 {
        width: 100% !important;
    }
}
@media (max-width: 1201.98px) {
    .wallet-bg {
        width: 100%;
    }
}
/* Payment gateway page css  */
.product-gateway .feature-box {
    background-color: #fff9f9;
}

.scroll-container {
    max-height: 400px;
    overflow-y: auto;
    direction: rtl;
    padding-right: 1rem;
}
.scroll-container > * {
    direction: ltr;
}
.highlight-card {
    cursor: pointer;
    text-align: start;
    margin-left: 14px;
}
.highlight-card:hover {
    background-color: #ffecec;
}

.highlight-card .card-title {
    font-weight: 600;
    font-size: 16px;
}
.highlight-card p.card-text {
    font-size: 13px;
}
section.hero button.btn.btn-outline-secondary {
    color: #fff !important;
}
/*=================
    Consumer Pages
===================*/

.phone-cover {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0;
    transform: translateY(-2%) !important;
    width: 100%;
    max-width: 200px;
}

[lang="ar"] .phone-cover {
    left: unset;
    right: 0;
}

.phone-cover-inner {
    display: none;
    position: absolute;
    left: 9px;
    right: 9px;
    top: 52%;
    bottom: 9px;
    width: calc(100% - 18px);
    max-width: calc(200px - 18px);
    z-index: 4;
    transform: translateY(-50%);
}

.p-screen .payment-screen {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.p-screen .screen-holder {
    border-radius: 12px;
    background: #fff;
}

.p-screen .payment-screen::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-radius: 12px;
    z-index: -1;
}

.p-screen:nth-child(even) .payment-screen::after {
    background: rgb(232, 232, 232);
    box-shadow: rgb(212, 217, 221) 3px 3px 6px 3px inset;
}

.p-screen:nth-child(odd) .payment-screen::after {
    background: rgb(221, 234, 243);
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 3px inset;
}

/*==================
    Dukaan Slider
====================*/
.small-slide {
    position: absolute;
    left: 33%;
    bottom: 5%;
    z-index: 5;
    width: 8rem;
    top: 100%;
}

.dukaan-app {
    background: url(../images/mockDukaan.png) no-repeat center center / cover;
    background-attachment: fixed;
    min-height: 100vh;
}
img.img-fluid.phone-cover-inner {
    transform: unset !important;
}

/* Lets get started section css start here  */
/* === Background Section === */
.get-started-section {
    background-image: url(../images/v2-img/started-bg-img.png); /* 🔁 Replace this */
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
    color: #fff;
    background-color: #00385e;
}

/* Content wrapper */
.get-started-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.get-started-content h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.get-started-content p {
    font-size: 0.95rem;
    color: #d3d3d3;
    margin-bottom: 30px;
}

/* Form styles */
.get-started-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.get-started-form input[type="email"] {
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    flex: 1 1 300px;
    background-color: #002941;
    color: white;
}

.get-started-form input::placeholder {
    color: #ccc;
}

.get-started-form .btn-request {
    padding: 12px 25px;
    border-radius: 8px;
    background-color: #ff3e3e;
    color: white;
    border: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.get-started-form .btn-request:hover {
    background-color: #e32f2f;
}

/* Bottom paragraph */
.get-started-bottom-text {
    font-size: 0.9rem;
    margin-top: 20px;
    color: #cccccc;
}

/* Responsive alignment */
@media (max-width: 576px) {
    .get-started-content {
        text-align: center;
    }
    .member-card img {
        object-fit: cover;
        object-position: 1px 0px;
    }
    .get-started-form {
        flex-direction: column;
        align-items: center;
    }

    .get-started-form input,
    .get-started-form .btn-request {
        width: 100%;
        flex: 1 1 !important;
    }
}
