.ntc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.ntc-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-attachment: fixed;
}

.ntc-hero-content {
    color: white;
    z-index: 2;
    position: relative;
    animation: ntc-fadeInUp 1s ease-out;
}

.ntc-logo {
    width: 200px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.ntc-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff4757, #fa9f37, #d3c500);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ntc-gradientShift 3s ease-in-out infinite;
}

.ntc-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #cccccc;
}

.ntc-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: ntc-bounce 2s infinite;
    cursor: pointer;
}

/* Main Content Sections */
.ntc-content-section {
    padding: 80px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.ntc-content-section:nth-child(even) {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.ntc-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ntc-section-title {
    font-size: 2.5rem;
    color: #ffffff !important;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.ntc-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #ff4757, #3742fa);
    border-radius: 2px;
}

.ntc-section-subtitle {
    font-size: 1.2rem;
    color: #cccccc !important;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Layout */
.ntc-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ntc-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
}

.ntc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff4757, #3742fa);
}

.ntc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 71, 87, 0.2);
    border-color: #ff4757;
}

.ntc-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff4757, #3742fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.ntc-card-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.ntc-card-content {
    color: #cccccc;
    line-height: 1.7;
}

/* Vision Mission Cards */
.ntc-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.ntc-vm-card {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #444;
}

.ntc-vm-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.1) 0%, transparent 70%);
    animation: ntc-rotate 20s linear infinite;
}

.ntc-vm-title {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.ntc-vm-content {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Achievements Grid */
.ntc-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.ntc-achievement-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #333;
}

.ntc-achievement-item:hover {
    transform: scale(1.05);
    border-color: #ff4757;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.2);
}

.ntc-achievement-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff4757, #3742fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.ntc-achievement-text {
    color: #cccccc;
    font-weight: 500;
}

/* Timeline Styles */
.ntc-timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
}

.ntc-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #ff4757, #3742fa);
    border-radius: 2px;
}

.ntc-timeline-item {
    position: relative;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: calc(50% - 30px);
    border: 1px solid #333;
}

.ntc-timeline-item:nth-child(odd) {
    left: 0;
}

.ntc-timeline-item:nth-child(even) {
    left: calc(50% + 30px);
}

.ntc-timeline-dot {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: linear-gradient(45deg, #ff4757, #3742fa);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
}

.ntc-timeline-item:nth-child(odd) .ntc-timeline-dot {
    right: -38px;
}

.ntc-timeline-item:nth-child(even) .ntc-timeline-dot {
    left: -38px;
}

/* Future Goals */
.ntc-goals-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.ntc-goal-item {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid #444;
}

.ntc-goal-item::before {
    content: '★';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    opacity: 0.3;
    color: #ff4757;
}

/* Animations */
@keyframes ntc-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ntc-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(255, 71, 87, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(255, 71, 87, 0.5);
    }
}

@keyframes ntc-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes ntc-gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes ntc-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ntc-hero-title {
        font-size: 2.5rem;
    }

    .ntc-section-title {
        font-size: 2rem;
    }

    .ntc-vision-mission {
        grid-template-columns: 1fr;
    }

    .ntc-goals-list {
        grid-template-columns: 1fr;
    }

    .ntc-timeline::before {
        left: 30px;
    }

    .ntc-timeline-item {
        width: calc(100% - 60px);
        left: 60px !important;
    }

    .ntc-timeline-item:nth-child(odd) .ntc-timeline-dot,
    .ntc-timeline-item:nth-child(even) .ntc-timeline-dot {
        left: -38px;
        right: auto;
    }
}

/* Scroll animations */
.ntc-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.ntc-fade-in.ntc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Special black theme enhancements */
.ntc-intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
}

/* Glowing effects for black theme */
.ntc-card:hover .ntc-card-icon {
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

.ntc-timeline-dot {
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.6);
}

.ntc-vm-card:hover {
    box-shadow: 0 15px 35px rgba(255, 71, 87, 0.3);
}

.ntc-logoimg{
    width: 100%;
}