/*--------------------------------------------------------------
# Modern About Page Styles
--------------------------------------------------------------*/

/* CSS Variables moved to main.css */

/*--------------------------------------------------------------
# Modern Hero Section
--------------------------------------------------------------*/
.modern-hero {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../../images/bg-2.jpg');
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background-size: cover;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Background Scattered Dots */
.background-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(185, 87, 255, 0.3);
    animation: bgDotPulse 4s ease-in-out infinite;
}

.dot-bg-1 {
    width: 4px;
    height: 4px;
    top: 8%;
    left: 12%;
    animation-delay: 0s;
}

.dot-bg-2 {
    width: 6px;
    height: 6px;
    top: 15%;
    right: 18%;
    animation-delay: 0.5s;
}

.dot-bg-3 {
    width: 3px;
    height: 3px;
    top: 25%;
    left: 8%;
    animation-delay: 1s;
}

.dot-bg-4 {
    width: 5px;
    height: 5px;
    top: 35%;
    right: 12%;
    animation-delay: 1.5s;
}

.dot-bg-5 {
    width: 4px;
    height: 4px;
    top: 45%;
    left: 15%;
    animation-delay: 2s;
}

.dot-bg-6 {
    width: 7px;
    height: 7px;
    top: 55%;
    right: 8%;
    animation-delay: 2.5s;
}

.dot-bg-7 {
    width: 3px;
    height: 3px;
    top: 65%;
    left: 22%;
    animation-delay: 3s;
}

.dot-bg-8 {
    width: 5px;
    height: 5px;
    top: 75%;
    right: 15%;
    animation-delay: 3.5s;
}

.dot-bg-9 {
    width: 4px;
    height: 4px;
    top: 85%;
    left: 10%;
    animation-delay: 4s;
}

.dot-bg-10 {
    width: 6px;
    height: 6px;
    top: 12%;
    left: 35%;
    animation-delay: 0.3s;
}

.dot-bg-11 {
    width: 3px;
    height: 3px;
    top: 22%;
    right: 35%;
    animation-delay: 0.8s;
}

.dot-bg-12 {
    width: 5px;
    height: 5px;
    top: 32%;
    left: 45%;
    animation-delay: 1.3s;
}

.dot-bg-13 {
    width: 4px;
    height: 4px;
    top: 42%;
    right: 45%;
    animation-delay: 1.8s;
}

.dot-bg-14 {
    width: 6px;
    height: 6px;
    top: 52%;
    left: 35%;
    animation-delay: 2.3s;
}

.dot-bg-15 {
    width: 3px;
    height: 3px;
    top: 62%;
    right: 35%;
    animation-delay: 2.8s;
}

.dot-bg-16 {
    width: 5px;
    height: 5px;
    top: 72%;
    left: 25%;
    animation-delay: 3.3s;
}

.dot-bg-17 {
    width: 4px;
    height: 4px;
    top: 82%;
    right: 25%;
    animation-delay: 3.8s;
}

.dot-bg-18 {
    width: 6px;
    height: 6px;
    top: 18%;
    left: 65%;
    animation-delay: 0.2s;
}

.dot-bg-19 {
    width: 3px;
    height: 3px;
    top: 28%;
    right: 65%;
    animation-delay: 0.7s;
}

.dot-bg-20 {
    width: 5px;
    height: 5px;
    top: 38%;
    left: 75%;
    animation-delay: 1.2s;
}

@keyframes bgDotPulse {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.3);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-pure-white);
    padding-top: 3rem;
}

.hero-badge {
    display: inline-block;
    background: var(--color-secondary);
    padding: 8px 20px;
    border-radius: var(--border-radius-large);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-pure-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out 0.2s both;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: var(--color-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(121, 121, 121, 0.2);
    border-radius: var(--border-radius-medium);
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    flex-direction: column;
    text-align: center;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    margin-top: 2rem;
}

.hero-description {
    margin-bottom: 1rem !important;
}

/*--------------------------------------------------------------
# Animated Graphics
--------------------------------------------------------------*/
.animated-graphics {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Central Tech Hub */
.central-hub {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.hub-core {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px #ff7f0080;
    animation: hubPulse 3s ease-in-out infinite;
}

.hub-core i {
    font-size: 1.2rem;
    color: var(--color-pure-white);
}

.hub-ring {
    position: absolute;
    border: 2px solid rgba(255, 127, 0, 0.3);
    border-radius: 50%;
    animation: ringRotate 8s linear infinite;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.ring-2 {
    width: 160px;
    height: 160px;
    animation-delay: -2s;
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation-delay: -4s;
}

/* Floating Tech Elements */
.floating-tech {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-element {
    position: absolute;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(185, 87, 255, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(185, 87, 255, 0.3);
    animation: techFloat 6s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition);
    z-index: 500;
}

.tech-element:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(185, 87, 255, 0.5);
}

.tech-element i {
    font-size: 0.8rem;
    color: var(--color-pure-white);
    margin-bottom: 2px;
}

.element-label {
    font-size: 0.5rem;
    color: var(--color-pure-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1rem;
}

/* Data Flow Lines */

.line-1 {
    top: 30%;
    left: 0;
    width: 40%;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    right: 0;
    width: 35%;
    animation-delay: 1s;
}

.line-3 {
    top: 70%;
    left: 0;
    width: 45%;
    animation-delay: 2s;
}

.line-4 {
    top: 20%;
    right: 0;
    width: 30%;
    animation-delay: 3s;
}

/* Pulsing Dots */
.pulse-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pulse-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #b957ffeb;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-1 {
    top: 15%;
    left: 40%;
    animation-delay: 0s;
}

.dot-2 {
    top: 35%;
    right: 20%;
    animation-delay: 0.5s;
}

.dot-3 {
    top: 65%;
    left: 10%;
    animation-delay: 1s;
}

.dot-4 {
    top: 75%;
    right: 10%;
    animation-delay: 1.5s;
}

.dot-5 {
    top: 20%;
    left: 10%;
    animation-delay: 2s;
}

/* Animations */
@keyframes hubPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 127, 0, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 127, 0, 0.8);
    }
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes techFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-10px) rotate(5deg);
    }
    50% { 
        transform: translateY(-20px) rotate(0deg);
    }
    75% { 
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes dataFlow {
    0% { 
        opacity: 0;
        transform: scaleX(0);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1);
    }
    100% { 
        opacity: 0;
        transform: scaleX(0);
    }
}

@keyframes dotPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5);
    }
}


.hero-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    z-index: 2;
    position: relative;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

.element-1 {
    top: 0%;
    left: 15%;
    animation-delay: 0s;
}

.element-2 {
    top: 5%;
    right: 10%;
    animation-delay: 0.5s;
}

.element-3 {
    top: 20%;
    left: 25%;
    animation-delay: 1s;
}

.element-4 {
    top: 25%;
    right: 25%;
    animation-delay: 1.5s;
}

.element-5 {
    top: 35%;
    left: 5%;
    animation-delay: 2s;
}

.element-6 {
    top: 45%;
    right: 5%;
    animation-delay: 2.5s;
}

.element-7 {
    top: 55%;
    left: 20%;
    animation-delay: 3s;
}

.element-8 {
    top: 65%;
    right: 20%;
    animation-delay: 3.5s;
}

.element-9 {
    top: 75%;
    left: 35%;
    animation-delay: 4s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(90deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    75% { transform: translateY(-15px) rotate(270deg); }
}

/*--------------------------------------------------------------
# Focus Section
--------------------------------------------------------------*/
.focus-section {
    padding: 3rem 1rem;
    background: var(--color-pure-white);
    position: relative;
}

.focus-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}

.focus-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.focus-main-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: var(--color-sub-text);
    margin-bottom: 1rem;
    text-align: left;
}

.title-part-1 {
    color: var(--color-sub-text);
}

.title-part-2 {
    color: var(--color-primary);
}

.focus-right {
    position: relative;
}

.objectives-list {
    position: relative;
}


.objective-item {
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

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


.objective-icon i {
    font-size: 1.5rem;
    color: var(--color-pure-white);
}

.objective-content {
    flex: 1;
    padding-top: 0.5rem;
}

.objective-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-sub-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.objective-description {
    color: var(--color-sub-text);
    margin: 0;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var( --color-text-black);
    margin: 0;
}

/*--------------------------------------------------------------
# Objectives Section
--------------------------------------------------------------*/

.objective-icon {
    width: 3rem;
    height: 3rem;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    margin-bottom: 1rem;
}

.objective-icon i {
    font-size: 1rem;
    color: var(--color-pure-white);
}

.objective-content {
    flex: 1;
}

.objective-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var( --color-text-black);
    margin-bottom: 1rem;
}


/*--------------------------------------------------------------
# Why Nagaland Section
--------------------------------------------------------------*/
.why-nagaland-section {
    padding: 0;
    margin: 0;
    background: var(--color-pure-white);
}

.why-nagaland-section .container-fluid {
    padding: 0;
    margin: 0;
}

.why-nagaland-section .row {
    margin: 0;
}

.why-nagaland-section .col-lg-6 {
    padding: 0;
}

.why-nagaland-image {
    position: relative;
    height: 20vh;
    min-height: 300px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.why-nagaland-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0;
    margin: 0;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(185, 87, 255, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    text-align: center;
    color: var(--color-pure-white);
}

.overlay-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.overlay-content p {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.why-nagaland-content {
    height: auto;
    min-height: auto;
    display: flex;
    align-items: center;
    background: var(--color-pure-white);
    padding: 3rem 1.5rem;
}

.why-nagaland-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var( --color-text-black);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.why-nagaland-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius-small);
}

.title-brackets {
    color: var(--color-text-black);
    font-weight: 800;
}

.main-statement {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-black);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.detailed-description {
    color: var(--color-sub-text);
    text-align: left;
    margin: 0;
}

/*--------------------------------------------------------------
# Why Nagaland Responsive - Tablet View (≥ 768px)
--------------------------------------------------------------*/
@media (min-width: 768px) {

    .focus-section {
        padding: 5rem 0;
    }

    .why-nagaland-image {
        height: 30vh;
        min-height: 600px;
    }
    
    .overlay-content h3 {
        font-size: 2.5rem;
    }
    
    .overlay-content p {
        font-size: 1.1rem;
    }
    
    .why-nagaland-content, .statistics-section {
        padding: 6rem 0;
    }
    
    .why-nagaland-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 2.5rem;
        padding: 1rem 0;
    }
    
    .main-statement {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .detailed-description {
        text-align: justify;
    }
}

/*--------------------------------------------------------------
# Why Nagaland Responsive - Desktop View (≥ 992px)
--------------------------------------------------------------*/
@media (min-width: 992px) {

    
    .content-wrapper {
        margin: 0 auto;
        padding: var(--side-padding);
    }

    .why-nagaland-image {
        height: 100vh;
    }
    
    .overlay-content h3 {
        font-size: 3rem;
    }
    
    .overlay-content p {
        font-size: 1.2rem;
    }
    
    .why-nagaland-content {
        height: 100vh;
    }
    
    .why-nagaland-title {
        font-size: 2.5rem;
    }
    
    .main-statement {
        font-size: 1.4rem;
    }
}

/*--------------------------------------------------------------
# Why Nagaland Section
--------------------------------------------------------------*/
.why-nagaland-section {
  background: linear-gradient(135deg, var(--color-pure-white) 0%, var(--color-pure-white) 100%);
  position: relative;
  overflow: hidden;
}

.why-nagaland-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.why-nagaland-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.image-container {
  position: relative;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-container:hover .image-overlay {
  transform: translateY(0);
}

.image-container:hover 

.overlay-content h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* Responsive Design for Why Nagaland - Mobile First */
@media (min-width: 768px) {

  .overlay-content h5 {
    font-size: 1.4rem;
  }
  
  .overlay-content p {
    font-size: 0.95rem;
  }
}

@media (min-width: 992px) {

  .overlay-content h5 {
    font-size: 1.5rem;
  }
  
  .overlay-content p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Organizers Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
/* Consolidated Animation Keyframes */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/*--------------------------------------------------------------
# Responsive Design - Tablet View (≥ 768px)
--------------------------------------------------------------*/
@media (min-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .vision-card {
        flex-direction: row;
        text-align: left;
        padding: 1.5rem;
    }
    
    .hero-visual {
        min-height: 400px;
        margin-top: 0;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .animated-graphics {
        height: 400px;
    }
    
    .central-hub {
        width: 100px;
        height: 100px;
    }
    
    .hub-core {
        width: 65px;
        height: 65px;
    }
    
    .hub-core i {
        font-size: 1.5rem;
    }
    
    .tech-element {
        width: 4rem;
        height: 4rem;
        padding: 0.75rem;
    }
    
    .tech-element i {
        font-size: 1rem;
    }
    
    .element-label {
        font-size: 0.55rem;
    }
    
    .focus-layout {
        gap: 2rem;
    }
    
    .objectives-list::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--color-light-grey);
        z-index: 1;
    }
    
    
    .objective-item {
        display: flex;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .objective-icon {
        width: 60px;
        height: 60px;
    }
    
    .objective-icon i {
        font-size: 1.5rem;
    }
    
    .objective-title {
        font-size: 1.25rem;
    }
    
    .objective-description {
        font-size: 0.95rem;
    }
}

/*--------------------------------------------------------------
# Responsive Design - Desktop View (≥ 992px)
--------------------------------------------------------------*/
@media (min-width: 992px) {
    .modern-hero {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        min-height: 500px;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .animated-graphics {
        height: 500px;
    }
    
    .central-hub {
        width: 120px;
        height: 120px;
    }
    
    .hub-core {
        width: 80px;
        height: 80px;
    }
    
    .hub-core i {
        font-size: 2rem;
    }
    
    .focus-layout {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
    }
    
    .tech-element {
        width: 5rem;
        height: 5rem;
        padding: 1rem;
    }
    
    .tech-element i {
        font-size: 1.2rem;
    }
    
    .element-label {
        font-size: 0.6rem;
    }
    
    .objective-icon {
        width: 70px;
        height: 70px;
    }
    
    .objective-icon i {
        font-size: 1.8rem;
    }
    
    .objective-title {
        font-size: 1.5rem;
    }
    
    .objective-description {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Responsive Design - Large Desktop View (≥ 1200px)
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .focus-main-title {
        font-size: 3rem;
    }
}

/*--------------------------------------------------------------
# Responsive Design - Extra Large Desktop View (≥ 1400px)
--------------------------------------------------------------*/
@media (min-width: 1400px) {
    .modern-hero {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}