@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
/* === Custom CSS Variables & Global Styles === */
:root {
    --nt-dark: #0a1628f2; /* Dark background */
    --nt-secondary-dark: #0b0708; /* Slightly lighter dark for cards/sections */
    --nt-primary: linear-gradient(135deg, hsl(270, 85%, 60%) 0%, hsl(290, 90%, 55%) 50%, hsl(320, 85%, 50%) 100%); /* Bright Purple/Violet Accent */
    --nt-light: #ffffff; /* White text */
    --nt-text-secondary: #9a9a9a; /* Light grey for body text */
    --nt-font:  'MuseoModerno', sans-serif;
    --nt-font-content:  'Montserrat', sans-serif;
    --nt-gradient: linear-gradient(90deg, #8a2be2 0%, #d459ff 100%);
    --nt-text-purpule:#6c13bf;
    --nt-dark: #0b0708;
    --nt-secondary-dark: #0b0708;
    --nt-primary: linear-gradient(135deg, hsl(270, 85%, 60%) 0%, hsl(290, 90%, 55%) 50%, hsl(320, 85%, 50%) 100%);
    --nt-light: #ffffff;
    --nt-text-secondary: #9a9a9a;
    --nt-card-bg-light: #160a22; /* Slightly lighter than secondary dark for cards */
    --nt-heading-color:#fff;
    --nt-paragraph-color:#cbcbcb;
    --card-bg: #121212;
    --accent-color: #ff4d30;
    --text-muted: #cbcbcb;
    --ai-orange: #ff4d30;
    --ai-card-bg: #141414;
    --gem-orange: #ff4d30;
    --gem-blue: #304dff;
    --gem-card-bg: #111111;
}

body {
    font-family: var(--nt-font);
    background-color: var(--nt-dark);
    color: var(--nt-light);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    font-family: var(--nt-font);
}

/* === Utilities & Components === */
.nt-btn-outline {
    background: transparent;
    border: 2px solid var(--nt-primary);
    color: var(--nt-primary);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 5px;
}

    .nt-btn-outline:hover {
        background: var(--nt-primary);
        color: var(--nt-light);
    }

.text-purple {
    color: var(--nt-primary) !important;
}

/* The 'Learn More' link style */
.nt-learn-more {
    color: var(--nt-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

    .nt-learn-more:hover {
        color: var(--nt-primary);
    }

/* Replicate the glowing title effect */
.nt-hero-title-main {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    /* Using text-shadow to simulate the glow/vibrancy */
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.7);
}

@media (max-width: 768px) {
    .nt-hero-title-main {
        font-size: 2.5rem;
    }
}

/* --- Custom Hero Section Background --- */
.nt-hero-bg {
    background-color: #0c0217; /* Very deep dark color */
    padding-top: 100px; /* Space for fixed navbar */
    padding-bottom: 80px;
    position: relative;
    /* Simulate the abstract wave effect with a subtle linear gradient border or shadow */
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.1);
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
}

/* === Navigation Bar Styles === */
.nt-navbar {
    background-color: #080607 !important;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
/*.navbar-expand-lg .navbar-nav .dropdown-menu {
    top: 78px;
}*/
.nt-navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nt-light) !important;
}

.nt-nav-link, .nt-nav-link:focus, .nt-nav-link:hover {
    color: var(--nt-light) !important;
    font-weight: 500;
    transition: color 0.3s;
    padding: 1.7rem 1rem;
}

    .nt-nav-link:hover {
        color: #4faff0 !important;
        /*background: #d4483c;*/
    }

/* --- Multi-level Dropdown Styles --- */
.dropdown-menu {
    background-color: #202020; /* Dark background for menus */
    border: 1px solid rgb(32 32 32);
    padding:0;
    width: 240px;
}
.navbar-nav .dropdown-menu li {
    border-bottom: 1px solid rgb(32 32 32);
}
.dropdown-item {
    color: #cbcbcb;
    padding: 8px 10px;
    transition: background-color 0.2s, color 0.2s;
    white-space: normal;
}

    .dropdown-item:hover, .dropdown-item:focus {
        background-color: #0b0708;
        color: #fff;
    }

/* Specific styling for the 2nd level dropdown */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > a:after {
        content: '';
        position: absolute;
        background-image: url(../images/right.png);
        width: 16px;
        height: 16px;
        border: none;
        top: 14px;
        right: 3px;
    }

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: 0;
    }
/* Mobile-specific adjustments for better visibility */
@media (max-width: 991.98px) {
    .dropdown-submenu > .dropdown-menu {
        position: static;
        left: auto;
        margin-top: 0;
        border: none;
        border-left: 3px solid var(--nt-primary);
        padding-left: 10px;
        /* By default, hide on mobile, only show when JS adds .show */
        display: none;
    }

        .dropdown-submenu > .dropdown-menu.show {
            display: block;
        }
}
/* Show submenu on hover for desktop */
@media (min-width: 992px) {
    .dropdown-hover:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}

/* === Stats Bar Section === */
.nt-stats-bar {
    background-color: var(--nt-dark);
    padding: 40px 0;
    border-top: 1px solid rgb(109 103 114 / 33%);
    border-bottom: 1px solid rgb(109 103 114 / 33%);
}

.nt-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nt-primary);
}

.nt-stat-label {
    font-size: 1rem;
    color: var(--nt-text-secondary);
}

/* === Core Services Section === */
.nt-services-section {
    padding: 80px 0;
    background-color: var(--nt-dark);
}

.nt-service-card {
    background: url(../images/coprehensive-ai.png) no-repeat scroll 0 0 #000000;
    border-radius: 10px;
    padding: 30px;
    min-height: 220px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(138, 43, 226, 0.1);
    margin-bottom: 20px;
    min-height: 415px;
    text-align:center;
    background-size: 100% 100%;
}

    .nt-service-card:hover {
        /*transform: translateY(-5px);
        border: solid 2px #d4483c;
        border-image: radial-gradient(circle at top left, #ff4d30, #304dff) 1;
        transition: .7s;*/
        background: url(../images/coprehensive-ai-hover.png) no-repeat scroll 0 0 #000000;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background-size: 100% 100%;
    }

    /*.nt-service-card h4 {
        font-weight: 600;
        color: var(--nt-light);
        margin-top: 10px;
    }*/

    /*.nt-service-card p {
        font-size: 0.9rem;
        color: var(--nt-text-secondary);
    }*/
/* Icon/Visual Placeholder */
.nt-card-icon-bg {
    /*font-size: 5rem;*/
    position: relative;
}

.nt-card-content {
    position: relative;
    z-index: 1;
    /*margin-top: 25%;*/
}

.nt-card-small-icon {
    color: #ffffff;
    font-size: 1.5rem;
    /*border: 1px solid #8a2be2;*/
    padding: 8px;
    border-radius: 5px;
    display: inline-block;
    /*position: absolute;*/
    /*bottom: 0;
    left: 20px;*/
    width: 75px;
    text-align: center;
    /*background: #8a2be2;*/
    background: linear-gradient(314deg, #9C27B0 0%, #2e44bf 100%);
}

/* === Footer Styles === */
.nt-footer {
    /*background-color: var(--nt-secondary-dark);*/
    background: url(../images/footer-background.jpg) no-repeat 0 0 #0b0708;
    padding: 60px 0 20px;
    /*border-top: 2px solid rgba(138, 43, 226, 0.2);
    font-size: 0.9rem;*/
}

    .nt-footer h5 {
        font-weight: 700;
        color: var(--nt-heading-color);
        margin-bottom: 20px;
    }

    .nt-footer ul {
        list-style: none;
        padding: 0;
    }

        .nt-footer ul li a {
            color: var(--nt-paragraph-color);
            text-decoration: none;
            transition: color 0.2s;
            display: block;
            padding: 3px 0;
            font-size: 16px;
        }

            .nt-footer ul li a:hover {
                color: var(--nt-heading-color);
            }

.nt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.nt-logo-text {
    color: var(--nt-light);
    font-weight: 700;
    font-size: 1.2rem;
}

.nt-contact-info {
    font-size: 1rem;
    color: var(--nt-paragraph-color);
}

/*home page single section css*/
.ai-integrations-section {
    background: #1e293b;
}

/* Styling the main title */
.ai-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
}

/* Styling the benefits list */
.ai-benefits-list li {
    font-size: 1.1rem;
    padding: 5px 0;
    display: flex;
    align-items: center;
    color: var(--nt-paragraph-color);
}

/* Styling the custom bullet icon '»' */
.ai-benefits-list .bullet-icon {
    font-size: 1.5rem; /* Larger than the text */
    line-height: 1;
    color: #06b6d4; /* Purple color for the bullets */
    margin-right: 10px;
}

/* Styling the 'Read more' button */
.ai-read-more {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 25px;
    color: #fff;
    font-weight: 400;
    transition: 0.9s;
    border: solid 1px #fff;
    background: transparent;
    font-size:14px;
    /*background: linear-gradient(90deg, #b87333, var(--ai-orange));*/
}

    .ai-read-more:hover {
        background: linear-gradient(314deg, #2e44bf 0%, #9C27B0 100%);
        color: #ffffff;
    }

/* Placeholder for the AI graphic (to maintain layout space) */
.ai-graphic-placeholder {
    min-height: 280px;
    background-color: transparent;
}

/* Optional: Adjust for smaller screens */
@media (max-width: 991.98px) {
    .ai-title {
        font-size: 2rem;
    }
}
/*custom css*/
.naven-logo {
    width: 100px;
}

.img-hover-effect {
    /*border:solid 1px rgba(138, 43, 226, 0.1);*/
    transition: transform 0.3s, box-shadow 0.3s;
}

    .img-hover-effect:hover {
        transform: translateY(-5px);
        box-shadow: 0px 5px 39px #06b6d480;
        /*border: solid 1px #8a2be2d1;*/
    }

.gradient-text {
    background: linear-gradient(90deg, #bd28d7, #4eb0f0);
    -webkit-background-clip: text;
    color: transparent;
}

.case-studies-section {
    padding: 40px 0;
    background-color: #0b0708; /* Light background for contrast, adjust as needed */
}

/* Swiper Container Styling */
.swiper-container {
    width: 100%;
    height: 100%;
    padding: 0; /* Add padding for visual spacing */
}

/* Swiper Slide (Individual Card) Styling */
.swiper-slide {
    height: auto; /* Allow height to adjust */
    padding: 10px;
}

/* Card Styling to match the screenshot's dark overlay effect */
.case-study-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /*min-height: 473px;*/
    background-repeat: no-repeat;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    color: white;
    background-size: contain;
    background-position: top;
    background-color: #031928;
}

.case-study-card .nt-card-icon-bg {
    position: relative;
    padding: 18px 18px 0 18px;
}

.case-study-card .nt-card-icon-bg img {
    width: 45px;
}

.gradent-overlay {
    background: linear-gradient(to top, rgb(3 25 40) 0%, rgba(0, 0, 0, 0) 60%);
    display: inline-block;
    width: 100%;
    /*position: absolute;*/
    top: 0;
    min-height: 250px;
}
/* Dark overlay effect */
/*.case-study-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
        z-index: 1;
    }*/

/* Content box for padding and z-index */
.card-content {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
    padding: 20px;
    background: linear-gradient(180deg, #1e293b00 0, #0b0708 100%);
}

.about-card-content {
    min-height: 225px;
}
/* Title and Description Styling */
.card-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 5px;
    /*color:#06b6d4;*/
}

.card-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 15px;
    font-weight: 200;
    color: #cbcbcb;
    font-family:var(--nt-font-content);
}

/*about US Section*/
.inside-banner-heading {
    font-size: 3.75rem;
}

.nt-about-us-story {
    --nt-dark-bg: #0b0708;
    --nt-card-bg: #1e0a30;
    --nt-purple-accent: #8a2be2;
    padding: 80px 0 0 0;
    background-color: var(--nt-dark-bg);
    color: var(--nt-text-main);
}


.nt-story-block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.nt-story-block__content {
    flex: 2;
    min-width: 300px;
}

.nt-story-block__heading {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: normal;
}

.nt-story-block__text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--nt-text-secondary);
    margin-bottom: 15px;
}

.nt-btn-primary {
    background: linear-gradient(314deg, #9C27B0 0%, #2e44bf 100%);
    border: none;
    color: var(--nt-light);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .nt-btn-primary:hover {
        background: linear-gradient(314deg, #2e44bf 0%, #9C27B0 100%);
        color: var(--nt-heading-color);
        border-color: var(--nt-light);
    }

.nt-story-block__stats {
    flex: 1;
    min-width: 200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.nt-stat-card {
    background-color: var(--nt-card-bg);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.nt-stat-card__number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nt-purple-accent);
    line-height: 1.2;
}

.nt-stat-card__label {
    font-size: 0.8rem;
    color: var(--nt-text-secondary);
}

.nt-card-small-icon {
    color: var(--nt-primary);
    font-size: 1.5rem;
    border: 1px solid var(--nt-primary);
    padding: 10px;
    border-radius: 15px;
    display: inline-block;
}

.nt-service-card h4 {
    font-weight: 400;
    color: var(--nt-heading-color);
    margin-top: 10px;
}

.nt-service-card p {
    font-size: 0.9rem;
    color: var(--nt-paragraph-color);
    font-size: 16px;
    font-family:var(--nt-font-content);
}

.nt-services-section {
    padding: 40px 0;
    background-color: var(--nt-dark);
}
/* ================================================================
        ISOLATED SECTION: CONTACT PAGE (Prefix: nt-contact-page)
        ================================================================ */
.nt-contact-page {
    padding: 80px 0;
    background-color: #0b0708;
}

/* --- Contact Info Cards (Left Side) --- */
.nt-contact-card {
    background-color: #141414;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    /*min-height: 170px;*/
}

.nt-contact-card__icon {
    font-size: 1.5rem;
    color: var(--nt-primary);
    width: 40px;
    min-width: 40px;
}

.nt-contact-card__content {
    /*margin-left: 15px;*/
    word-break: break-word;
}

.nt-contact-card__content a {
    color:#fff;text-decoration:none;font-size: 0.9rem;line-height: 1.4;
}

.nt-contact-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.nt-contact-card__text, .nt-contact-card__details {
    font-size: 0.9rem;
    color: var(--nt-paragraph-color);
    margin-bottom: 0;
    line-height: 1.4;
    font-family:var(--nt-font-content);
}
/* --- Contact Form Styles (Right Side) --- */
.nt-contact-form-container {
    background-color: #141414;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 30px;
}

.nt-contact-form__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Styling for all form controls (input, select, textarea) */
.nt-form-control {
    background-color: var(--nt-secondary-dark) !important;
    color: var(--nt-light) !important;
    border: 1px solid #3a3a3a !important;
    padding: 12px 15px;
    border-radius: 5px;
    transition: border-color 0.3s;
}

    .nt-form-control:focus {
        box-shadow: 0 0 0 0.25rem #06b6d426 !important; /* Custom focus ring */
        border-color: #3a3a3a !important;
    }

    /* Placeholder color adjustment */
    .nt-form-control::placeholder {
        color: rgba(154, 154, 154, 0.6); /* Lighter secondary text for hints */
    }

/* Custom style for the large textarea */
.nt-form-textarea {
    min-height: 150px;
    resize: none;
}

/* Custom Submit Button */
.nt-submit-btn {
    background: linear-gradient(314deg, #9C27B0 0%, #2e44bf 100%);
    border: none;
    color: var(--nt-light);
    font-weight: 600;
    padding: 12px 20px;
    width: 100%;
    border-radius: 5px;
    transition: background-color 0.3s;
}

    .nt-submit-btn:hover {
        background: linear-gradient(314deg, #2e44bf 0%, #9C27B0 100%); /* Slightly brighter purple on hover */
    }

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .nt-contact-form-container {
        margin-top: 30px;
    }
}

/*Career Page*/
.careers-section {
    background-color: #0f172a;
    color: #ffffff;
    padding: 80px 0;
    font-family: Arial, sans-serif;
}

/* -------------------------------------- */
/* 2. Heading and Title Styling */
/* -------------------------------------- */
.careers-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Styling the purple accent on titles */
.careers-title-accent {
    color: #8a2be2; /* Violet/Purple color */
}

.careers-subtitle {
    font-size: 1.1rem;
    color: var(--nt-paragraph-color); /* Lighter text for the sub-heading */
    margin-bottom: 40px;
}

/* -------------------------------------- */
/* 3. Why Join Us Cards (Features) */
/* -------------------------------------- */
.careers-feature-card {
    background-color: #1e293b; /* Slightly lighter background for the card */
    border: 1px solid #1e293b; /* Subtle purple border */
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%; /* Ensure all cards have the same height */
    transition: all 0.3s ease;
}

    .careers-feature-card:hover {
        /*transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);*/
        /*transform: translateY(-5px);
    box-shadow: 0px 5px 39px #8a2be28a;
    border: solid 1px #8a2be2d1;*/
    }

.careers-feature-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #06b6d4; /* Purple icon color */
    /* Custom styling for the icon background (the purple square) */
    background-color: #06b6d426;
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-block;
}

.careers-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nt-heading-color);
    margin-bottom: 5px;
}

.careers-feature-text {
    font-size: 0.85rem;
    color: var(--nt-paragraph-color);
}

/* -------------------------------------- */
/* 4. Open Positions List */
/* -------------------------------------- */
.careers-job-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.careers-job-item {
    background-color: #1e293b; /* Same color as the feature cards */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
    border: solid 1px #29203c80;
}

    .careers-job-item:hover {
        /*background-color: #2a1842;*/
        /*transform: translateY(-5px);
    box-shadow: 0px 5px 39px #8a2be28a;
    border: solid 1px #8a2be2d1;*/
        transform: translate(0, 0) rotate(0) skew(0) skewY(0) scaleX(1.02) scaleY(1.02);
        border-color: 270 85% 60%;
        border: solid 1px #06b6d4;
    }

.careers-job-details {
    display: flex;
    align-items: center;
}

.careers-job-icon {
    font-size: 1.5rem;
    color: #06b6d4;
    margin-right: 20px;
    padding: 5px 10px;
    background: #06b6d426;
    border-radius: 12px;
}

.careers-job-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--nt-heading-color);
}

.careers-job-subtitle {
    font-size: 0.9rem;
    color: var(--nt-paragraph-color);
}

.careers-job-meta {
    display: flex;
    align-items: center;
    color: #b0a0d0;
    font-size: 0.85rem;
}

    .careers-job-meta span {
        margin-left: 15px;
        display: flex;
        align-items: center;
        color: var(--nt-paragraph-color);
    }

    .careers-job-meta i {
        margin-right: 5px;
        color: #968fa3;
    }

.careers-apply-btn {
    background-color: #8a2be2;
    color: #ffffff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s;
}

    .careers-apply-btn:hover {
        background-color: #a042ff;
        color: #ffffff;
    }

/* Responsive adjustments for mobile */
@media (max-width: 991.98px) {
    .careers-job-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .careers-job-meta {
        margin: 15px 0;
    }

    .careers-apply-btn {
        width: 100%;
        text-align: center;
    }

    .careers-job-meta span {
        margin-left: 0;
        margin-right: 15px; /* Add some space between meta items */
    }
}

/* ========================================================================= */
/* 1. AI ART STYLES SECTION (.ai-styles- prefix) */
/* ========================================================================= */
.ai-styles-section {
    background-color: #0f172a; /* Dark background matching the screenshot */
    color: #ffffff;
    padding: 40px 0;
}

.ai-styles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 15px; /* Matches the container padding */
        z-index: 1;
    position: relative;
}

.ai-styles-title-group {
    text-align: left;
}

.ai-styles-most-popular {
    color: #FFF; /* Yellow/Gold accent color */
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ai-styles-title {
    font-size: 2rem;
}

/* Navigation and Button Styling */
.ai-styles-nav-controls {
    display: flex;
    align-items: center;
}

.ai-styles-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #192537;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-right: 10px;
    /* Hide default Swiper arrows if custom ones are used */
    position: static;
    margin-top: 0;
    top: auto;
    transform: none;
}

    .ai-styles-arrow:hover {
        background: linear-gradient(314deg, #9C27B0 0%, #2e44bf 100%);
    }

/* Specific styling for the disabled arrow */
.swiper-button-disabled {
    opacity: 0.5;
    cursor: default;
}

/* Card Styling */
.ai-styles-card {
    height: 200px; /* Fixed height for visual consistency */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end; /* Push button to the bottom */
}

.ai-styles-card-title {
    background-color: rgb(30 41 59);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    margin: 20px;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.inner-banner {
    background: url(../images/inner-banner-1.jpg) scroll no-repeat center center;
    padding: 110px 0 80px 0;
    background-size: cover;
}

.inner-banner-1 {
    background: url(../images/inner-banner-2.jpg) scroll no-repeat center center;
    padding: 110px 0 80px 0;
    background-size: cover;
}

.inner-banner-2 {
    background: url(../images/inner-banner-3.jpg) scroll no-repeat center center;
    padding: 110px 0 80px 0;
    background-size: cover;
}

.inner-banner-3 {
    background: url(../images/inner-banner-4.jpg) scroll no-repeat center center;
    padding: 110px 0 80px 0;
    background-size: cover;
}

.inner-banner-4 {
    background: url(../images/inner-banner-5.jpg) scroll no-repeat center center;
    padding: 110px 0 80px 0;
    background-size: cover;
}

    .inner-banner .text-secondary.custom-para, .inner-banner-1 .text-secondary.custom-para,
    .inner-banner-2 .text-secondary.custom-para, .inner-banner-3 .text-secondary.custom-para,
    .inner-banner-4 .text-secondary.custom-para {
        color: var(--nt-paragraph-color) !important;
        font-family:var(--nt-font-content);
    }

.nt-btn-primary.custom-btn {
    padding: 10px;
    background: transparent;
    border: 1px solid #53457080;
    font-size: 12px;
    color: #ffffffc7;
}

    .nt-btn-primary.custom-btn:hover {
        background: linear-gradient(135deg, #06b6d4 0%, #0A1628 100%);
    }

.nt-about-us-story .nt-card-small-icon {
    bottom: 20px;
}

.inside-pg-slider .card-content h3 {
    font-size: 1.1rem;
    color: #fff;
}

.navbar-toggler-icon {
    background-image: url(../images/menu-bar.png);
}

.remove-hover .nt-service-card {
    border: none;
}

    .remove-hover .nt-service-card:hover {
        transform: none;
        box-shadow: none;
        border: none;
    }

.nt-about-us-story p, .ai-integrations-section p {
    color: var(--nt-paragraph-color);
    font-family:var(--nt-font-content);
}

.about-point-carousel .case-study-card {
    height: 310px;
}

#search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #00000096;
    transition: .5s ease-in-out;
    transform: translate(0, -100%) scale(0, 0);
    opacity: 0;
}

    #search.open {
        transform: translate(0, 0) scale(1, 1);
        opacity: 1;
    }

    #search input[type="text"] {
        width: 100%;
        color: #000000;
        background: #ffffff;
        font-size: 32px;
        text-align: center;
        border: 0;
        outline: 0;
        height: 66px;
    }

    #search .close {
        position: fixed;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        border: none;
        cursor: pointer;
    }

.search-btn {
    position: absolute;
    background: linear-gradient(135deg, hsl(270, 85%, 60%) 0%, hsl(290, 90%, 55%) 50%, hsl(320, 85%, 50%) 100%);
    right: 0;
    border-radius: 0;
    border: none;
    color: #fff;
    padding: 14px 30px;
    font-size: 25px;
}

.search-container {
    width: 90%;
    margin: 2px auto;
    position: relative;
}

.included-feature-card {
    background-color: transparent;
    border: 1px solid #06b6d4;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: border-color 0.3s;
}

/*.included-feature-card:hover {
            border-color: #8a2be2; 
        }*/

.included-checkmark {
    /* Custom styling for the checkmark icon background (the dark purple square) */
    background-color: #06b6d426; /* Darker square behind the checkmark */
    color: #06b6d4; /* Purple checkmark color */
    width: 24px;
    height: 24px;
    min-width: 24px; /* Fix size */
    min-height: 24px; /* Fix size */
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 15px;
}

.included-feature-text {
    font-size: 1rem;
    font-weight: 500;
    color: #a9a9a9;
}
/* Responsive adjustments for mobile */
@media (max-width: 767.98px) {
    .included-title {
        font-size: 2.2rem;
    }
}

.it-con h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.it-con ul li {
    font-size: 13px;
    color: #565761;
    font-weight: 500;
    line-height: 24px;
    list-style: none;
    width: 33%;
    display: inline-block;
}

    .it-con ul li a {
        color: #9a9a9a;
        font-size: 13px;
        text-decoration: none;
    }

        .it-con ul li a:hover {
            background: linear-gradient(135deg, hsl(270, 85%, 60%) 0%, hsl(290, 90%, 55%) 50%, hsl(320, 85%, 50%) 100%);
            -webkit-background-clip: text;
            color: transparent;
        }

.social-icons a {
    color: var(--nt-paragraph-color);
    border: solid 1px #545454;
}

    .social-icons a:hover {
        background: var(--nt-heading-color);
        -webkit-background-clip: text;
        color: transparent;
        border: solid 1px var(--nt-heading-color);
    }

.dpdp-logo {
    position: absolute;
    top: 80px;
    z-index: 111;
    right: 0;
    width: 109px;
    padding-right: 10px;
}

    .dpdp-logo img {
        width: 100%;
    }

.data-center-sol .case-study-card {
    min-height: 480px;
}

.point-content {
    font-size: 12px;
}
/*--new style 31/12/2025 start--*/
.case-studies-section p.text-secondary, .partner-naven p.text-secondary, .nt-contact-form-container .text-secondary {
    color: var(--nt-paragraph-color) !important;
    font-family:var(--nt-font-content);
}

.offering, .partner-naven, .nt-industries-section, .about-us {
    --nt-dark-bg: #0b0708;
    background-color: var(--nt-dark-bg);
    padding: 0 0 40px 0;
}

.included-feature-card .included-feature-text .text-white {
    color: var(--nt-heading-color) !important;
}
/*---slider hero start--*/
/* SECTION 1: HERO */

.gem-text-gradient {
    background: linear-gradient(90deg, var(--gem-orange), #ff8e7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gem-btn-fill {
    background: linear-gradient(90deg, #b87333, var(--ai-orange));
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
}

    .gem-btn-fill:hover {
        background: linear-gradient(90deg, var(--ai-orange), #b87333);
    }

.gem-btn-outline {
    border: 1.5px solid var(--gem-orange);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    background: transparent;
}

/* SECTION 2: MODEL GENERATOR & CARDS */
.gem-card {
    background: var(--gem-card-bg);
    border: 1px solid #222;
    border-radius: 28px;
    padding: 35px;
    height: 100%;
    transition: transform 0.3s ease;
    position: relative;
}
    /* Gradient Border Effect (As seen in first section) */
    .gem-card:hover, .gem-card.active {
        transform: translateY(-8px);
        border: 1px solid transparent;
        background-image: linear-gradient(var(--gem-card-bg), var(--gem-card-bg)), linear-gradient(135deg, var(--gem-orange), var(--gem-blue));
        background-origin: border-box;
        background-clip: content-box, border-box;
    }

.gem-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gem-orange), var(--gem-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

/* SECTION 3: ARTICLES */
.gem-article-card {
    background: var(--gem-card-bg);
    border-radius: 24px;
    border: 1px solid #222;
    overflow: hidden;
    transition: 0.3s;
}

    .gem-article-card:hover {
        border-color: var(--gem-orange);
    }

.gem-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin: 10px;
}

    .gem-img-wrapper img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 20px;
    }

.gem-user-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--gem-orange);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Utilities */
.gem-accent {
    color: var(--gem-orange);
}

.gem-muted {
    color: var(--text-muted);
    font-size: 16px;
}
/*---slider hero end--*/
.slider-home .carousel-caption {
    right: 5%;
    left: 5%;
}

.nav-link.active {
    color: #4faff0 !important;
    /*background: rgba(6, 182, 212, 0.15);*/
}

.navbar {
    --bs-navbar-nav-link-padding-x: 1.5rem;
}

.dropdown-menu .dropdown-item.active {
    background-color: #ff9800;
    color: #fff;
}
/*--breadcrumb--*/
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #fff;
}

    .breadcrumb a {
        color: #54a8ee;
        text-decoration: none;
    }
/*--breadcrumb--*/
.bggray {
    background: #f4f4f4;
}

.one-half {
    width: 50%;
    float: left;
}

.padd40 {
    padding: 40px 60px;
}

.one-half h4 {
    margin: 20px 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 42px;
}

    .one-half h4 span {
        display: block;
    }

.ai-styles-header .ai-styles-title-group p {
    color: var(--nt-paragraph-color);
    font-family:var(--nt-font-content);
}

.nt-card-content .list-unstyled {
    color: var(--nt-paragraph-color);
    font-size: 0.9rem;
}

    .nt-card-content .list-unstyled span.bullet-icon {
        color: #10B981;
    }

.badge.badges {
    margin: 1.5rem 0 0.5rem 0;
}
/*--section-two 02-01-2026 start--*/
.section-two {
    padding: 50px 0;
    background: #0b0708;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 60px 20px 40px; /* Top padding increased for clip-path */
    border-radius: 0 0 40px 40px;
    border-bottom: 3px solid var(--accent-color);
    box-shadow: 0px 10px 20px rgba(255, 77, 48, 0.15);
    position: relative;
    transition: transform 0.3s ease;
    clip-path: polygon(50% 0%, 100% 15%, 100% 100%, 0 100%, 0 15%);
    color: white;
    height: 100%; /* Ensures all cards are same height in a row */
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

    .icon-box i {
        font-size: 24px;
        color: var(--accent-color);
    }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

    .read-more i {
        font-size: 0.8rem;
        margin-left: 5px;
    }
/*--section-two 02-01-2026 end--*/
/*---ai-feature-section start ---*/
.ai-feature-section {
    background-color: #000;
    padding: 50px 0;
}
.ai-feature-section::before {
    content: '';
    display: block;
    position: absolute;
    right: 35px;
    margin-top: -4.5%;
    background: url(../images/graphic-elements-globe.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 106px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
}
@keyframes shape1 {
0% {
    transform: translateY(0) rotate(0deg);
}

100% {
    transform: translateY(50px) rotate(360deg);
}
}
/*.case-studies-section::before {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top:0;
    background: url(../images/graphic-elements1.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 106px;
    height: 110px;
    z-index: 0;
}*/

.ai-feature-card {
    background: #111111;
    border: 1px solid #222;
    border-radius: 24px;
    padding: 1px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    /*cursor: pointer;*/
}

    /* Gradient Border Effect on Hover (and Active for the first card) */
    .ai-feature-card:hover {
        border-color: transparent;
        /*background-image: linear-gradient(#111, #111), radial-gradient(circle at top left, #ff4d30, #304dff);*/
        background-origin: border-box;
        background-clip: content-box, border-box;
        transform: translateY(-5px);
        transition: .7s;
    }

/* Gradient Icon Box */
.ai-icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(314deg, #9C27B0 0%, #2e44bf 100%);
    color: white;
    font-size: 24px;
}

/* List Style Tweak */
.ai-feature-card ul li {
    display: flex;
    align-items: center;
    opacity: 0.9;
    font-size: 16px;
        color: #cbcbcb!important;
        font-family: var(--nt-font-content);
}

.ai-feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

.ai-feature-section p.text-secondary {
    color: var(--text-muted) !important;
    font-size: 16px;
    font-family:var(--nt-font-content);
}
/*---ai-feature-section end ---*/
/* ARTICLES SECTION STYLES */
.art-card {
    background: var(--ai-card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.3s;
}

/*.art-card:hover {
    border-color: var(--ai-orange);
}*/

.art-img-container {
    position: relative;
}

    .art-img-container img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 20px;
    }

.art-user-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(314deg, #9C27B0 0%, #2e44bf 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* BUTTONS */
.btn-gradient {
    background: linear-gradient(90deg, #b87333, var(--ai-orange));
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 8px;
}

.btn-outline-light {
    border: 1px solid #444;
    background: transparent;
    border-radius: 8px;
}

    .btn-outline-light:hover {
        background: #fff;
        color: #000;
    }

.art-wrapper p.text-secondary {
    color: var(--text-muted) !important;
    font-size: 16px;
    font-family:var(--nt-font-content);
}

.art-wrapper {
    padding: 10px 0 40px 0;
}
/*--new style 31/12/2025 end--*/
.accent-text {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
}

.section-padding-Technology {
    padding: 50px 0;
    background: #0b0708;
}
/*.section-padding-Technology h2 { font-size:1.5rem; }*/
.placeholder-box {
    background-color: var(--card-bg);
    border: 1px solid rgba(100, 255, 218, 0.1);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: 8px;
}

.custom-card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

    .custom-card:hover {
        transform: translateY(-5px);
    }

.check-lists {
    list-style-type: none;
    padding-left: 0;
}

    .check-lists li {
        line-height: 35px;
        color: #cbcbcb;
        margin-right: 8px;
        font-family:var(--nt-font-content);
    }

.bullet-icons {
    background-color: #9c27b054;
    color: #dc67f5;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 10px;
    margin-bottom: 20px;
}

.check-list {
    list-style-type: none;
    padding-left: 0;
}

    .check-list li {
        border-bottom: dotted 1px #262e42;
        margin-bottom: 20px;
        padding-bottom: 10px;
        color: #cbcbcb;
        margin-right: 8px;
        font-family:var(--nt-font-content);
    }

.ai-styles-header.ai-styles-header-technology {
    display: block;
}

.bullet-icon {
    background-color: #9c27b054;
    color: #dc67f5;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
    /*margin-right: 15px;
    margin-bottom: 47px;*/
    margin-right: 10px;
    margin-bottom: 55px;
    float: left;
}

.section-padding-Technology p.text-muted, .section-padding-Technology p {
    color: #cbcbcb !important;
    font-family:var(--nt-font-content);
}

.bg-info {
    background-color: #673ab730 !important;
}

.border-info {
    border-color: #673AB7 !important;
}

.art-wrapper h5 {
    margin: 10px 0 15px 0;
}
/*--AI-Platforms-&-Automation start here--*/
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgb(80 174 240 / 36%), rgb(103 58 183 / 35%));
    border: 1px solid #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin: .5rem 0;
}

.qoutes-para {
    color: #cbcbcb;
    font-family:var(--nt-font-content);
}
/*--AI-Platforms-&-Automation end here--*/
.slider-txt-container {
    position: absolute;
    bottom: 17%;
    z-index: 9;
    text-align: center;margin:0 auto;width: 100%;
}
.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    overflow: visible;
}
  /* Video inside same position */
    .visual-wrapper video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 9;
        background: #000;
        /* MASK USING IMAGE SHAPE */
        -webkit-mask-image: url("../images/hero-img.png");
        -webkit-mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        /*mask-image: url("image.png");*/
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
    }

    /* Image overlay */
    .visual-wrapper img {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        object-fit: contain;
        pointer-events: none;
    }
.slider-home {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1; /* Keeps it behind the main content */
    height: 100vh; /* Optional: makes it fill the screen height */
}

/* IMPORTANT: You must add a top margin to the section 
   immediately following the hero so it isn't hidden behind it. */
section.section-two {
    margin-top: 100vh; /* Adjust this to match your hero's height */
    background: #000; /* Ensure the next section has a background color */
    position: relative;
    z-index: 1;
}
.display-5 {
    font-size: 2.5rem;
}
.display-6 {
    font-size: calc(0.425rem + 1.1vw);
    font-weight: 600;
    line-height: 1.2;
    word-break: break-word;
    font-family:var(--nt-font-content);
}
.slider-home .gem-accent.small {
    font-family: var(--nt-font-content);
        font-size: calc(0.425rem + 1.1vw);
    font-weight: 600;
}

.solutions-section {
    padding: 80px 0;
}
.solutions-title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 50px;
}
/*.solution-card {
    background-color: #111111;
    border: none;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}*/
.solution-card {
    border: none;
    border-radius: 4px;
    overflow: hidden;
    background: url(../images/bg1.png) no-repeat scroll 0 0 #000000;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: 100% 100%;
    padding: 1px;
}
.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.solution-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.solution-body {
    padding: 30px;
}
.solution-body h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.solution-body p {
    font-size: 0.95rem;
    color: #d1d1d1;
    font-family:var(--nt-font-content);
}
.margin-top-20 {margin-top:20px;}
/*--new footers start here--*/
.footer {
    background-color: #000;
    color: #ccc;
    padding: 0 0 25px 0;
    font-size: 14px;
}
.footer a {
    color: #ccc;
    text-decoration: none;
    margin-right: 15px;
}
.footer a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-logo img {
    max-height: 40px;
}
.footer-links {
    line-height: 1.8;
}
.footer-social a {
    color: #ccc;
    font-size: 18px;
    margin-left: 0;
    margin-right:0;
}
.footer-social a:hover {
    color: #fff;
}
.footer-top-line {
    /*height: 2px;*/
    background: #ffffff;
    margin-bottom: 20px;
}
/*--new footers end here--*/
/* ===========================
   HORIZONTAL ACCORDION (DESKTOP)
=========================== */
.hz-accordion {
	display: flex;
	gap: 16px;
	/*min-height: 400px;*/ 
	height: 400px;
}
.hz-item {
	display: flex;
	background: #242424;
	border-radius: 18px;
	transition: flex 0.5s ease;
	overflow: hidden;
	flex: 0 0 80px;
}
.hz-item.active {
	flex: 1;
	background: #0c0111;
    box-shadow: 0px 0px 30px #8a2be2b0;
}
.hz-item.active .hz-tab {
	/*background: #da473d;*/
    background:linear-gradient(314deg, #9C27B0 0%, #2e44bf 100%);
}
/* TAB */
.hz-tab {
	width: 80px;
	border: none;
	background: transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 600;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	cursor: pointer;
	flex-shrink: 0;
        color: #fff;
}
/*.hz-tab span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8edf2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}*/

/* CONTENT */
.hz-content {
  flex: 1;
  padding: 30px;
  opacity: 0;
  overflow: auto;

  /* KEY FIX */
  transition:
    opacity 0.25s ease,
    visibility 0s linear 0.25s;

  visibility: hidden;
}
.hz-item.active .hz-content {
  opacity: 1;
  visibility: visible;

  /* Delay only on open */
  transition:
    opacity 0.35s ease 0.2s,
    visibility 0s linear 0s;
}
.hz-accordion h3 {color:#fff;}
.hz-accordion p, .hz-accordion ul li {color:#cbcbcb;font-family:var(--nt-font-content);}
.fw-bold {
    font-weight: 400 !important;
}
.case-studies-section .pt-bg-overley1 {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.1;
    background-attachment: scroll;
    background-position: bottom;
}
.footer {
    background: url(../images/globe-fotter.jpg) 0 -26px / cover #1e223a;
    display: inline-block;
    width: 100%;
    float: left;
    padding-top: 52px;
}
.carousel-item .custom-position {
    height: 100vh;
    width: 100%;
    object-fit: fill;
}
.Technology-col-4 .check-lists li {
    line-height: 25px; 
    white-space: nowrap;
}