/*Reset some default styles*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}

ul[role='list'],
ol[role='list'] {
    list-style: none;
}

body {
    min-height: 100vh;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

img,
picture {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

textarea:not([rows]) {
    min-height: 10em;
}

:target {
    scroll-margin-block: 5ex;
}

.image-container {
    overflow: hidden;
    border-radius: 12px;
}

.image-container img {
    border-radius: 12px;
}

.video-container iframe {
    border-radius: 12px;
}


/* Custom Styles */

.navbar-custom {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: none;
    -webkit-backdrop-filter: blur(5px);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-enquiry {
    background: #ed3237;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.4s ease;
}

.btn-enquiry:hover,
.btn-enquiry:focus,
.btn-enquiry:active {
    transform: scale(1.05);
    color: white !important;
    background-color: #a30000ff !important;
}

.offcanvas-top {
    height: 100vh !important;
}

.offcanvas-fullscreen {
    background: rgba(0, 10, 30, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100% !important;
}

.blur-container {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease-in-out;
}

.offcanvas-fullscreen {
    ::-webkit-scrollbar {
        display: none;
    }

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offcanvas-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.offcanvas-fullscreen.btn-close {
    filter: invert(1);
    opacity: 1;
}

.offcanvas-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    padding-bottom: 0.4rem;
    border-bottom: 3px solid #ec3237;
    display: inline-block;
    text-decoration: none;
}

.offcanvas-section-title:hover {
    color: #ec3237;
}

.offcanvas-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.offcanvas-link:hover {
    color: #b91c1c;
    transform: translateX(5px);
}

.offcanvas-primary-link {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.offcanvas-primary-link:hover {
    color: #ec3237;
}

.contact-info-item {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    color: #ec3237;
    font-size: 1.2rem;
    min-width: 24px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .offcanvas-header-custom {
        margin-left: 1rem;
    }
}

.offcanvas-header .btn-close {
    margin-right: calc(5 * var(--bs-offcanvas-padding-x)) !important;
}

.offcanvas-section-title {
    font-size: 1.1rem;
}

.offcanvas-link {
    font-size: 1rem;
}

.btn-enquiry {
    padding: 10px 20px;
    font-size: 14px;
}

.offcanvas-content {
    padding: 1rem;
}

/* Stack services in single column on mobile */
/* .services-mobile-stack .col-6 {
    width: 100%;
} */

.navbar-toggler-icon {
    width: 2em !important;
}

/* Fix for offcanvas header */
.offcanvas-header-custom {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 1055;
}

/* Ensure content is fully visible */
.offcanvas-content .container-fluid {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
}


/*About Section*/
.abt-image-container {
    border-radius: 30px;
    height: 400px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.abt-image-container img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
    z-index: 1;
}

.abt-stats-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: linear-gradient(135deg, #000000 0%, #da0007 100%);
    border-radius: 20px;
    padding: 25px 35px;
    box-shadow: 0 15px 40px rgba(232, 0, 46, 0.4);
    animation: abt-float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    z-index: 2;
}

@keyframes abt-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.abt-btn-gradient {
    background: #ed3237;
    border: none;
    transition: all 0.3s ease;
}

.abt-btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 0, 46, 0.45);
}


.abt-feature-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.abt-feature-list {
    gap: 0.75rem;
}

@media (max-width: 991px) {
    .abt-image-container {
        height: 350px;
        margin-bottom: 20px;
    }

    .abt-stats-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px 30px;
    }
}



/* Gallery section */
/*gallery*/
.gal-team-section {
    padding: 50px 0;
    background: #e8e8e8;
    overflow: hidden;
}

.gal-container-fluid {
    padding: 0 20px;
}

.gal-header {
    margin-bottom: 40px;
    margin-left: 20px;
}

.gal-team-label {
    color: #dc0000;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.gal-team-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.gal-blue-text {
    color: #00b4d8;
}

.gal-slider-container {
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.gal-slider-container:active {
    cursor: grabbing;
}

.gal-slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.gal-image-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.gal-image-column.gal-small {
    width: 200px;
}

.gal-image-column.gal-medium {
    width: 300px;
}

.gal-image-column.gal-large {
    width: 500px;
}

.gal-team-img {
    width: 100%;
    border-radius: 35px;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gal-team-img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.25);
}

.gal-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.gal-lightbox.gal-active {
    display: flex;
}

.gal-lightbox img {
    max-width: 100vw;
    max-height: 100vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 180, 216, 0.5);
}

@media (min-width: 768px) {
    .gal-lightbox img {
        max-width: 70vw;
        max-height: 80vh;
    }
}

.gal-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.gal-img-small {
    height: 200px;
}

.gal-img-full {
    height: 420px;
}

@media (max-width: 991px) {
    .gal-image-column.gal-small {
        width: 180px;
    }

    .gal-image-column.gal-medium {
        width: 280px;
    }

    .gal-image-column.gal-large {
        width: 420px;
    }

    .gal-img-full {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .gal-team-section h2 {
        font-size: 2rem;
    }

    .gal-image-column.gal-small {
        width: 160px;
    }

    .gal-image-column.gal-medium {
        width: 240px;
    }

    .gal-image-column.gal-large {
        width: 380px;
    }

    .gal-img-small {
        height: 180px;
    }

    .gal-img-full {
        height: 380px;
    }

    .gal-team-img {
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .gal-team-section h2 {
        font-size: 1.5rem;
    }

    .gal-image-column.gal-small {
        width: 140px;
    }

    .gal-image-column.gal-medium {
        width: 210px;
    }

    .gal-image-column.gal-large {
        width: 340px;
    }

    .gal-img-small {
        height: 160px;
    }

    .gal-img-full {
        height: 340px;
    }

    .gal-team-img {
        border-radius: 24px;
    }
}

/*Quote Modal*/
.qte-quote-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.qte-modal-image-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.qte-modal-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.qte-modal-overlay-content {
    position: relative;
    z-index: 1;
}

.form-control:focus,
.form-select:focus {
    border-color: #ff0000ff;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.qte-btn-primary-custom {
    background: linear-gradient(135deg, #a90000ff 0%, #c80000ff 100%);
    border: none;
}

.qte-btn-primary-custom:hover {
    background: linear-gradient(135deg, #780000ff 0%, #580000ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.qte-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
}

.qte-icon-lg {
    width: 1.33em;
    height: 1.33em;
}

.qte-icon-5x {
    width: 5em;
    height: 5em;
}

.qte-spinner {
    animation: qte-spin 1s linear infinite;
}

@keyframes qte-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*Blog Section*/
.blog-articles-section {
    background-color: #f8f9fa;
}

.blog-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
}

.blog-section-title span {
    color: #da0007;
}

.blog-section-description {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-article-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 350px;
    transition: transform 0.3s;
    cursor: pointer;
}

.blog-article-card:hover {
    transform: translateY(-10px);
}

.blog-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.blog-article-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #000000 0%, #da0007 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.blog-article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-author-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
}

.blog-author-name {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-article-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-article-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}


/*Faq Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-badge {
    display: inline-block;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.faq-talk-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    color: #495057;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-talk-button:hover {
    border-color: #da0007;
    color: #da0007;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
}

.faq-talk-icon {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
}

.faq-talk-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-decorative-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.faq-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.faq-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(220, 53, 69, 0.05));
    top: -100px;
    left: -50px;
}

.faq-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(13, 110, 253, 0.05));
    bottom: 100px;
    left: 100px;
}

.faq-shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.faq-shape-4 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.3), rgba(251, 146, 60, 0.1));
    bottom: 200px;
    left: 300px;
}

.faq-accordion-wrapper {
    position: relative;
    z-index: 1;
}

.faq-accordion-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: none !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-accordion-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-accordion-button {
    background: transparent;
    color: #212529;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-accordion-button:not(.collapsed) {
    background: transparent;
    color: #212529;
    box-shadow: none;
}

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

.faq-accordion-button::after {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

.faq-accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.faq-accordion-body {
    padding: 0 1.5rem 1.25rem 1.5rem;
    background: transparent;
    line-height: 1.7;
    font-size: 0.95rem;
    color: #6c757d;
}

.faq-content-wrapper {
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .faq-title {
        font-size: 2rem;
    }

    .faq-shape-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .faq-title {
        font-size: 1.75rem;
    }
}


/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-us-section-title {
    color: #da0007;
    position: relative;
    display: inline-block;
}

.why-choose-us-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #0d6efd;
    border-radius: 2px;
}

.why-choose-us-feature {
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
}

.why-choose-us-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 0.5rem 2rem rgba(220, 53, 69, 0.15) !important;
}

.why-choose-us-feature-image {
    overflow: hidden;
    position: relative;
}

.why-choose-us-feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.why-choose-us-feature:hover .why-choose-us-feature-image::before {
    opacity: 1;
}

.why-choose-us-feature-image img {
    transition: transform 0.6s ease;
}

.why-choose-us-feature:hover .why-choose-us-feature-image img {
    transform: scale(1.1);
}

.why-choose-us-icon {
    color: #da0007;
    font-size: 1.1rem;
}

.why-choose-us-btn-outline {
    color: #0d6efd;
    border-color: #0d6efd;
    transition: all 0.3s ease;
}

.why-choose-us-btn-outline:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
    transform: translateX(5px);
}

.why-choose-us-feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000000 0%, #da0007 100%);
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.why-choose-us-feature-image img {
    min-height: 350px;
}

.why-choose-us-section-subtitle {
    max-width: 700px;
}

@media (max-width: 767.98px) {
    .why-choose-us-section-title::after {
        bottom: -8px;
    }

    .why-choose-us-feature-image img {
        min-height: 300px;
    }
}



/* Services Section */
.servi-main-container {
    max-width: 1400px;
    margin: 2rem auto;
}

.servi-sidebar {
    background: #004f9fff;
}

/* Hide radio inputs */
.servi-tab-input {
    display: none;
}

.servi-sidebar-item {
    padding: 1.25rem 1.875rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    display: block;
    background: transparent;
    position: relative;
    border-left: 4px solid transparent;
}

.servi-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 255, 255, 0.5);
}

/* Active state when radio is checked */
#servi-tab-software-development:checked~.row .servi-sidebar label[for="servi-tab-software-development"],
#servi-tab-automation-services:checked~.row .servi-sidebar label[for="servi-tab-automation-services"],
#servi-tab-application-services:checked~.row .servi-sidebar label[for="servi-tab-application-services"],
#servi-tab-unmanned-aerial-systems:checked~.row .servi-sidebar label[for="servi-tab-unmanned-aerial-systems"],
#servi-tab-digital-marketing:checked~.row .servi-sidebar label[for="servi-tab-digital-marketing"],
#servi-tab-technologies:checked~.row .servi-sidebar label[for="servi-tab-technologies"],
#servi-tab-ecommerce-development:checked~.row .servi-sidebar label[for="servi-tab-ecommerce-development"],
#servi-tab-website-maintenance:checked~.row .servi-sidebar label[for="servi-tab-website-maintenance"],
#servi-tab-seo-services:checked~.row .servi-sidebar label[for="servi-tab-seo-services"] {
    background: rgba(0, 42, 127, 1);
    color: white;
    font-weight: 600;
    border-left: 4px solid #ed3237;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

#servi-tab-software-development:checked~.row .servi-sidebar label[for="servi-tab-software-development"]::after,
#servi-tab-automation-services:checked~.row .servi-sidebar label[for="servi-tab-automation-services"]::after,
#servi-tab-application-services:checked~.row .servi-sidebar label[for="servi-tab-application-services"]::after,
#servi-tab-unmanned-aerial-systems:checked~.row .servi-sidebar label[for="servi-tab-unmanned-aerial-systems"]::after,
#servi-tab-digital-marketing:checked~.row .servi-sidebar label[for="servi-tab-digital-marketing"]::after,
#servi-tab-technologies:checked~.row .servi-sidebar label[for="servi-tab-technologies"]::after,
#servi-tab-ecommerce-development:checked~.row .servi-sidebar label[for="servi-tab-ecommerce-development"]::after,
#servi-tab-website-maintenance:checked~.row .servi-sidebar label[for="servi-tab-website-maintenance"]::after,
#servi-tab-seo-services:checked~.row .servi-sidebar label[for="servi-tab-seo-services"]::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-right: 30px solid #002A7F;
}

.servi-content-section {
    padding: 3.75rem 5rem;
    padding-bottom: 0;
}

.servi-content-title {
    font-size: 2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 1.875rem;
}

.servi-description-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3.125rem;
}

.servi-service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.servi-service-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #0066cc;
    display: block;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.servi-service-item a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.servi-service-item a:hover {
    color: #0066cc;
    border-bottom-color: #0066cc;
}

.servi-check-details-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.servi-check-details-link:hover {
    color: #0052a3;
}

.servi-check-details-link::after {
    content: ' →';
    font-size: 1.25rem;
    transition: margin-left 0.3s ease;
    display: inline-block;
}

.servi-check-details-link:hover::after {
    margin-left: 0.5rem;
}

/* Hide all tab content by default */
.servi-tab-content-item {
    display: none;
}

/* Show content when corresponding radio is checked */
#servi-tab-software-development:checked~.row #servi-content-software-development,
#servi-tab-automation-services:checked~.row #servi-content-automation-services,
#servi-tab-application-services:checked~.row #servi-content-application-services,
#servi-tab-unmanned-aerial-systems:checked~.row #servi-content-unmanned-aerial-systems,
#servi-tab-digital-marketing:checked~.row #servi-content-digital-marketing,
#servi-tab-technologies:checked~.row #servi-content-technologies,
#servi-tab-ecommerce-development:checked~.row #servi-content-ecommerce-development,
#servi-tab-website-maintenance:checked~.row #servi-content-website-maintenance,
#servi-tab-seo-services:checked~.row #servi-content-seo-services {
    display: block;
}

.servi-blue-text {
    color: #0066cc;
}

@media (max-width: 991px) {
    .servi-content-section {
        padding: 2.5rem;
    }

    #servi-tab-software-development:checked~.row .servi-sidebar label[for="servi-tab-software-development"]::after,
    #servi-tab-automation-services:checked~.row .servi-sidebar label[for="servi-tab-automation-services"]::after,
    #servi-tab-application-services:checked~.row .servi-sidebar label[for="servi-tab-application-services"]::after,
    #servi-tab-unmanned-aerial-systems:checked~.row .servi-sidebar label[for="servi-tab-unmanned-aerial-systems"]::after,
    #servi-tab-digital-marketing:checked~.row .servi-sidebar label[for="servi-tab-digital-marketing"]::after,
    #servi-tab-technologies:checked~.row .servi-sidebar label[for="servi-tab-technologies"]::after,
    #servi-tab-ecommerce-development:checked~.row .servi-sidebar label[for="servi-tab-ecommerce-development"]::after,
    #servi-tab-website-maintenance:checked~.row .servi-sidebar label[for="servi-tab-website-maintenance"]::after,
    #servi-tab-seo-services:checked~.row .servi-sidebar label[for="servi-tab-seo-services"]::after {
        transform: translateY(-50%) rotate(0deg);
        right: -1px;
        border-right: 30px solid #ffffff;
    }
}

@media (max-width: 767px) {
    .servi-content-section {
        padding: 1.875rem 1.25rem;
    }

    .servi-content-title {
        font-size: 1.625rem;
    }

    .servi-description-text {
        font-size: 0.9375rem;
    }
}


/* Contact Section */
.cont-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 40px 0;
}

.cont-heading {
    color: #da0007;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 2rem;
}

.cont-subheading {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.cont-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cont-detail-item {
    margin-bottom: 20px;
}

.cont-icon {
    width: 60px;
    height: 60px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.cont-icon svg {
    width: 32px;
    height: 32px;
}

.cont-detail-title {
    color: #212529;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.cont-detail-text {
    color: #000000;
    margin: 0;
    font-size: 0.9rem;
}

.cont-social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.cont-social-link {
    width: 38px;
    height: 38px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cont-social-link:hover {
    background-color: #da0007;
    color: white;
    transform: translateY(-3px);
}

.cont-button {
    background: linear-gradient(135deg, #000000 0%, #da0007 100%);
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cont-button:hover {
    background: linear-gradient(135deg, #da0007 0%, #000000 100%);
    transform: translateY(-2px);
}

.cont-divider {
    height: 3px;
    width: 60px;
    background-color: #da0007;
    margin: 0 auto 25px;
}

/* Footer Section */
.footer-wrapper {
    background-color: #f9f9f9ff;
    width: 100%;
}

.footer-contact-heading {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #1d4ed8;
}

.footer-main-heading {
    font-size: 38px;
    line-height: 1.25;
    color: #0f172a;
}

.footer-schedule-btn {
    border: 2px solid #1d4ed8;
    border-radius: 50px;
    font-size: 14px;
    color: #1d4ed8;
    transition: all 0.25s ease;
}

.footer-schedule-btn:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    color: #fff;
}

.footer-schedule-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.footer-schedule-btn:hover svg {
    transform: translateX(4px);
}

.footer-email-label {
    font-size: 11px;
    letter-spacing: 1px;
    color: #64748b;
}

.footer-email-box {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-email-box:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer-email-text {
    font-size: 14px;
    color: #334155;
}

.footer-copy-btn {
    background: none;
    border: none;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.footer-copy-btn:hover {
    background-color: #f1f5f9;
}

.footer-copy-btn svg {
    width: 16px;
    height: 16px;
    color: #64748b;
}

.footer-section-title {
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #0f172a;
    padding-bottom: 10px;
    margin-bottom: 16px;
    border-bottom: 2px solid #dc2626;
    display: inline-block;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    font-size: 16px;
    color: #1a1a1a;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links-list a:hover {
    color: #1d4ed8;
    padding-left: 4px;
}

.footer-divider {
    border-color: #e2e8f0;
    opacity: 1;
}

.footer-copyright {
    font-size: 13px;
    color: #1a1a1a;
}

.footer-legal-links a {
    font-size: 13px;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #0f172a;
}

.footer-legal-separator {
    color: #cbd5e1;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.25s ease;
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.footer-social-icon.footer-facebook:hover {
    background-color: #1877f2;
}

.footer-social-icon.footer-facebook:hover svg {
    fill: #fff;
}

.footer-social-icon.footer-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social-icon.footer-instagram:hover svg {
    fill: #fff;
}

.footer-social-icon.footer-twitter:hover {
    background-color: #0f172a;
}

.footer-social-icon.footer-twitter:hover svg {
    fill: #fff;
}

.footer-social-icon.footer-linkedin:hover {
    background-color: #0a66c2;
}

.footer-social-icon.footer-linkedin:hover svg {
    fill: #fff;
}

@media (max-width: 991px) {
    .footer-main-heading {
        font-size: 32px;
    }

    .footer-links-col {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .footer-main-heading {
        font-size: 28px;
    }

    .footer-container {
        border-radius: 16px;
    }

    .footer-bottom-content {
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .footer-social-wrapper {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-links-col {
        width: 50%;
    }
}


/* Nav Tabs For About and Career Page */
.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-top: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

    overflow: hidden;
    padding-inline: 0;
    position: sticky;
    top: 79px;
    z-index: 99;
}

.nav-tabs a {
    flex: 1;
    min-width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    background: white;
    line-height: 1.4;
}

.nav-tabs a:last-child {
    border-right: none;
}

.nav-tabs a:hover {
    background: #f0f7ff;
    color: #1976D2;
}

.nav-tabs a.active {
    background: #003866ff;
    color: white;
    font-weight: 600;
    pointer-events: none;
}

.mobile-nav-dropdown {
    display: none;
    position: sticky;
    top: 79px;
    z-index: 99;
    background: white;
    border-bottom: 3px solid #2196F3;
    border-top: 3px solid #2196F3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mobile-nav-dropdown .dropdown-toggle {
    width: 100%;
    height: 60px;
    background: #2196F3;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    cursor: pointer;
}

.mobile-nav-dropdown .dropdown-toggle:focus {
    box-shadow: none;
    outline: none;
}

.mobile-nav-dropdown .dropdown-toggle::after {
    display: none;
}

.mobile-nav-dropdown .dropdown-menu {
    width: 100%;
    border-radius: 0;
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0;
    padding-top: 0;
    max-height: 70vh;
    overflow-y: auto;
    position: absolute !important;
    top: 100% !important;
    transform: none !important;
}

.mobile-nav-dropdown .dropdown-item {
    padding: 15px 20px;
    color: #495057;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-nav-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.mobile-nav-dropdown .dropdown-item:hover {
    background: #f0f7ff;
    color: #1976D2;
}

.mobile-nav-dropdown .dropdown-item.active {
    background: #003866ff;
    color: white;
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav-tabs {
        display: none;
    }

    .mobile-nav-dropdown {
        display: block;
    }
}



/*States*/
.reg-states-links {
    color: #373737;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.reg-states-links:hover {
    color: #da0007;
    text-decoration: none;
    transform: translateX(5px);
}

.reg-hero-section {
    min-height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
}

.reg-hero-svg-bg {
    opacity: 1;
    pointer-events: none;
}

.reg-state-card {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.reg-state-card:hover {
    border-left-color: #da0007;
    background-color: #f8f9fa;
}

.reg-info-card {
    border-left: 4px solid #da0007;
    transition: transform 0.3s ease;
}

.reg-info-card:hover {
    transform: translateY(-5px);
}


/*Service Page */
.service-page-hero {
    background-color: #1e3a8a;
    min-height: calc(100vh - 79px);
    position: relative;
    overflow: hidden;
}

.service-page-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.service-page-hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
}

.service-page-hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .service-page-hero-bg {
        width: 100%;
        opacity: 0.5;
    }
}

.service-page-hero-video {
    display: none;
}

.service-page-title {
    color: #ffffffff;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.service-page-cta-btn {
    background: #dc2626;
    transition: all 0.3s ease;
}

.service-page-cta-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

/* Services Cards */
.service-page-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
}

.service-page-card:hover {
    border-color: #dc2626;
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.15);
    transform: translateY(-8px);
}

.service-page-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-page-card:hover img {
    transform: scale(1.1);
}

.service-page-card-title {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Concept Cards */
.service-page-concept-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.service-page-concept-card:hover {
    box-shadow: 0 12px 28px rgba(30, 58, 138, 0.15);
    transform: translateY(-5px);
}

.service-page-concept-header {
    background: #1e3a8a;
    font-weight: 600;
    font-size: 1.2rem;
}

.service-page-concept-list li::before {
    content: '→';
    color: #dc2626;
    font-weight: 700;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .service-page-title {
        font-size: 2.5rem;
    }
}


/*Contacts Page */
.contact-page-container {
    min-height: 100vh;
    background-color: #f8f9fa;
}

.contact-page-header {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.contact-page-logo {
    color: #1e40af;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

.contact-page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: skewX(-15deg);
    transform-origin: top;
}

.contact-page-hero-content {
    position: relative;
    z-index: 1;
}

.contact-page-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-page-hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
}

.contact-page-main {
    padding: 60px 0;
}

.contact-page-form-wrapper {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-page-info-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-page-section-title {
    color: #1e293b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
}

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

.contact-page-info-item:last-child {
    margin-bottom: 0;
}

.contact-page-icon-box {
    width: 48px;
    height: 48px;
    background-color: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 16px;
}

.contact-page-info-content h6 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
}

.contact-page-info-content p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.contact-page-hours-box {
    background-color: #f8fafc;
    border-left: 4px solid #dc2626;
    padding: 20px;
    border-radius: 4px;
    margin-top: 28px;
}

.contact-page-hours-title {
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 14px;
}

.contact-page-hours-item {
    display: flex;
    justify-content: space-between;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-page-hours-item:last-child {
    margin-bottom: 0;
}

.contact-page-label {
    color: #334155;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-page-input {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 15px;
    width: 100%;
}

.contact-page-input:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-page-textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-page-submit-btn {
    background: linear-gradient(135deg, #000000 0%, #da0007 100%);
    color: white;
    border: none;
    padding: 14px 0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s;
    width: 100%;
}

.contact-page-submit-btn:hover {
    background-color: #b91c1c;
}

.contact-page-required {
    color: #dc2626;
}

.contact-page-map-section {
    padding: 0 0 60px 0;
}

.contact-page-map-wrapper {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 450px;
}


/*About Hero Section */

/* ========================================
   ABOUT US HERO SECTION
   ======================================== */

.about-us-hero {
    min-height: calc(100vh - 79px);
    background-color: #16004eff;
}

/* Left Content Side */
.about-us-content-side {
    z-index: 2;
}

.about-us-content {
    max-width: 560px;
    margin-left: auto;
    z-index: 5;
}

/* Decorative Circle */
.about-us-deco-circle {
    width: 300px;
    height: 300px;
    border: 40px solid rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

/* Decorative Dots */
.about-us-deco-dots {
    bottom: 10%;
    left: 5%;
    opacity: 0.5;
}

/* Accent Line */
.about-us-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #DC2626, #ff6b6b);
    border-radius: 2px;
}

/* Title Styles */
.about-us-title {
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.about-us-title-highlight {
    color: #DC2626;
    position: relative;
}

.about-us-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(220, 38, 38, 0.3);
    z-index: -1;
    transform: skewX(-12deg);
}

/* Description Wrapper */
.about-us-desc-wrapper {
    border-left: 3px solid rgba(220, 38, 38, 0.5);
    padding-left: 1.25rem;
}

.about-us-description {
    opacity: 0.9;
    line-height: 1.75;
}

/* CTA Button */
.about-us-btn {
    background: linear-gradient(135deg, #000000 0%, #da0007 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.about-us-btn:hover {
    background-color: #fff;
    color: #003180;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
}

/* ========================================
   RIGHT IMAGE SIDE
   ======================================== */

.about-us-image-side {
    min-height: 400px;
    padding: 3rem;
}

/* Image Frame */
.about-us-image-frame {
    z-index: 3;
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.about-us-image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Corner Accents */
.about-us-corner {
    width: 30px;
    height: 30px;
    border: 4px solid #DC2626;
    z-index: 5;
}

.about-us-corner-tl {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
}

.about-us-corner-tr {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
}

.about-us-corner-bl {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
}

.about-us-corner-br {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
}

/* Image Wrapper */
.about-us-image-wrapper {
    width: 520px;
    height: 380px;
    border-radius: 12px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-us-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-us-image-overlay {
    background: linear-gradient(135deg,
            rgba(0, 49, 128, 0.15) 0%,
            transparent 50%,
            rgba(220, 38, 38, 0.1) 100%);
    pointer-events: none;
}

/* Floating Badge */
.about-us-floating-badge {
    top: -30px;
    right: -40px;
    background: rgba(0, 20, 60, 0.95);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: about-us-float 4s ease-in-out infinite;
}

.about-us-badge-icon {
    width: 40px;
    height: 40px;
    background: #DC2626;
    color: #fff;
}

/* Floating Code Element */
.about-us-floating-element {
    bottom: -25px;
    left: -50px;
    width: 60px;
    height: 60px;
    background: #DC2626;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    z-index: 10;
    animation: about-us-float 5s ease-in-out infinite reverse;
}

/* Float Animation */
@keyframes about-us-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Decorative Line */
.about-us-deco-line {
    width: 100px;
    height: 4px;
    background: #DC2626;
    bottom: -50px;
    right: 20%;
    border-radius: 2px;
}

/* Background Circles */
.about-us-bg-circle-1 {
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    top: 8%;
    right: 8%;
    z-index: 0;
}

.about-us-bg-circle-2 {
    width: 120px;
    height: 120px;
    background: rgba(220, 38, 38, 0.08);
    bottom: 12%;
    left: 5%;
    z-index: 0;
}

/* Vertical Line Decoration */
.about-us-vertical-line {
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1399.98px) {
    .about-us-image-wrapper {
        width: 480px;
        height: 340px;
    }
}

@media (max-width: 1199.98px) {
    .about-us-image-wrapper {
        width: 420px;
        height: 300px;
    }

    .about-us-content {
        padding-right: 1rem;
    }

    .about-us-floating-badge {
        right: -20px;
    }

    .about-us-floating-element {
        left: -30px;
    }
}

@media (max-width: 991.98px) {
    .about-us-hero {
        min-height: auto;
    }

    .about-us-hero>.container-fluid>.row {
        flex-direction: column-reverse;
    }


    .about-us-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-us-accent-line {
        margin-left: auto;
        margin-right: auto;
    }

    .about-us-desc-wrapper {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid rgba(220, 38, 38, 0.5);
        padding-top: 1.25rem;
    }

    .about-us-image-side {
        min-height: 350px;
        padding: 2.5rem 2rem;
    }

    .about-us-image-wrapper {
        width: 100%;
        max-width: 500px;
        height: 320px;
    }

    .about-us-image-frame {
        transform: none;
        width: 100%;
        max-width: 500px;
    }

    .about-us-deco-circle {
        width: 200px;
        height: 200px;
        border-width: 25px;
        top: -50px;
        left: -50px;
    }

    .about-us-bg-circle-1 {
        width: 150px;
        height: 150px;
        top: 5%;
        right: 5%;
    }
}

@media (max-width: 767.98px) {
    .about-us-title {
        font-size: 3rem;
    }

    .about-us-image-side {
        padding: 2rem 1.5rem;
    }

    .about-us-image-wrapper {
        height: 260px;
    }

    .about-us-corner {
        width: 20px;
        height: 20px;
        border-width: 3px;
    }

    .about-us-corner-tl,
    .about-us-corner-bl {
        left: -10px;
    }

    .about-us-corner-tr,
    .about-us-corner-br {
        right: -10px;
    }

    .about-us-corner-tl,
    .about-us-corner-tr {
        top: -10px;
    }

    .about-us-corner-bl,
    .about-us-corner-br {
        bottom: -10px;
    }

    .about-us-bg-circle-2 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 575.98px) {
    .about-us-title {
        font-size: 2.75rem;
    }

    .about-us-description {
        font-size: 1rem;
    }

    .about-us-btn {
        width: 100%;
        justify-content: center;
    }

    .about-us-image-wrapper {
        height: 220px;
    }

    .about-us-image-side {
        padding: 1.5rem 1rem;
    }

    .about-us-deco-circle {
        width: 150px;
        height: 150px;
        border-width: 20px;
    }
}

/*About Page */
.about-section-divider {
    width: 80px;
    height: 4px;
    background-color: #da0007;
    margin: 0 auto;
}

.about-card-wrapper {
    position: relative;
}

.about-card-hover {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


.about-img-overlay {
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 300px;
}

.about-img-overlay img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-card-hover:hover .about-img-overlay img {
    transform: scale(1.05);
}

.about-badge-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    color: white;
    z-index: 10;
}

.about-badge-red {
    background-color: #da0007;
}

.about-badge-blue {
    background-color: #0d6efd;
}

.about-text-red {
    color: #da0007;
}

.about-text-blue {
    color: #0d6efd;
}

.about-bg-light-red {
    background-color: rgba(220, 53, 69, 0.08);
}

.about-bg-light-blue {
    background-color: rgba(13, 110, 253, 0.08);
}

.about-quote-box {
    border-left: 4px solid #da0007;
    padding-left: 20px;
}


/* Life Better Hero */
.bg-dark-primary {
    background: linear-gradient(to right, #001d5dff, #000000ff);
}

@media (max-width: 576px) {
    .life-hero h2 {
        font-size: 2rem;
    }

    .life-hero .lead {
        font-size: 1rem;
    }

    .life-hero-img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .life-hero {
        padding: 3rem 0 !important;
    }
}

/* Life Better Page */
/* Section Icons */
.life-section-icon {
    width: 70px;
    height: 70px;
}

.life-section-desc {
    max-width: 700px;
}

/* Feature Cards */
.life-feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
}

.life-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

.life-card-icon {
    width: 60px;
    height: 60px;
}

/* Vision Section */
.life-vision-img {
    max-height: 450px;
    object-fit: cover;
    width: 100%;
}

.life-check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
}

.life-vision-list li {
    font-size: 1.05rem;
}

/* Mind Control Section */
.life-mind-icon {
    width: 60px;
    height: 60px;
}

.life-mind-img {
    max-height: 350px;
    object-fit: cover;
    width: 100%;
}

/* Technology Cards */
.life-tech-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.life-tech-card:hover {
    transform: translateY(-5px);
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.life-tech-icon {
    width: 56px;
    height: 56px;
}

/* Digital India Content Section */
.life-digital-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 1.5rem;
}

.life-digital-item:hover {
    border-left-color: #da0007;
    background-color: #f8f9fa;
    padding-left: 2rem;
}

.life-digital-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.life-digital-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
    font-weight: 700;
}

.life-digital-img {
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* Icon styling */
.life-icon {
    vertical-align: middle;
}

/* Footer */
.life-footer a {
    transition: opacity 0.3s ease;
}

.life-footer a:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .life-hero {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .min-vh-75 {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .life-section-icon {
        width: 60px;
        height: 60px;
    }

    .life-section-icon svg {
        width: 28px;
        height: 28px;
    }

    .life-vision-list li {
        font-size: 0.95rem;
    }

    .life-digital-item {
        padding-left: 1rem;
    }

    .life-digital-item:hover {
        padding-left: 1.25rem;
    }
}

/* Support Hero Section */
.supp-hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.supp-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.05) 100%);
}

.supp-hero-badge {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
}

.supp-floating-element {
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 2;
    transition: transform 0.3s ease;
}

.supp-floating-element:hover {
    transform: translateY(-5px);
}

.supp-floating-element svg {
    width: 32px;
    height: 32px;
}

.supp-floating-1 {
    top: 15%;
    right: 10%;
    animation: supp-float 6s ease-in-out infinite;
}

.supp-floating-2 {
    top: 45%;
    right: 5%;
    animation: supp-float 7s ease-in-out infinite 0.5s;
}

.supp-floating-3 {
    bottom: 20%;
    right: 15%;
    animation: supp-float 8s ease-in-out infinite 1s;
}

@keyframes supp-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.supp-cta-button {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
}

.supp-service-icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 992px) {
    .supp-hero-section::before {
        width: 100%;
        height: 40%;
        top: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.05) 100%);
    }

    .supp-visual-container {
        margin-top: 3rem;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .supp-floating-element {
        transform: scale(0.8);
    }
}

/* Support Page */
.support-commitment-box {
    color: black;
}

.support-professional-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-professional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.support-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-professional-card:hover .support-icon-container {
    transform: scale(1.05);
}

.support-section-title {
    position: relative;
    display: inline-block;
}

.support-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
}

.support-section-title-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .support-icon-container {
        width: 70px;
        height: 70px;
    }
}

/* Aim Hero Section */
.aim-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: auto;
    overflow: hidden;
}

.aim-accent-line {
    width: 60px;
    height: 3px;
    border-radius: 2px;
}

.aim-hero-text {
    max-width: 100%;
}

.aim-logo-wrapper {
    transition: transform 0.3s ease;
}

.aim-logo-wrapper:hover {
    transform: scale(1.1);
}

.aim-illustration-wrapper {
    min-height: 200px;
    padding: 1rem;
}

.aim-bg-circle {
    width: 180px;
    height: 180px;
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.aim-hero-svg {
    z-index: 1;
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: aim-float 3s ease-in-out infinite;
}

.aim-badge-float {
    position: absolute;
    z-index: 2;
    font-size: 0.8rem;
}

.aim-badge-top {
    top: 5%;
    right: 5%;
    animation: aim-float 2.5s ease-in-out infinite;
}

.aim-badge-bottom {
    bottom: 5%;
    left: 5%;
    animation: aim-float 3s ease-in-out infinite 0.5s;
}

.aim-tagline {
    border-left: 3px solid #da0007;
}

@keyframes aim-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .aim-hero-svg {
        width: 200px;
        height: 200px;
    }

    .aim-bg-circle {
        width: 220px;
        height: 220px;
    }

    .aim-illustration-wrapper {
        min-height: 250px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .aim-hero-svg {
        width: 280px;
        height: 280px;
    }

    .aim-bg-circle {
        width: 300px;
        height: 300px;
    }

    .aim-illustration-wrapper {
        min-height: 320px;
    }

    .aim-accent-line {
        width: 70px;
        height: 4px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .aim-hero {
        min-height: 90vh;
    }

    .aim-hero-text {
        max-width: 600px;
    }

    .aim-illustration-wrapper {
        min-height: 400px;
    }

    .aim-bg-circle {
        width: 420px;
        height: 420px;
        top: 52%;
        left: 48%;
    }

    .aim-hero-svg {
        width: 380px;
        height: 380px;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    }

    .aim-accent-line {
        width: 80px;
    }

    .aim-tagline {
        border-left-width: 4px;
    }

    .aim-badge-top {
        top: 10%;
        right: 10%;
    }

    .aim-badge-bottom {
        bottom: 10%;
        left: 10%;
    }

    .aim-badge-float {
        font-size: 0.85rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .aim-hero-svg {
        width: 400px;
        height: 400px;
    }

    .aim-bg-circle {
        width: 450px;
        height: 450px;
    }
}


/*Aim Page */
.aim-text-base {
    font-size: 0.95rem;
}

.aim-text-sm {
    font-size: 0.9rem;
}

.aim-text-xs {
    font-size: 0.8rem;
}

/* Divider */
.aim-divider {
    width: 80px;
    height: 3px;
    background-color: #da0007;
}

/* Highlight Box */
.aim-highlight-box {
    border-left: 4px solid #da0007;
}

/* Process List */
.aim-bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
}

.aim-process-list li,
.aim-values-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aim-process-list li:last-child,
.aim-values-list li:last-child {
    border-bottom: none;
}

/* Passion Statement */
.aim-passion-statement {
    border-left: 4px solid #da0007;
}

/* Capabilities Section */
.aim-capabilities {
    border: 2px solid #e9ecef;
}

/* Icon Sizes */
.aim-icon-lg {
    width: 60px;
    height: 60px;
}

.aim-icon-md {
    width: 70px;
    height: 70px;
}

.aim-icon-xl {
    width: 100px;
    height: 100px;
}

.aim-icon-sm {
    width: 36px;
    height: 36px;
}

.aim-icon-xs {
    width: 24px;
    height: 24px;
}

.aim-icon-xxs {
    width: 20px;
    height: 20px;
}

.aim-icon-mini {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 991px) {
    .aim-hero {
        min-height: auto;
        padding: 40px 0;
    }

    .aim-icon-xl {
        width: 80px;
        height: 80px;
    }

    .aim-icon-lg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767px) {
    .aim-hero h1 {
        font-size: 1.75rem;
    }

    .aim-icon-xl {
        width: 60px;
        height: 60px;
    }

    .aim-highlight-box,
    .aim-passion-statement {
        border-left-width: 3px;
    }
}


/* Facts Hero Section */
.facts-hero {
    height: calc(100vh - 79px);
    min-height: 600px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.facts-hero>.container {
    position: relative;
    z-index: 2;
}

/* Badge Styles */
.facts-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #fef2f2;
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid #fecaca;
}

.facts-badge-icon {
    color: #dc2626;
}

/* Title Styles */
.facts-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.facts-title-highlight {
    color: #db1a1aff;
    position: relative;
}

.facts-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #dc2626;
    opacity: 0.2;
    z-index: -1;
    border-radius: 4px;
}

/* Subtitle */
.facts-subtitle {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    max-width: 540px;
}

/* List Styles */
.facts-list-item {
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
}

.facts-check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background-color: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a56db;
    margin-top: 2px;
}

.facts-list-item strong {
    color: #0f172a;
}

/* Button Styles */
.facts-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background-color: #dc2626;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #dc2626;
    position: relative;
    z-index: 3;
}

.facts-btn-primary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.25);
}

.facts-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background-color: #ffffff;
    color: #1a56db;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #1a56db;
    position: relative;
    z-index: 3;
}

.facts-btn-secondary:hover {
    background-color: #1a56db;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 86, 219, 0.25);
}

/* Illustration Wrapper */
.facts-illustration-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facts-illustration {
    width: 100%;
    max-width: 850px;
    height: auto;
}

/* Decorative Dots */
.facts-dots {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, #1a56db 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.3;
}

.facts-dots-top {
    top: -20px;
    right: 40px;
}

.facts-dots-bottom {
    bottom: 20px;
    left: 20px;
    background-image: radial-gradient(circle, #dc2626 2px, transparent 2px);
}

/* Background Shapes - Fixed z-index */
.facts-bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.facts-bg-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    top: -100px;
    right: -100px;
}

.facts-bg-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    bottom: -80px;
    left: -80px;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .facts-title {
        font-size: 2.75rem;
    }

    .facts-illustration {
        max-width: 480px;
    }
}

@media (max-width: 991.98px) {
    .facts-hero {
        height: auto;
        min-height: calc(100vh - 79px);
        padding: 60px 0;
    }

    .facts-title {
        font-size: 2.5rem;
    }

    .facts-subtitle {
        max-width: 100%;
    }

    .facts-illustration-wrapper {
        margin-top: 40px;
    }

    .facts-illustration {
        max-width: 400px;
    }

    .facts-dots {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .facts-hero {
        padding: 40px 0;
    }

    .facts-title {
        font-size: 2rem;
    }

    .facts-title-highlight::after {
        height: 6px;
        bottom: 2px;
    }

    .facts-subtitle {
        font-size: 1rem;
    }

    .facts-list-item {
        font-size: 0.9375rem;
    }

    .facts-btn-primary,
    .facts-btn-secondary {
        padding: 12px 24px;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }

    .facts-cta-wrapper {
        flex-direction: column;
    }

    .facts-illustration {
        max-width: 320px;
    }

    .facts-bg-shape-1 {
        width: 250px;
        height: 250px;
        top: -60px;
        right: -60px;
    }

    .facts-bg-shape-2 {
        width: 180px;
        height: 180px;
        bottom: -50px;
        left: -50px;
    }
}

@media (max-width: 575.98px) {
    .facts-title {
        font-size: 1.75rem;
    }

    .facts-badge {
        font-size: 0.8125rem;
        padding: 6px 14px;
    }

    .facts-check-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .facts-check-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* Animation for illustration elements */
@keyframes facts-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.facts-illustration {
    animation: facts-float 6s ease-in-out infinite;
}


/* Facts Page */
.facts-section-light {
    background-color: #f8f9fa;
}

.facts-big-number {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
}

.facts-quote-box {
    border-left: 3px solid #da0007;
    padding-left: 15px;
}

.facts-circle-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-weight: 700;
}

.facts-rule-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facts-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.facts-timeline-item {
    position: relative;
    flex: 1;
    min-width: 200px;
    padding: 0 15px;
    text-align: center;
    margin-bottom: 20px;
}

.facts-timeline-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.facts-timeline-year {
    display: block;
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.facts-summary-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    height: 100%;
}

.facts-summary-num {
    font-size: 3.25rem;
    font-weight: 800;
    margin-right: 12px;
}

@media (max-width: 768px) {
    .facts-big-number {
        font-size: 60px;
    }

    .facts-timeline {
        flex-direction: column;
    }

    .facts-timeline-item {
        text-align: left;
        padding-left: 30px;
        border-left: 2px solid #e9ecef;
    }

    .facts-timeline-dot {
        position: absolute;
        left: -7px;
        top: 0;
    }
}

/*Infrastructure Hero Section Container */
.infra-hero {
    height: calc(100vh - 79px);
    min-height: 600px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Hero Content */
.infra-hero-content {
    position: relative;
    z-index: 10;
}

/* Badge Styling */
.infra-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fee2e2;
    color: #dc2626;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
}

.infra-badge-icon {
    width: 16px;
    height: 16px;
}

/* Title Styling */
.infra-title {
    color: #1e293b;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.infra-text-accent {
    color: #dc2626;
}

.infra-text-highlight {
    color: #2563eb;
}

/* Description */
.infra-description {
    max-width: 540px;
    line-height: 1.7;
}

/* Feature List */
.infra-feature-list li {
    color: #475569;
    font-size: 0.95rem;
}

.infra-check-icon {
    color: #16a34a;
    flex-shrink: 0;
}

/* Primary Button */
.infra-btn-primary {
    background-color: #dc2626;
    border: 2px solid #dc2626;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.infra-btn-primary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* Outline Button */
.infra-btn-outline {
    background-color: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.infra-btn-outline:hover {
    background-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Illustration Container */
.infra-illustration {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.infra-main-svg {
    width: 100%;
    height: auto;
}

/* SVG Styling */
.infra-bg-circle {
    fill: #f8fafc;
    stroke: #e2e8f0;
    stroke-width: 2;
}

.infra-server-rack {
    fill: #1e293b;
    stroke: #334155;
    stroke-width: 2;
}

.infra-server-unit {
    fill: #334155;
    stroke: #475569;
    stroke-width: 1;
}

.infra-server-unit-alt {
    fill: #3b4a5a;
    stroke: #475569;
    stroke-width: 1;
}

.infra-led-green {
    fill: #22c55e;
}

.infra-led-blue {
    fill: #3b82f6;
}

.infra-led-red {
    fill: #ef4444;
    animation: infra-blink 1s infinite;
}

.infra-drive {
    fill: #64748b;
    stroke: #94a3b8;
    stroke-width: 1;
}

.infra-connection-line {
    stroke: #2563eb;
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    fill: none;
}

.infra-cloud {
    fill: #dbeafe;
    stroke: #2563eb;
    stroke-width: 2;
}

.infra-database {
    fill: #fecaca;
    stroke: #dc2626;
    stroke-width: 2;
}

.infra-database-body {
    fill: none;
    stroke: #dc2626;
    stroke-width: 2;
}

.infra-shield {
    fill: #dcfce7;
    stroke: #16a34a;
    stroke-width: 2;
}

.infra-shield-check {
    fill: none;
    stroke: #16a34a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.infra-particle {
    fill: #dc2626;
    opacity: 0.6;
}

.infra-particle-alt {
    fill: #2563eb;
    opacity: 0.6;
}

/* Decorative Elements */
.infra-decoration-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.infra-decoration-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Animation */
@keyframes infra-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ================================
   RESPONSIVE STYLES
================================ */

/* Large Tablets */
@media (max-width: 991.98px) {
    .infra-hero {
        height: auto;
        min-height: calc(100vh - 79px);
        padding: 60px 0;
    }

    .infra-title {
        font-size: 2.5rem;
    }

    .infra-hero-content {
        text-align: center;
    }

    .infra-description {
        margin-left: auto;
        margin-right: auto;
    }

    .infra-feature-list {
        display: inline-block;
        text-align: left;
    }

    .infra-cta-group {
        justify-content: center;
    }
}

/* Tablets */
@media (max-width: 767.98px) {
    .infra-hero {
        padding: 50px 0;
    }

    .infra-title {
        font-size: 2rem;
    }

    .infra-description {
        font-size: 1rem;
    }

    .infra-btn-primary,
    .infra-btn-outline {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

/* Mobile Phones */
@media (max-width: 575.98px) {
    .infra-hero {
        padding: 40px 0;
        min-height: auto;
    }

    .infra-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .infra-title {
        font-size: 1.75rem;
    }

    .infra-description {
        font-size: 0.95rem;
    }

    .infra-feature-list li {
        font-size: 0.875rem;
    }

    .infra-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .infra-btn-primary,
    .infra-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .infra-decoration-top,
    .infra-decoration-bottom {
        display: none;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .infra-title {
        font-size: 1.5rem;
    }

    .infra-btn-primary,
    .infra-btn-outline {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

/* Height-based adjustments for landscape mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .infra-hero {
        height: auto;
        min-height: 100vh;
        padding: 30px 0;
    }

    .infra-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .infra-description {
        margin-bottom: 1rem;
    }

    .infra-feature-list {
        margin-bottom: 1rem;
    }
}

/* InfraStructure Page */
.infra-feature-item {
    position: relative;
    transition: all 0.3s ease;
    padding: 1rem;
    text-align: center;
}

.infra-feature-item:hover {
    transform: scale(1.05);
}

.infra-tech-item {
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.infra-tech-item:hover {
    transform: translateY(-10px);
}

.infra-tech-icon-wrapper {
    display: inline-block;
    padding: 1.25rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.infra-tech-item:hover .infra-tech-icon-wrapper {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767.98px) {
    .infra-feature-item {
        padding: 1.5rem 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .infra-tech-icon-wrapper {
        padding: 1rem;
    }

    .infra-tech-icon-wrapper svg {
        width: 50px !important;
        height: 50px !important;
    }
}

.partnered-hero {
    min-height: calc(100vh - 79px);
    background-color: #ffffff;
}

.partnered-title {
    color: #1e3a5f;
}

.partnered-accent {
    color: #dc2626;
}

.partnered-text {
    color: #64748b;
}

.partnered-line {
    width: 60px;
    height: 4px;
    background-color: #dc2626;
}

.partnered-btn-red {
    background-color: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
    transition: all 0.3s ease;
}

.partnered-btn-red:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    color: #ffffff;
    transform: translateY(-2px);
}

.partnered-btn-blue {
    border: 2px solid #1e3a5f;
    color: #1e3a5f;
    background: transparent;
    transition: all 0.3s ease;
}

.partnered-btn-blue:hover {
    background-color: #1e3a5f;
    color: #ffffff;
    transform: translateY(-2px);
}

.partnered-badge {
    background-color: #fef2f2;
    color: #dc2626;
}

.partnered-visual-wrapper {
    max-width: 480px;
}

.partnered-card-main {
    background-color: #1e3a5f;
    border-radius: 24px;
    padding: 3rem;
}

.partnered-card-float-1 {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    top: -20px;
    right: -30px;
    padding: 1rem 1.25rem;
}

.partnered-card-float-2 {
    background-color: #dc2626;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
    bottom: -20px;
    left: -30px;
    padding: 1rem 1.25rem;
}

.partnered-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.partnered-icon-blue {
    background-color: #e0e7ff;
    color: #1e3a5f;
}

.partnered-icon-white {
    background-color: rgba(255, 255, 255, 0.2);
}

.partnered-dot {
    width: 12px;
    height: 12px;
    background-color: #dc2626;
    top: 50%;
    left: -40px;
}

.partnered-dot-2 {
    width: 8px;
    height: 8px;
    background-color: #1e3a5f;
    bottom: 30%;
    right: -25px;
}

.partnered-ring {
    width: 80px;
    height: 80px;
    border: 2px dashed rgba(30, 58, 95, 0.15);
    top: 10%;
    left: -20px;
}

@media (max-width: 991.98px) {
    .partnered-hero {
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .partnered-card-float-1 {
        right: -10px;
        top: -15px;
    }

    .partnered-card-float-2 {
        left: -10px;
        bottom: -15px;
    }

    .partnered-dot,
    .partnered-ring,
    .partnered-dot-2 {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .partnered-card-main {
        padding: 2rem;
    }

    .partnered-card-float-1,
    .partnered-card-float-2 {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
    }
}

/* Partnered comapny Page */
.part-section-header {
    position: relative;
    padding-bottom: 1rem;
}

.part-section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2c8c99, #f9a826);
    border-radius: 2px;
}

.partner-card {
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-8px);
}

.partner-logo-container {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo-container {
    transform: scale(1.05);
}

.partner-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-category {
    background: linear-gradient(135deg, rgba(44, 140, 153, 0.1), rgba(249, 168, 38, 0.1));
}

.btn-partner {
    background: linear-gradient(135deg, #cd0d0d, #f92626);
    border: none;
    transition: all 0.3s ease;
}

.btn-partner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 140, 153, 0.3);
}

/*   blog  page   */

/* Blog Hero Gradient */
.blog-gradient {
    background: linear-gradient(135deg, #000238ff 0%, #023e9eff 100%);
}

/* Blog Card Styling */
.blog-post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none !important;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.blog-post-img {
    height: 240px;
    overflow: hidden;
    border-radius: 0 !important;
}

.blog-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-img img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.full-width-container {
    max-width: 100%;
}

/* Card Body */
.blog-post-card .card-body {
    padding: 1.5rem;
}

/* Hero Floating Animation */
.hero-float {
    animation: float 3s ease-in-out infinite;
}

.hero-float-delay {
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.policy-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow:
        0 20px 40px rgba(0, 20, 30, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Header Section */
.policy-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.company-name {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0B4F6C, #145C9E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    margin-bottom: 0.3rem;
}

.policy-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.last-updated {
    display: inline-block;
    background: #eef2f6;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #4a5568;
    border: 1px solid #cbd5e0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Content Sections */
.policy-section {
    margin-bottom: 2rem;
    padding: 0.5rem 0;
}

.section-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0B4F6C;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 5px solid #0B4F6C;
}

.policy-text {
    color: #2d3748;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.2rem;
}

.policy-list {
    list-style-type: none;
    padding-left: 2rem;
    margin: 1rem 0;
}

.policy-list li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.5rem;
}

.policy-list li::before {
    content: "";
    color: #0B4F6C;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.policy-text-highlight {
    font-size: 1.1rem;
    background: #eef2f6;
    padding: 1rem;
    border-radius: 12px;
}

.highlight-box {
    background: #f8fafd;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    margin: 1.2rem 0;
    border: 1px solid #cbd5e0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(145deg, #f0f4fa, #e6ecf5);
    border-radius: 20px;
    padding: 1.8rem;
    margin-top: 2rem;
    border: 1px solid #b8c5d9;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-item {
    flex: 1 1 200px;
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #a0b3cc;
}

.contact-label {
    font-weight: 600;
    color: #0B4F6C;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-section h2 {
    color: #0B4F6C;
    margin-bottom: 0.5rem;
}

.contact-section p {
    margin-bottom: 1rem;
}

.contact-value a {
    text-decoration: none;
    color: #0B4F6C;
    font-weight: 500;
}

.contact-value a:hover {
    text-decoration: underline;
}


/* Responsive */
@media (max-width: 600px) {
    .policy-card {
        padding: 1.5rem;
    }

    .company-name {
        font-size: 2rem;
    }

    .policy-title {
        font-size: 1.6rem;
    }

    .section-heading {
        font-size: 1.2rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 0.8rem;
    }
}

.text-danger {
    color: rgb(218 0 7) !important;
}

.btn-quotes {
    background: #ed3237;
    color: #ffffff;
}

.btn-quotes:hover {
    background: linear-gradient(135deg, #000000 0%, #dc3545 100%);
    color: #ffffff;
}

.bg-gradients {
    background: linear-gradient(135deg, #000000 0%, #da0007 100%);
    color: #ffffff;
}

.bg-red {
    background: #dc3545;
    color: #ffffff;
}