/*@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&amp;display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/* === Custom CSS Variables & Global Styles === */
:root {
    --nt-dark: #0f051a; /* Dark background */
    --nt-secondary-dark: #1e0a30; /* 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: 'DM Sans', sans-serif;
    --nt-gradient: linear-gradient(90deg, #8a2be2 0%, #d459ff 100%);
    --nt-text-purpule:#6c13bf;
    --nt-dark: #0f051a;
    --nt-secondary-dark: #1e0a30;
    --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 */
}

body {
    font-family: var(--nt-font);
    background-color: var(--nt-dark);
    color: var(--nt-light);
    line-height: 1.6;
    letter-spacing: 0.2px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* === 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: var(--nt-dark) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.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: 400;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

    .nt-nav-link:hover {
        color: var(--nt-primary) !important;
    }

/* --- Multi-level Dropdown Styles --- */
.dropdown-menu {
    background-color: var(--nt-secondary-dark); /* Dark background for menus */
    border: 1px solid rgba(138, 43, 226, 0.2);
    padding: 10px 0;
}

.dropdown-item {
    color: var(--nt-text-secondary);
    padding: 8px 20px;
    transition: background-color 0.2s, color 0.2s;
}

    .dropdown-item:hover, .dropdown-item:focus {
        background-color: rgba(138, 43, 226, 0.2);
        color: var(--nt-light);
    }

/* 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-color: var(--nt-secondary-dark);
    border-radius: 10px;
    padding: 30px;
    min-height: 220px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(138, 43, 226, 0.1);
    margin-bottom: 20px;
    min-height:415px;
}

    .nt-service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 5px 39px #8a2be28a;
        border: solid 1px #8a2be2d1;
    }

    .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;
}

.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: -37px;
    left: 20px;
    width: 57px;
    text-align: center;
    /*background: #8a2be2;*/
    background: linear-gradient(135deg, hsl(270, 85%, 60%) 0%, hsl(290, 90%, 55%) 50%, hsl(320, 85%, 50%) 100%);
}

/* === Footer Styles === */
.nt-footer {
    /*background-color: var(--nt-secondary-dark);*/
    background: url(../images/footer-background.jpg) no-repeat 0 0 #0f051a;
    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-light);
        margin-bottom: 20px;
    }

    .nt-footer ul {
        list-style: none;
        padding: 0;
    }

        .nt-footer ul li a {
            color: var(--nt-text-secondary);
            text-decoration: none;
            transition: color 0.2s;
            display: block;
            padding: 3px 0;
        }

            .nt-footer ul li a:hover {
                color: var(--nt-primary);
            }

.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-text-secondary);
}

/*home page single section css*/
.ai-integrations-section {
    background: #110022;
}

/* Styling the main title */
.ai-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Styling the benefits list */
.ai-benefits-list li {
    font-size: 1.1rem;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

/* Styling the custom bullet icon '»' */
.ai-benefits-list .bullet-icon {
    font-size: 1.5rem; /* Larger than the text */
    line-height: 1;
    color: #8a2be2; /* 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: #af58ff;
    font-weight: 600;
    transition: 0.9s;
    border: solid 1px rgb(138 43 226 / 61%);
    background: transparent;
}

    .ai-read-more:hover {
        background: linear-gradient(90deg, #5c00a3, #8a2be2);
        color: #ffffff;
    }

/* Placeholder for the AI graphic (to maintain layout space) */
.ai-graphic-placeholder {
    height: 400px;
    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 #8a2be28a;
        /*border: solid 1px #8a2be2d1;*/
    }

.gradient-text {
    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;
}

.case-studies-section {
    padding: 40px 0;
    background-color: #110022; /* Light background for contrast, adjust as needed */
}

/* Swiper Container Styling */
.swiper-container {
    width: 100%;
    height: 100%;
    padding: 0 15px; /* 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; /* Push content to the bottom */
    height: 450px; /* Fixed height for visual consistency */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 8px; /* Slightly rounded corners */
    overflow: hidden;
    color: white; /* Default text color */
}

    /* Dark overlay effect */
    .case-study-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* Gradient from transparent/light at the top to dark at the bottom */
        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, #26417300 0, #1e023a 100%);
}

    /* Title and Description Styling */
    .card-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .card-content p {
        font-size: 0.95rem;
        opacity: 0.9;
        margin-bottom: 15px;
        font-weight: 200;
    }

/*about US Section*/
.inside-banner-heading {
    font-size: 3.75rem;
}

.nt-about-us-story {
    --nt-dark-bg: #0c0217;
    --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: var(--nt-primary);
    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: var(--nt-light);
        color: var(--nt-text-purpule);
        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: 8px;
    border-radius: 5px;
    display: inline-block;
}

.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);
}

.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: var(--nt-dark);
}

/* --- Contact Info Cards (Left Side) --- */
.nt-contact-card {
    background-color: var(--nt-card-bg-light);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.nt-contact-card__icon {
    font-size: 1.5rem;
    color: var(--nt-primary);
    width: 40px;
    min-width: 40px;
}

.nt-contact-card__content {
    margin-left: 15px;
}

.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-text-secondary);
    margin-bottom: 0;
    line-height: 1.4;
}
/* --- Contact Form Styles (Right Side) --- */
.nt-contact-form-container {
    background-color: var(--nt-card-bg-light);
    border: 1px solid rgba(138, 43, 226, 0.2);
    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 rgba(138, 43, 226, 0.4) !important;
    padding: 12px 15px;
    border-radius: 5px;
    transition: border-color 0.3s;
}

    .nt-form-control:focus {
        box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.3) !important; /* Custom focus ring */
        border-color: var(--nt-primary) !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(135deg, hsl(270, 85%, 60%) 0%, hsl(290, 90%, 55%) 50%, hsl(320, 85%, 50%) 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-color: #a440ff; /* 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: #09080d;
    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: #968fa3; /* Lighter text for the sub-heading */
    margin-bottom: 40px;
}

/* -------------------------------------- */
/* 3. Why Join Us Cards (Features) */
/* -------------------------------------- */
.careers-feature-card {
    background-color:#130f1a80; /* Slightly lighter background for the card */
    border: 1px solid #29203c80; /* 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: #8a2be2; /* Purple icon color */
    /* Custom styling for the icon background (the purple square) */
    background-color: rgba(138, 43, 226, 0.2);
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-block;
}

.careers-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.careers-feature-text {
    font-size: 0.85rem;
    color: #b0a0d0;
}

/* -------------------------------------- */
/* 4. Open Positions List */
/* -------------------------------------- */
.careers-job-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.careers-job-item {
    background-color: #130f1a80; /* 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 #8a2be2d1;
    }

.careers-job-details {
    display: flex;
    align-items: center;
}

.careers-job-icon {
    font-size: 1.5rem;
    color: #8a2be2;
    margin-right: 20px;
    padding: 5px 10px;
    background: #9942f033;
    border-radius: 12px;
}

.careers-job-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.careers-job-subtitle {
    font-size: 0.9rem;
    color: #b0a0d0;
}

.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: #968fa3;
    }

    .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: #0b0114; /* 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 */
        }
        
        .ai-styles-title-group {
            text-align: left;
        }

        .ai-styles-most-popular {
            color: #FFF; /* Yellow/Gold accent color */
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .ai-styles-title {
            font-size: 3rem; 
        }

        /* 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: #2c2c2c;
            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-color: #404040;
        }
        
        /* 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(15 5 26 / 63%);
            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) 0 0 / cover;padding:110px 0 80px 0;}
.inner-banner-1 {background: url(../images/inner-banner-2.jpg) 0 0 / cover;padding:110px 0 80px 0;}
.inner-banner-2 {background: url(../images/inner-banner-3.jpg) 0 0 / cover;padding:110px 0 80px 0;}
.inner-banner-3 {background: url(../images/inner-banner-4.jpg) 0 0 / cover;padding:110px 0 80px 0;}
.inner-banner-4 {background: url(../images/inner-banner-5.jpg) 0 0 / cover;padding:110px 0 80px 0;}
.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: #b0a0d0!important;}
.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-color: #1c1528;
}
.nt-about-us-story .nt-card-small-icon {bottom:20px;}
.inside-pg-slider .card-content h3 {
    font-size: 1.1rem; 
}
.navbar-toggler-icon {   
    background-image: url(../images/menu-bar.png); 
}