* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    background: #ffffff;
    color: #2c2c2c;
    line-height: 1.6; 
}
.sticky-header {
  position: fixed;
  top: -100px; /* Start hidden above viewport */
  left: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid grey;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: top 0.3s ease-in-out;
  height: 60px;
}

.sticky-header.show {
  top: 0; /* Slide down into view */
}

.sticky-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-grow: 1;
  text-align: center;
  margin-left: 60px; /* Offset to center with contact link on right */
}

.contact-link {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 0.7;
}

.bottom-fade-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    filter: grayscale(100%);
    pointer-events: none;
    z-index: 1000;
}

.top-fade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
     background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    filter: grayscale(100%);
    pointer-events: none;
    z-index: 1000;
}

.g-4 {
    --bs-gutter-x: 2.5rem;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 80px;
    padding-top:20px;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 200;
    letter-spacing: 5px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.header .subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Section Divider Styles */
.section-divider {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 3px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 1200px) {
    .main-container {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* Classic Editorial Style */
.style-1 {
    background: #ffffff;
    border-top: 4px solid black;
    margin-bottom: 70px;
    overflow: hidden;
}

.image-placeholder {
    transition: filter 1s ease;
}

.style-1 .image-placeholder {
    height: 250px;
    background: #f8f8f8;
    display: flex;
    align-items: center; /* Center the image vertically */
    justify-content: center;
    font-size: 0.9rem;
    color: #aaa;
    letter-spacing: 1px;
    overflow: hidden;
}

.style-1 .image-placeholder img {
    vertical-align: top !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* This shifts the focus point up to center her face */
}

.style-1 .content-section {
    padding: 25px;
    padding-left:0px;
    padding-top:10px;
}

.style-1 .category {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align:center;
}

.style-1 .main-title {
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.2;
    color: #1a1a1a;
    text-transform: none;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.style-1 .description {
    font-size: 1rem;
    color: #343434;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.style-1 .byline {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 400;
}

.style-1 .author {
    color: #6e6d6e;
    font-weight: 200;
    letter-spacing: 1px;
}

.news-card {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.4s ease;
    /*filter: grayscale(90%);*/
}

.news-card:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
    filter: grayscale(0%);
}

@media (max-width: 992px) {
  
    .header h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.2rem;
    }
    
      .bio-text {
            font-size: 1.4rem!important; 
        }
    
    
    .style-1 .content-section {
        padding: 20px;
    }
    
    .style-1 .main-title {
        font-size: 1.5rem;
    }
    
    .award-card { 
            padding: 00px 20px!important;  
        }
    
}

.footer {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            color: #ffffff;
            width: 100%;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            border-top: 1px solid #333;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1200;
            position: absolute;
        }

        .footer-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            z-index: 1200;
        }

        .copyright-text {
            font-size: 14px;
            color: #cccccc;
            letter-spacing: 0.5px;
            font-weight: 300;
        }

        .authentic-text {
            font-size: 12px;
            color: #888888;
            font-style: italic;
            margin-left: 20px;
        }

        .social-links {
            display: flex;
            align-items: center;
        }

        .linkedin-link {
            color: #ffffff;
            text-decoration: none;
            padding: 8px 16px;
            border: 1px solid #333;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.5px;
            background: rgba(255, 255, 255, 0.05);
        }

        .linkedin-link:hover {
            background: #0077b5;
            border-color: #0077b5;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
        }

        @media (max-width: 768px) {
            .footer {
                padding: 0 20px;
                height: auto;
                min-height: 70px;
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 10px;
            }

            .copyright-text {
                font-size: 12px;
            }

            .authentic-text {
                margin-left: 0;
                margin-top: 5px;
            }
        }
        
        .video-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border: 4px solid grey;
            cursor: pointer;
            overflow: hidden;
            background-color: #000;
        }

        .thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: rgba(0, 0, 0, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            background-color: rgba(255, 0, 0, 0.9);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-icon {
            width: 0;
            height: 0;
            border-left: 25px solid white;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            margin-left: 5px;
        }

        .youtube-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .hidden {
            display: none;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            

            .play-button {
                width: 60px;
                height: 60px;
            }

            .play-icon {
                border-left: 18px solid white;
                border-top: 12px solid transparent;
                border-bottom: 12px solid transparent;
                margin-left: 4px;
            }
        }
        
        .event {
            font-size: 1.3rem;
            font-weight: 400;
            margin-top:20px;
            letter-spacing: 2px;
            text-align: center;
            text-transform: uppercase;
            color: rgb(26, 26, 26);
            margin-bottom: 20px;
        }
        
        .bio-text {
            text-transform: none;
            margin-top: 20px;
            font-weight: 300;
            line-height: 1.4;
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 30px;
            font-family: 'Georgia', serif; 
            overflow: hidden;
            text-align:center;
        }
        
        .awards-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .eventdate {
            font-size: 1.3rem;
            font-weight: 400;
            margin-top:20px;
            border-bottom:1px solid #c9c9c9;
            letter-spacing: 2px;
            text-align: center;
            text-transform: uppercase;
            color: rgb(163 161 161);
            margin-bottom: 20px;
        }
        
        .award-card { 
            padding: 40px 30px; 
            height: 100%;
            transition: transform 0.3s ease; 
        }
    
        .nodecoration { 
                text-decoration: none;
        } 
        
        .award-card:hover {
            transform: translateY(-5px); 
        }
        
        .award-title {
            font-size: 1.7rem;
            font-weight: 300;
            color: #000;
          
            margin-bottom: 15px;
            font-family: 'Georgia', serif;
            line-height: 1.3;
            text-align: center;
        }
        
        .awarding-company {
            font-size: 1.2rem;
            font-weight: 400;
            color: #333;
            margin-bottom: 10px;
            text-align: center;
            font-family: 'Georgia', serif;
        }
        
        .award-description {
            text-transform: capitalize;
            margin-top: 20px;
            font-weight: 300;
            line-height: 1.4;
            font-size: 1.2rem;
            color: #1a1a1a;
            margin-bottom: 30px;
            font-family: 'Georgia', serif;
            text-align: center;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 200;
            letter-spacing: 5px;
            color: #1a1a1a; 
            text-transform: uppercase;
        }
             
        
        .section-subtitle {
            font-size: 1.5rem;
            color: #666;
            font-family: 'Georgia', serif;
            font-weight: 300;
        }