html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
 background: linear-gradient(135deg, #1e3a8a, #1e40af);
color: #fff;
    color: white; 
    font-family: Poppins;
   
}

/* HERO */
.hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    
}
.hero img{
   width: 100%;
   height: 100%;
   object-fit: cover;
    margin-top: 80px;
}

@media(max-width:768){
    .hero{
        height: 60vh;
    }
}



.hero-text{
	margin-left:90px;
}

/* FLEX */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* GRADIENT TEXT */
.gradient-text {
    font-size: 42px;
    font-weight: bold;


background: linear-gradient(white);
   
    background-size: 600% 600%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    display: inline-block;

    animation: gradientMove 4s ease infinite;
}




@keyframes gradientMove {
    0% { background-position: 0% }
    50% { background-position: 100% }
    100% { background-position: 0% }
}

/* IMAGE */
.single-img {
    width: 500px;  
    height: 500px;

    border-radius: 50%;
    object-fit: cover;

    border: 4px solid #00f2ff;
    box-shadow: 0 0 30px rgba(0,242,255,0.7);

    transition: 0.3s;
}

.single-img:hover {
    transform: scale(1.05);
}
/* BUTTONS */
button {
    padding: 12px 25px;
    margin: 10px;
    border-radius: 30px;
    background: gold;
    border: none;
}

.outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* SOCIAL */
.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.social i {
    color: white;
}

.fb { background: #1877f2; }
.insta { background: #e4405f; }
.whatsapp { background: #25d366; }

.social a:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
}

/* ABOUT ANIMATION */
.about {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
}

.about.show {
    opacity: 1;
    transform: translateY(0);
}

/* ABOUT LAYOUT */
.about-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.about-img img {
    width: 320px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* TEXT */
.name {
    font-size: 36px;
    background: linear-gradient(90deg, #00f2ff, #ff4ecd);
    -webkit-background-clip: text;
    color: transparent;
}

.role { color: #ccc; }
.desc { color: #999; }
.highlight { color: #00f2ff; }

/* SECTION */
.section {
    padding: 60px;
    text-align: center;
}

.card {
    background: #111;
    padding: 20px;
    margin: 10px;
    border-radius: 15px;
}


/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000814;
    border-bottom: 2px solid #00f2ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    z-index: 1000;
}

.navbar .logo {
    color: #00f2ff;
    font-size: 20px;
    font-weight: bold;
}

.navbar nav a {
    margin: 0 15px;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.navbar nav a:hover {
    color: #00f2ff;
}

/* FIX OVERLAP */
.hero {
    padding-top: 100px;
}

/* ABOUT NEW */
.about-new {
    padding: 80px;
}

.about-card {
    display: flex;
    gap: 30px;
    background: #0f172a;
    padding: 30px;
    border-radius: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.about-card img {
    width: 150px;
    border-radius: 10px;
}

.stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stats div {
    border: 1px solid #333;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* TIMELINE */
.timeline-section {
    padding: 80px;
    
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    width: 3px;
    height: 100%;
    background: #00f2ff;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item .dot {
    position: absolute;
    left: 14px;
    width: 14px;
    height: 14px;
    background: #00f2ff;
    border-radius: 50%;
}

.timeline-item .content {
    margin-left: 50px;
    background: #111827;
    padding: 20px;
    border-radius: 15px;
}

.timeline-item span {
    color: #00f2ff;
}

/* ===== SOCIAL UPGRADE ===== */

.social {
    margin-top: 20px;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 10px;
    border-radius: 50%;
    position: relative;
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

/* ICON */
.social i {
    color: white;
    font-size: 20px;
    z-index: 2;
}

/* GLOW BACKGROUND */
.social a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(12px);
    opacity: 0.6;
    z-index: 1;
}

/* 🔥 HOVER EFFECT */
.social a:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 
        0 0 15px currentColor,
        0 0 30px currentColor,
        0 0 60px currentColor;
}

/* CLICK PRESS EFFECT */
.social a:active {
    transform: scale(0.95);
}

/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}


/* ===== ABOUT CARD HOVER ===== */
.about-card {
    transition: 0.4s;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0,242,255,0.2);
}


/* ===== TIMELINE HOVER ===== */
.timeline-item .content {
    transition: 0.3s;
}

.timeline-item .content:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0,242,255,0.3);
}


/* ===== BUTTON HOVER UPGRADE ===== */
button {
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px gold;
}


/* ===== IMAGE GLOW ANIMATION ===== */
.single-img {
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 20px rgba(0,242,255,0.5);
    }
    to {
        box-shadow: 0 0 40px rgba(0,242,255,1);
    }
}


/* ABOUT */
.about-content h2 {
    color: #00f2ff;
}

.about-desc {
    color: #aaa;
}

.about-boxes {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.about-boxes div {
    border: 1px solid  #333;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* MEDIA */
.media-section {
    padding: 80px;
    text-align: center;
    background:white;
   
}

.subtitle {
    color:#0000a0;
    margin-bottom: 40px;
}

.media-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.media-card {
    background: #111827;
    padding: 20px;
    border-radius: 20px;
    width: 280px;
    transition: 0.3s;
}

.media-card img {
    width: 100%;
    border-radius: 10px;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(0,242,255,0.3);
}

/* NAV LOGO */
.logo {
    font-size: 22px;
    font-weight: bold;
    background: linear-gradient(90deg, #00f2ff, #ff4ecd);
    -webkit-background-clip: text;
    color: transparent;
}

/* FIX SCROLL OFFSET */
section {
    scroll-margin-top: 100px;
}

/* MEDIA CENTER FIX */
.media-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
}

/* IMAGE PLACEHOLDER */
.img-placeholder {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1f2937, #111827);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    border: 2px dashed #333;
}

.media-card:hover  {
    color: #00f2ff;
    border-color: #00f2ff;
}
.timeline-section h2 {
    text-align: center;
    width: 100%;
}

.media-card h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #00f2ff;
}

.media-card p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #bbb;
    text-align: justify;
}

/* ===== MEDIA UPGRADE ===== */
.media-card {
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 9px;
    border-radius: 9px;
    width:100px;
  
    transition: 0.4s;
    border: 1px solid rgba(0,242,255,0.2);
    box-shadow: 0 0 15px rgba(0,242,255,0.1);
}

/* HOVER EFFECT */
.media-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 0 20px rgba(0,242,255,0.5),
        0 0 40px rgba(255,78,205,0.3);
}

/* TITLE GLOW */
.media-card h3 {
    color: #00f2ff;
    text-shadow: 0 0 10px rgba(0,242,255,0.7);
}

/* IMAGE GLOW */
.img-placeholder {
    box-shadow: 0 0 15px rgba(0,242,255,0.2);
}

/* ===== TIMELINE UPGRADE ===== */

/* LINE GLOW */
.timeline::before {
    background: linear-gradient(#00f2ff, #ff4ecd);
    box-shadow: 0 0 10px #00f2ff;
}

/* DOT GLOW */
.timeline-item .dot {
    background: #00f2ff;
    box-shadow: 
        0 0 10px #00f2ff,
        0 0 20px #00f2ff;
}

/* CARD STYLE */
.timeline-item .content {
    background: linear-gradient(135deg, #111827, #020617);
    padding: 20px;
    border-radius: 15px;
    transition: 0.4s;
    border: 1px solid rgba(0,242,255,0.2);
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* HOVER EFFECT */
.timeline-item .content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 0 20px rgba(0,242,255,0.5),
        0 0 40px rgba(255,78,205,0.3);
}

/* YEAR TEXT */
.timeline-item span {
    color: #00f2ff;
    font-weight: bold;
}

/* TITLE */
.timeline-item h3 {
    color: #fff;
}

/* ===== MEDIA FINAL FORCE STYLE ===== */
.media-card {
    background: linear-gradient(135deg, #1e293b, #020617) !important;
    border: 1px solid #00f2ff !important;
    box-shadow: 0 0 15px #00f2ff !important;
    transition: 0.4s;
}

.media-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 0 20px #00f2ff,
        0 0 40px #ff4ecd !important;
}

.media-card h3 {
    color: #00f2ff !important;
}

.media-card p {
    color: #ccc !important;
}

/* ===== TIMELINE FINAL FORCE STYLE ===== */

/* LINE */
.timeline::before {
    background: linear-gradient(#00f2ff, #ff4ecd) !important;
    box-shadow: 0 0 10px #00f2ff !important;
}

/* DOT */
.timeline-item .dot {
    background: #00f2ff !important;
    box-shadow: 
        0 0 10px #00f2ff,
        0 0 20px #00f2ff !important;
}

/* CARD */
.timeline-item .content {
    background: linear-gradient(135deg, #1e293b, #020617) !important;
    border: 1px solid #00f2ff !important;
    box-shadow: 0 0 10px rgba(0,242,255,0.3) !important;
    transition: 0.4s;
}

.timeline-item .content:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 0 20px #00f2ff,
        0 0 40px #ff4ecd !important;
}

/* TEXT */
.timeline-item span {
    color: #00f2ff !important;
    font-weight: bold;
}

.timeline-item h3 {
    color: #fff !important;
}

/* MEDIA CARD FIX WITHOUT PLACEHOLDER */
.media-card {
    width: 260px;
    padding: 15px;
}

/* REAL IMAGE CONTROL */
.media-card img {
    width: 100%;
    height: 140px;   
    object-fit: cover;
    border-radius: 10px;
}

/* TEXT CONTROL */
.media-card p {
    font-size: 13px;
    line-height: 1.4;
    max-height: 55px;
    overflow: hidden;
}

/* TITLE SIZE */
.media-card h3 {
    font-size: 16px;
    margin-top: 10px;
}
.media-grid {
    align-items: stretch;
}

/* FINAL HEIGHT FORCE FIX */
.media-card {
    height: 260px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.media-card img {
    height: 120px !important;
    object-fit: cover;
}

.media-card h3 {
    font-size: 14px !important;
    margin: 8px 0;
}

.media-card p {
    font-size: 12px !important;
    line-height: 1.4 !important;
    max-height: 50px !important;
    overflow: hidden !important;
}
/* ===== FINAL MEDIA CARD SIZE FIX ===== */

.media-card {
    width: 220px !important;
    height: 160px !important;
    padding: 7px !important;
}

/* IMAGE SMALL */
.media-card img {
    height: 100px !important;
}

/* TITLE SMALL */
.media-card h3 {
    font-size: 13px !important;
    margin: 5px 0 !important;
}

/* TEXT SMALL + CUT */
.media-card p {
    font-size: 11px !important;
    line-height: 1.3 !important;
    max-height: 35px !important;
    overflow: hidden !important;
}

/* GAP FIX */
.m-media-grid {
    gap: 15px !important;
}

/* ===== FINAL PERFECT FIX ===== */

.media-card {
    height: auto !important;   
    padding: 12px !important;
}

/* IMAGE */
.media-card img {
    width: 100%;
    height: 280px !important;   
    object-fit: cover;
    border-radius: 10px;
}

/* TEXT */
.media-card h3 {
    font-size: 15px !important;
    margin: 10px 0 5px;
}

.media-card p {
    font-size: 13px !important;
    line-height: 1.5;
}

/* ===== CARD GAP FIX ===== */

.media-grid {
    display: flex;
    justify-content: center;
    gap: 27px !important;   
    flex-wrap: wrap;
}

/* extra breathing space */
.media-card {
    margin: 10px 0;   
}

.timeline-section {
    padding: 80px;
    text-align: center;
}

.subtitle {
    color: #aaa;
    margin-bottom: 40px;
}

/* ===== SAME SIZE FOR ALL IMAGES ===== */

.media-card img {
    width: 100%;
    height: 180px;       
    object-fit: cover;   
    border-radius: 10px;
    display: block;
}


/* ===== FINAL UNIVERSAL IMAGE SIZE FIX ===== */

/* Card auto height */
.media-card {
    height: auto !important;
    display: flex;
    flex-direction: column;
}

/* Image same size for ALL */
.media-card img {
    width: 100% !important;
    height: 150px !important;   
    object-fit: cover !important;
    border-radius: 10px;
    display: block;
}

/* Text visible rahe */
.media-card h3 {
    font-size: 15px !important;
    margin: 10px 0 5px;
}

.media-card p {
    font-size: 13px !important;
    line-height: 1.5;
    max-height: none !important;   
    overflow: visible !important;
}





.about-new {
    padding: 80px;
    text-align: center;
   
    
}

/* TITLE */
.about-title {
    font-size: 32px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00f2ff, #ff4ecd);
    -webkit-background-clip: text;
    color: transparent;
}

/* TEXT */
.about-text {
    max-width: 900px;
    margin: auto;
    margin-bottom: 15px;
    color: white;
    line-height: 1.7;
    font-size: 15px;
}

/* CARDS CONTAINER */
.about-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* SINGLE CARD */
.about-card-box {
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 20px;
    width: 180px;
    border-radius: 15px;

    border: 1px solid rgba(0,242,255,0.3);

    /* 🔥 SHADOW EFFECT */
    box-shadow: 
        0 0 15px rgba(0,242,255,0.3),
        0 0 30px rgba(255,78,205,0.2);

    transition: 0.4s;
}

/* HOVER */
.about-card-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 0 25px #00f2ff,
        0 0 50px #ff4ecd;
}

/* NUMBER */
.about-card-box h3 {
    font-size: 28px;
    color: #00f2ff;
    margin-bottom: 5px;
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;

    /* 🔥 Gradient */
    background: linear-gradient(270deg, #00f2ff, #ff4ecd, #00f2ff);
    background-size: 400% 400%;
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* ✨ Glow */
    text-shadow: 
        0 0 10px rgba(0,242,255,0.7),
        0 0 20px rgba(0,242,255,0.6),
        0 0 40px rgba(255,78,205,0.5);

    /* 🎬 Animation */
    animation: glowMove 5s ease infinite;
}

/* 🔥 Smooth gradient animation */
@keyframes glowMove {
    0% { background-position: 0% }
    50% { background-position: 100% }
    100% { background-position: 0% }
}

/* M-Media Section */
#m-media {
	padding: 50px 20px;
	 background-color: #f9f9f9;
	  text-align: center;
	 }
 #m-media h1 {
  font-size: 2.5rem;
   margin-bottom: 10px;
    }
  #m-media .subtitle { 
  font-size: 1rem;
   color: #555; 
   margin-bottom: 40px;
    } /* Grid Layout */
     .media-grid {
    display: flex;
     justify-content: center;
      gap: 20px; 
      flex-wrap: wrap;
       /* responsive */
        margin-bottom: 30px; 
        } /* Individual Media Card */
        
        .media-card {
         
         flex: 1 1 300px;
         max-width: 350px; 
         height: 250px;
         overflow: hidden; 
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
       transition: transform 0.3s;
       position: relative;
                }
   .media-card img {
    width: 100%;
    
    height: 100%; 
     object-fit: cover; 
     display: block;
     transition: transform 0.3s;
         } /* Hover effect */
      .media-card:hover img {
      transform: scale(1.05);
          } 
      #m-media h1 { 
      color: black;
      }           
.logo-monogram {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Arial Black', sans-serif;
}

/* VS Monogram container */
.vs-logo {
    position: relative;
    font-size: 5rem; /* V bada */
    font-weight: 900;
    width: 5rem;
    height: 5rem;
}

/* V letter styling */
.v-letter {
    color: #ff4ecd;
    background: linear-gradient(135deg, #ff4ecd, #00f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
    display: inline-block;
    position: relative;
}

/* S letter stylish inside V */
.s-letter {
    position: absolute;
    top: 0.1em;
    left: 0.5em;
    font-size: 2.5rem;
    color: #00f2ff;
    font-weight: 900;
    transform: rotate(-25deg); /* tilt S for style */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Name text next to VS */
.name-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}


/* ===== AWARDS ===== */
.awards-section {
    padding: 80px;
    text-align: center;
}

.awards-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.award-card {
    width: 300px;
    background: linear-gradient(135deg, #0f172a, #020617);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(0,242,255,0.3);
}

.award-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.award-card h3 {
    padding: 15px;
    font-size: 16px;
    color: #00f2ff;
}

.award-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 20px #00f2ff;
}

/* ===== CONTACT NEW ===== */

.contact-section {
    padding: 80px;
    text-align: center;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* FORM */
.contact-form {
    width: 500px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
}

.contact-form .row {
    display: flex;
    gap: 15px;
}

.contact-form button {
    background: gold;
    border-radius: 25px;
}

/* INFO */
.contact-info {
    text-align: left;
    color: #ccc;
}

.contact-info p {
    margin: 10px 0;
    
}

.contact-info i {
    color: #00f2ff;
    margin-right: 10px;
}

/* SOCIAL */
.contact-social i {
    margin: 10px;
    font-size: 18px;
    cursor: pointer;
}

.contact-social i:hover {
    color: #00f2ff;
}

/* ===== CONTACT ICON PREMIUM ===== */

.contact-info a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.contact-info a:hover {
    color: #00f2ff;
}

/* ICON STYLE */
.contact-info i {
    background: #111827;
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;

    /* 🔥 SHADOW */
    box-shadow: 
        0 0 10px rgba(0,242,255,0.4),
        0 0 20px rgba(0,242,255,0.3);

    transition: 0.3s;
}

/* HOVER GLOW */
.contact-info a:hover i {
    transform: scale(1.1);
    box-shadow: 
        0 0 15px #00f2ff,
        0 0 30px #00f2ff,
        0 0 60px #ff4ecd;
}

/* SOCIAL ICONS */
.contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;
    margin: 10px;

    border-radius: 50%;
    background: #111827;

    box-shadow: 
        0 0 10px rgba(0,242,255,0.4),
        0 0 20px rgba(0,242,255,0.3);

    transition: 0.4s;
}

/* SOCIAL ICON */
.contact-social i {
    color: white;
    font-size: 18px;
}

/* HOVER EFFECT */
.contact-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 0 20px #00f2ff,
        0 0 40px #ff4ecd;
}

/* CLICK EFFECT */
.contact-social a:active {
    transform: scale(0.95);
}

/* ===== AWARDS FINAL ===== */

.awards-section {
    padding: 80px;
    text-align: center;
}

.awards-section h1 {
    margin-bottom: 40px;
}

/* GRID */
.awards-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* CARD */
.award-card {
    width: 320px;
    background: linear-gradient(135deg, #0f172a, #020617);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(0,242,255,0.3);
}

/* IMAGE */
.award-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* TITLE */
.award-card h3 {
    font-size: 16px;
    color: #00f2ff;
    padding: 10px 15px 5px;
}

/* DESCRIPTION */
.award-card p {
    font-size: 13px;
    color: #ccc;
    padding: 0 15px 15px;
    line-height: 1.5;
    text-align: left;
}

/* HOVER */
.award-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 0 20px #00f2ff,
        0 0 40px #ff4ecd;
}

/* ===== FINAL HINDI FIX ===== */

body {
    font-family: 'Noto Sans Devanagari', 'Noto Sans', sans-serif;
}

/* Fix Hindi direction */
p, h1, h2, h3 {
    direction: ltr;
}

/* CONTACT ICON GLOW */
.contact-info i {
    background: #111827;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2ff;
}

.contact-info a:hover i {
    box-shadow: 0 0 20px #00f2ff, 0 0 40px #ff4ecd;
}



/* ===== AWARDS BACKGROUND FIX ===== */

.awards-section {
    background: linear-gradient(135deg, #000814, #001d3d); /* dark blue gradient */
    color: white;
}

/* Heading white */
.awards-section h1 {
    color: #fff;
}

/* Card background darker + premium */
.award-card {
    background: linear-gradient(135deg, #0f172a, #020617) !important;
    border: 1px solid rgba(0,242,255,0.3);
    box-shadow: 0 0 10px rgba(0,242,255,0.2);
}

/* Hover glow */
.award-card:hover {
    box-shadow: 
        0 0 20px #00f2ff,
        0 0 40px #ff4ecd;
}

/* Text color fix */
.award-card p {
    color: #ccc;
}

.award-card h3 {
    color: #00f2ff;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 20px; /* card ke beech me space */
}
.media-card img {
    width: 100%;
    display: block;
}


/* ===== IMAGE ZOOM EFFECT (AWARDS + GALLERY) ===== */

/* IMPORTANT: overflow hidden */
.award-card,
.media-card {
    overflow: hidden;
}

/* IMAGE TRANSITION */
.award-card img,
.media-card img {
    transition: transform 0.4s ease;
}

/* HOVER ZOOM */
.award-card:hover img,
.media-card:hover img {
    transform: scale(1.1);
}


/* card container */
.media-card,
.award-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* image zoom smooth */
.media-card img,
.award-card img {
    transition: transform 0.4s ease;
}

/* hover pe zoom */
.media-card:hover img,
.award-card:hover img {
    transform: scale(1.15);
}

/* 🔍 overlay icon */
.media-card::after,
.award-card::after {
    content: "\f002"; /* search icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);

    font-size: 30px;
    color: white;

    background: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

/* hover pe icon show */
.media-card:hover::after,
.award-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}




/* ===== FORCE IMAGE ZOOM FIX ===== */

.media-card img,
.award-card img {
    transition: transform 0.4s ease !important;
}

/* HOVER ZOOM FORCE */
.media-card:hover img,
.award-card:hover img {
    transform: scale(1.2) !important;
}

/* ================= FINAL GALLERY FIX (LAST LINE) ================= */

#m-media .media-card {
    flex: 1 1 390px !important;
    max-width: 450px !important;
    height: 320px !important;

    border-radius: 18px !important;
    overflow: hidden !important;

    background: linear-gradient(135deg, #1e293b, #020617) !important;
    border: 1px solid rgba(0,242,255,0.4) !important;

    box-shadow: 
        0 0 20px rgba(0,242,255,0.3),
        0 0 40px rgba(255,78,205,0.2) !important;

    transition: all 0.4s ease !important;
}

#m-media .media-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 18px !important;
}

#m-media .media-card:hover {
    transform: translateY(-12px) scale(1.04) !important;

    box-shadow: 
        0 0 25px #00f2ff,
        0 0 50px #ff4ecd !important;
}


/* ===== TIMELINE PERFECT ALIGN ===== */

.timeline-wrapper {
    position: relative;
    margin-top: 120px;
}

/* 🌈 CURVE POSITION */
.rainbow-line {
    position: absolute;
    top: -55px;   /* 🔥 adjust: wave dot ko hit kare */
    left: 0;
    width: 100%;
    z-index: 1;
}

/* CARDS LINE */
.timeline-rainbow {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* CARD */
.t-card {
    width: 280px;
    padding: 20px;
    border-radius: 18px;
    text-align: center;
    position: relative;

    background: linear-gradient(135deg, #0f172a, #020617);
    border: 1px solid rgba(0,242,255,0.4);
    box-shadow: 0 0 20px rgba(0,242,255,0.3);
}

/* 🔥 DOT EXACT TOP CENTER TOUCH */
.t-card::before {
    content: "";
    position: absolute;

    top: 0;   /* 🔥 card ko TOUCH */
    left: 50%;
    transform: translate(-50%, -50%); /* 🔥 half upar */

    width: 18px;
    height: 18px;
    border-radius: 50%;

    background: #00f2ff;

    box-shadow:
        0 0 10px #00f2ff,
        0 0 25px #ff4ecd;
}
 
/* TEXT STYLE */
.t-card span {
    font-size: 15px;
    font-weight: bold;
    color: #00f2ff;
}

.t-card h3 {
    font-size: 20px;
    margin-top: 8px;

    background: linear-gradient(90deg, #00f2ff, #ff4ecd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Media Section Heading */
#media h1 {
    font-size: 3rem; 
    font-weight: 700; 
    margin-bottom: 20px; 
}

/* Media Section Paragraph */
#media .subtitle {
    font-size: 1.5rem; 
    line-height: 1.6;
    margin-bottom: 40px; 
}

/* Media Section */
#media h1,
#timeline h1 {
    font-size: 3rem; 
    font-weight: 700;
    margin-bottom: 20px;
}

#media .subtitle,
#timeline .subtitle {
    font-size: 1.5rem; 
    line-height: 1.6;
    margin-bottom: 40px;
}



/* Section Headings */
#media h1,
#timeline h1,
#awards h1 {
    font-size: 3rem;       
    font-weight: 700;
    margin-bottom: 20px;
}

/* Section Subtitles / Description */
#media .subtitle,
#timeline .subtitle,
#awards .subtitle {
    font-size: 1.5rem;     
    line-height: 1.6;
    margin-bottom: 40px;
}



/* Gallery Heading & Subtitle */
#m-media h1 {
    font-size: 3rem;       
    font-weight: 700;
    margin-bottom: 20px;
}

#m-media .subtitle {
    font-size: 1.5rem;     
    line-height: 1.6;
    margin-bottom: 40px;
}




/* About Section Cards Bigger */
.about-cards .about-card-box {
    padding: 30px;           
    margin: 15px;            
    font-size: 1.2rem;      
    text-align: center;
    border-radius: 12px;     
    box-shadow: 0 6px 15px rgba(0,0,0,0.1); 
    transition: transform 0.3s ease;
}

.about-cards .about-card-box h3 {
    font-size: 2.2rem;       
    color: #ff4ecd;          
    margin-bottom: 10px;
}

.about-cards .about-card-box span {
    font-size: 1.1rem;       
    color:white;
}

/* Hover effect optional */
.about-cards .about-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}



.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: top 0.4s ease;

    width: 92%;
    max-width: 1200px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 25px;
    border-radius: 50px;

    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(0,242,255,0.3);

    z-index: 1000;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 25px;
}

/* LINKS */
.nav-links a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

/* UNDERLINE ANIMATION */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00f2ff, #ff4ecd);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #00f2ff;
    margin: 4px;
    transition: 0.3s;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;

        flex-direction: column;
        gap: 20px;

        width: 220px;
        padding: 20px;

        border-radius: 20px;

        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(15px);

        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;

        transition: 0.3s;
    }

    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
}


/* FORM FIELD SIZE & SPACING */
.contact-form input,
.contact-form textarea {
    padding: 18px !important;
    font-size: 16px !important;
    margin: 15px 0 !important;
    border-radius: 10px !important;
}


.contact-form {
    width: 100% !important;
    max-width: 600px !important;
}
/* MEDIA SECTION TEXT BLACK */
.media-section h1 {
    color: #000;   /* heading black */
}

.media-section .subtitle {
    color: #000;   /* subtitle black */
}
/* ABOUT TITLE BLACK */

/* ABOUT-ME H2 BLACK */
/* ABOUT TITLE BLACK FIX */
#about-me .about-title {
    color: #000 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #000 !important;
}



/* WRAPPER */
.timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 180px auto 0; /* 🔥 space for big curve */
}

/* CURVE */
.curve-line {
    position: absolute;
    top: -140px;   /* 🔥 curve card ko touch karega */
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
}

.curve-line path {
    fill: none;
    stroke: #00f2ff;
    stroke-width: 4;

    /* glow */
    filter: drop-shadow(0 0 10px #00f2ff)
            drop-shadow(0 0 25px #ff4ecd);
}

/* CARDS ROW */
.timeline-rainbow {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* CARD */
.t-card {
    width: 240px;
    padding: 20px;
    border-radius: 18px;
    text-align: center;
    position: relative;

    background: linear-gradient(135deg, #0f172a, #020617);
    border: 1px solid rgba(0,242,255,0.4);
}

/* 🔥 DOT EXACT TOUCH */
.t-card::before {
    content: "";
    position: absolute;

    top: -35px;   /* 🔥 exact curve touch */
    left: 50%;
    transform: translateX(-50%);

    width: 18px;
    height: 18px;
    border-radius: 50%;

    background: #00f2ff;

    box-shadow:
        0 0 10px #00f2ff,
        0 0 25px #ff4ecd;
}







/* 🔥 DOT */
.t-card::before {
    content: "";
    position: absolute;

    top: -35px;
    left: 50%;
    transform: translateX(-50%);

    width: 18px;
    height: 18px;
    border-radius: 50%;

    background: #00f2ff;

    box-shadow:
        0 0 10px #00f2ff,
        0 0 25px #ff4ecd;
}


.t-card::after {
    content: "";
    position: absolute;

    top: -17px;   
    left: 50%;
    transform: translateX(-50%);

    width: 3px;
    height: 40px;   

    background: linear-gradient(#00f2ff, #ff4ecd);

    box-shadow: 
        0 0 10px #00f2ff,
        0 0 20px #ff4ecd;
}
.t-card:nth-child(2)::after,
.t-card:nth-child(3)::after {
    top: -85px;  
    height: 85px; 
}

/* ===== HARD OVERRIDE (FINAL FIX) ===== */
/* ===== ABOUT SECTION WHITE ONLY ===== */
#about-me {
    background: #ffffff !important;
}

/* TEXT BLACK */
#about-me .about-text {
    color: #000 !important;
}

/* TITLE BLACK (gradient hatao sirf yaha) */
#about-me .about-title {
    background: none !important;
    -webkit-text-fill-color: #000 !important;
    color: #000 !important;
}








/* ===== ABOUT TEXT IMPROVEMENT ===== */

/* Paragraph text */
#about-me .about-text {
    font-size: 17px !important;   /* pehle ~15px tha */
    line-height: 1.8;
    color: black !important;       /* dark black (pure black se soft) */
}

/* Title */
#about-me .about-title {
    font-size: 38px !important;   /* thoda bada */
    color: #000 !important;
    background: none !important;
    -webkit-text-fill-color: #000 !important;
}




/* ===== TIMELINE CURVE SINGLE COLOR ===== */

.curve-line path {
    stroke: #00ffff !important;  
    
    /* gradient + glow remove */
    filter: none !important;
}

/* ===== TIMELINE VERTICAL LINE SINGLE COLOR ===== */

.t-card::after {
    background: #00ffff !important;   
    
    /* remove gradient glow */
    box-shadow: none !important;
}



.t-card:nth-child(1)::after,
.t-card:nth-child(4)::after {
    top: -30px;   
    height: 30px; 
}






/* ===== TIMELINE CARD TEXT IMPROVEMENT ===== */

/* Year (span) */
.t-card span {
    font-size: 17px !important;   
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Company Name (heading) */
.t-card h3 {
    font-size: 22px !important;   
    font-weight: 700;
}








.footer-box {
    max-width: 280px;   
}


.footer-final {
    background: #ffffff;
    padding: 50px 80px 20px;
    font-family: 'Poppins', sans-serif;
    color: #222;
}

/* layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT (Vivek Shukla) */
.footer-box h3 {
    font-size: 22px;          
    font-weight: 600;
    color: #000;
    position: relative;
    margin-bottom: 15px;
}

/* underline */
.footer-box h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #0077ff;
    position: absolute;
    left: 0;
    bottom: -5px;
}

/* text */
.footer-box p {
    font-size: 16px;
    color:black;
    line-height: 1.8;
     max-width: 280px;
     white-space: normal; 
}

/* CENTER (Quick Links) */
.footer-box a {
    display: block;
    text-decoration: none;
    color: #000;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #0077ff;
}

/* RIGHT (Contact) */
.contact-info p {
    margin: 8px 0;
    font-size: 20px;
}

.contact-info a {
    text-decoration: none;
    color: black;
}
.contact-info h1 {
    color: black;
    position: relative; 
    margin-bottom: 15px;
}

.contact-info h1::after {
    content: "";
    width: 40px;          
    height: 2px;          
    background: #0077ff;  
    position: absolute;
    left: 0;
    bottom: -5px;         
}
.contact-info a:hover {
    color: #0077ff;
}


.contact-info i {
    margin-right: 8px;
}

/* bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-size: 16px;
     font-weight: 500;  
    color: black;
}

.hero {
    width: 100%;
    height: 100vh;

    background: url("../images/a0.jpeg") no-repeat;

    background-size: 120%;

    /* 🔥 LEFT SHIFT */
    background-position: 70% 25%;
}



.hero-content {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 10px 50px;

    animation: fadeUp 1s ease;
}

/* ✨ animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* 🔥 NAME (Vivek Shukla) */
.hero-content h1 {
    font-size: 60px;   /* bada */
    font-weight: 800;
    margin-bottom: 15px;

    animation: slideUp 1s ease;
}

/* 🔥 SUBTEXT (Award-Winning...) */
.hero-content p {
    font-size: 22px;   /* halka bada */
    font-weight: 500;

    animation: slideUp 1.2s ease;
}









.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.image-modal img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.image-modal .close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.media-card::after,
.award-card::after {
    pointer-events: none;
}







.about-card-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* BUTTON */
.view-btn {
    margin-top: 10px;
    padding: 8px 15px;
    font-size: 14px;
    background: white;
    color: black;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

/* HOVER */
.view-btn:hover {
    background: black;
    color: white;
    transform: scale(1.05);
}




#about-me .about-title {
    margin-top: 80px !important;
}



.about-content h2 {
    font-size: 42px !important;   
    font-weight: 800;
    
}



.about-card img {
    width: 280px !important;   
    height: 350px !important;
    object-fit: cover;
    border-radius: 15px;
}









.about-boxes {
    display: flex;
    justify-content: center;   
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;          
}

.about-boxes div {
    min-width: 140px;
    padding: 15px 18px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;

    /* premium look */
    background: rgba(255,255,255,0.05);
}

/* 🔥 number bada */
.about-boxes h3 {
    font-size: 30px;
    font-weight: 500;
     margin-top: 2px;      /* neeche jyada na jaye */
    line-height: 1.3;
}

/* text */
.about-boxes span {
    font-size: 14px;
    color: #aaa;
}





/* BOX SIZE */
.about-boxes div {
    padding: 20px 25px !important;
    min-width: 160px !important;
}

/* 🔥 39+ / 5+ (NUMBER) */
.about-boxes div h3 {
    font-size: 34px !important;
    font-weight: 800 !important;
    margin: 0 !important;
}

/* 🔥 Speciality / Focus / Experience (TEXT) */
.about-boxes div span {
    font-size: 18px !important;   
    font-weight: 600 !important;
    margin-top: 4px !important;   
    display: block;
}

/* 🔥 COMPLETE BOX KO UPAR LANA */
.about-boxes {
    margin-top: 10px !important;   
}





/* ROLE (Senior...) */
.about-content .role {
    margin-top: 5px !important;    
    margin-bottom: 5px !important; 
}

/* DESCRIPTION */
.about-content .about-desc {
    margin-top: 5px !important;    
}


.about-content h2 {
    margin-bottom: 5px !important;
}





#about-me .about-title {
    margin-top: 0 !important;
    padding-top: 30px;   /* 🔥 controlled spacing */
}















/* IMAGE WRAPPER */
.articles-card {
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.articles-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #000;
}

/* 🔥 OVERLAY USING ::after */
.articles-card::after {
    content: "\f002";  
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 30px;

    opacity: 0;
    transition: 0.3s;
}

/* HOVER */
.articles-card:hover::after {
    opacity: 1;
}





.articles-card::before,
.articles-card::after {
    pointer-events: none;   
}


.media-card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    height: auto;
}

.media-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.media-card p {
    padding: 10px;
    line-height: 1.5;
}









/* =========================
   🔥 ONE LINE TIMELINE FIX
   ========================= */

.timeline-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 140px auto 0;
    padding: 0 40px;

    overflow-x: auto;   
    overflow-y: visible; 
}

.timeline-rainbow {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    width: max-content; 
}
.curve-line {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 1;
    pointer-events: none;
}
.curve-line path {
    fill: none;
    stroke: #00f2ff;
    stroke-width: 4;
    filter: drop-shadow(0 0 10px #00f2ff)
            drop-shadow(0 0 25px #ff4ecd);
}




.timeline-scroll {
    overflow-x: auto;   
    overflow-y: visible;
    position: relative;
    z-index: 2;
}






.t-card:last-child::before,
.t-card:last-child::after {
    display: none !important;
    content: none !important;
}

.t-card:last-child {
    border: none !important;
}



.t-card:nth-child(5)::before,
.t-card:nth-child(5)::after {
    display: none !important;
    content: none !important;
}


.t-card:nth-child(4)::before,
.t-card:nth-child(4)::after {
    display: none !important;
    content: none !important;
}


.t-card:nth-child(3)::before,
.t-card:nth-child(3)::after {
    display: none !important;
    content: none !important;
}

.t-card:nth-child(2)::before,
.t-card:nth-child(2)::after {
    display: none !important;
    content: none !important;
}



.t-card:nth-child(1)::before,
.t-card:nth-child(1)::after {
    display: none !important;
    content: none !important;
}


/* 🔥 ULTRA FINAL FIX (TEXT CUT PROBLEM SOLVED) */

#m-media .media-card {
    height: auto !important;        
    overflow: visible !important;   
    display: block !important;
}

#m-media .media-card img {
    height: 200px !important;    
    object-fit: cover;
}

#m-media .media-card p {
    display: block !important;
    height: auto !important;
    max-height: none !important;    
    overflow: visible !important;
    font-size:14px !important;
	line-height:1.4 !important;    
    
    
    white-space: normal !important;
    
}


/* ===== FINAL MEDIA FIX ===== */

#media .media-grid {
    display: flex !important;
    justify-content: center;
    gap: 30px !important;
    flex-wrap: nowrap !important;
    
}

/* CARD SIZE BADA */
#media .media-card {
    width: 350px !important;
    padding: 20px !important;
    border-radius: 15px;
}

/* IMAGE FULL VISIBLE */
#media .media-card img {
    width: 100% !important;
    height: 250px !important;

    object-fit: contain !important;   
    background: black;                
}

/* HEADING BADA */
#media .media-card h3 {
    font-size: 22px !important;
    margin-top: 15px;
}

/* PARAGRAPH BADA */
#media .media-card p {
    font-size: 18px !important;
    line-height: 1.8 !important;
}












