
/*About PAGE*/
/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.4), rgba(216, 0, 216, 0.4));
    padding: 80px 0 30px;
    text-align: center;
}
        
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 45px;
    color: white;
    margin-bottom: 20px;
}
        
.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 30px 0;
    max-width: 1200px;
    margin: 0 auto;
}
        
.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 40px;
}
        
.story-text {
    padding: 0 20px;
}
        
.story-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 35px;
    color: #d800d8;
    margin-bottom: 30px;
}
        
.story-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-align: justify;
    font-size: 15px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}
        
.story-image img {
  width: 250px;
  height: 250px;
  align-items: center;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.1);
}
        
/* Mission Vision Values */
.mvv-section {
    background: rgba(50, 15, 54, 0.3);
    padding: 30px 0;
}
        
.mvv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 equal columns */
  gap: 30px;
}
     
.mvv-card {
    text-align: center;
    padding: 20px 10px;
    background: rgba(128, 0, 128, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(128, 0, 128, 0.3);
}
        
.mvv-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #800080, #d800d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
        
.mvv-icon i {
    font-size: 30px;
    color: white;
}
        
.mvv-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: white;
    margin-bottom: 20px;
        }
        
.mvv-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #cccccc;
    line-height: 1.8;
}




/* ------------------------
   KEYFRAMES
------------------------- */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeftTop {
    0% {
        opacity: 0;
        transform: translate(-100px, -100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slideInRightTop {
    0% {
        opacity: 0;
        transform: translate(100px, -100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* ------------------------
   ANIMATION CLASSES
------------------------- */

/* For text line stagger effect */
.animate-line {
    opacity: 0;
    animation: fadeSlideUp 1s ease-in forwards;
}
.delay-0 { animation-delay: 0.2s; }
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 0.8s; }

/* Scroll animation base */
.scroll-animate {
    opacity: 0;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    will-change: transform, opacity;
}

/* Animate from LEFT */
.animate-left { transform: translateX(-100px, -100px); }
.animate-left.in-view {
    opacity: 1;
    transform: translate(0 0);
}

/* Animate from RIGHT */
.animate-right { transform: translateX(100px, -100px); }
.animate-right.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* Animate from TOP */
.animate-top { transform: translateY(-100px); }
.animate-top.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Animate from BOTTOM */
.animate-bottom { transform: translateY(100px); }
.animate-bottom.in-view {
    opacity: 1;
    transform: translateY(0);
}




/* ============================= */
/* Responsive Design Starts Here */
/* ============================= */

/* --- Tablet (768px and below) --- */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 60px 0 20px;
    }
        
    .hero-title {
        font-weight: 800;
        font-size: 40px;
        margin-bottom: 10px;
}
        
    .hero-subtitle {
        font-weight: 400;
        font-size: 15px;
        max-width: 800px;
}

/* Story Section */
.story-section {
    padding: 20px 0;
}
        
.story-content {
    grid-template-columns: 2fr 0.5fr;
    gap: 50px;
    padding: 0 40px;
}
        
.story-text {
    padding: 0 20px;
}
        
.story-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: #d800d8;
    margin-bottom: 20px;
}
        
.story-description {
    font-size: 12px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 15px;
}
        
.story-image img {
  width: 150px;
  height: 150px;
}

.story-image:hover img {
  transform: scale(1.1);
}

/* Mission Vision Values */    

.mvv-grid {
  gap: 20px;
}
        
.mvv-icon {
    width: 40px;
    height: 40px;
}
        
.mvv-icon i {
    font-size: 25px;
}
        
.mvv-title {
    font-size: 20px;
    margin-bottom: 10px;
        }
        
.mvv-description {
    font-size: 10px;
}


}

/* --- Mobile (768px and below) --- */
@media (max-width: 768px) {
        .contact-hero {
        padding: 60px 0 20px;
    }
        
    .hero-title {
        font-size: 30px;
        margin-bottom: 8px;
}
        
    .hero-subtitle {
        font-size: 12px;
}

/* Story Section */
.story-section {
    padding: 10px 0;
}
        
.story-content {
    grid-template-columns: 1fr;
    padding: 0 40px;
}
        
.story-text {
    padding: 0 40px;
}
        
.story-title {
    font-size: 20px;
}
        
.story-description {
    font-size: 12px;
    margin-bottom: 10px;
}
        
.story-image img {
  display:none;
}


/* Mission Vision Values */    
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr; /* Exactly 3 equal columns */
  gap: 10px;
}

.mvv-container{
    padding: 0 40px;
}

.mvv-card {
    padding: 20px 10px;
    border-radius: 10px;
}

.mvv-icon {
    width: 40px;
    height: 40px;
}
        
.mvv-icon i {
    font-size: 25px;
}
        
.mvv-title {
    font-size: 20px;
    margin-bottom: 10px;
}
        
.mvv-description {
    font-size: 10px;
}

}