/* ============================================
   Department of Language & Culture - Telangana
   Main Stylesheet
   ============================================ */


/* ---- RESET & BASE ---- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    flex-direction: column;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    overflow-x: hidden;
  }
  
  
  /* ---- NAVIGATION ---- */
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 65px;
    background: linear-gradient(135deg, #1a0a2e, #2d1155);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  }
  
  .navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .navbar__logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffd700;
  }
  
  .navbar__logo span {
    font-size: 16px;
    font-weight: 600;
    color: #ffd700;
    white-space: nowrap;
  }
  
  .navbar__menu {
    display: flex;
    list-style: none;
    gap: 6px;
  }
  
  .navbar__menu li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .navbar__menu li a:hover {
    color: #fff;
    background: rgba(255, 215, 0, 0.12);
  }
  
  .navbar__menu li a.active {
    color: #1a0a2e;
    background: linear-gradient(135deg, #ffd700, #f39c12);
    font-weight: 600;
  }
  
  .navbar__dropdown {
    position: relative;
  }
  
  .navbar__submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #2d1155, #1a0a2e);
    list-style: none;
    min-width: 160px;
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.15);
    z-index: 101;
  }
  
  .navbar__dropdown:hover .navbar__submenu {
    display: block;
  }
  
  .navbar__submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 0;
    white-space: nowrap;
  }
  
  .navbar__submenu li a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
  }
  
  .navbar__toggle {
    display: none;
    background: none;
    border: none;
    color: #ffd700;
    font-size: 26px;
    cursor: pointer;
  }
  
  
  /* ---- BANNER ---- */
  
  .banner {
    width: 100%;
    line-height: 0;
    flex-shrink: 0;
  }
  
  .banner img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  
  /* ---- HERO SECTION (Main Content) ---- */
  
  .hero {
    flex: 1;
    min-height: calc(120vh - 200px);
    display: flex;
    background-image: url("/home/backgroundhero1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  
  .hero__left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 80px;
  }
  
  .hero__left h1 {
    font-size: 48px;
    font-weight: 600;
  }
  
  .hero__left h2 {
    font-size: 40px;
    margin-top: 10px;
    color: #ffd700;
  }
  
  .hero__right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  
  
  /* ---- ROTATING WHEEL ANIMATION ---- */
  
  .wheel-wrapper {
    width: 500px;
    height: 500px;
    position: relative;
    animation: spin 30s linear infinite;
  }
  
  .wheel {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .wheel__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffe59c, #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    z-index: 2;
    border: 1px solid #ffd700;
  }
  
  .wheel__center img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ffd700;
  }
  
  .wheel__item {
    position: absolute;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f39c12, #d35400);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #ffd700;
  }
  
  .wheel__item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .counter {
    animation: counterSpin 30s linear infinite;
  }
  
  .drop {
    top: -150px;
    right: -150px;
    opacity: 0;
  }
  
  .join {
    top: 50%;
    left: 50%;
    margin: -66px;
    opacity: 1;
    transition: all 1.2s cubic-bezier(0.3, 1.5, 0.4, 1);
  }
  
  .p1 { transform: rotate(0deg)   translate(215px) rotate(0deg); }
  .p2 { transform: rotate(60deg)  translate(215px) rotate(-60deg); }
  .p3 { transform: rotate(120deg) translate(215px) rotate(-120deg); }
  .p4 { transform: rotate(180deg) translate(215px) rotate(-180deg); }
  .p5 { transform: rotate(240deg) translate(215px) rotate(-240deg); }
  .p6 { transform: rotate(300deg) translate(215px) rotate(-300deg); }
  
  @keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  
  @keyframes counterSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
  }
  
  
  /* ---- INFO SECTION (Language & Culture) ---- */
  
  .info {
    display: flex;
    padding: 60px 80px;
    gap: 50px;
    background: #1a0a2e;
    color: #fff;
    align-items: center;
  }
  
  .info__image {
    flex: 1;
    min-width: 0;
  }
  
  .info__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  }
  
  .info__text {
    flex: 1;
    min-width: 0;
  }
  
  .info__text h2 {
    font-size: 32px;
    margin: 0 0 8px;
    color: #ffd700;
    font-weight: 600;
  }
  
  .info__text .underline {
    width: 60px;
    height: 3px;
    background: #ffd700;
    margin-bottom: 20px;
    border-radius: 2px;
  }
  
  .info__text p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.85);
  }
  
  
  /* ---- ARTIST ID CARD SECTION ---- */
  
  .artist-card {
    display: flex;
    padding: 60px 80px;
    gap: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #d62828 30%, #7b2d8e 60%, #1a0a2e 100%);
    color: #fff;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .artist-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .artist-card::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 160%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .artist-card__content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
  }
  
  .artist-card__content .badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
  }
  
  .artist-card__content h2 {
    font-size: 34px;
    margin: 0 0 8px;
    color: #fff;
    font-weight: 700;
  }
  
  .artist-card__content h2 span {
    color: #ffd700;
  }
  
  .artist-card__content .underline {
    width: 60px;
    height: 3px;
    background: #ffd700;
    margin-bottom: 20px;
    border-radius: 2px;
  }
  
  .artist-card__content p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .artist-card__features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .artist-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
  }
  
  .artist-card__feature .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .artist-card__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .btn-apply {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #ffd700, #f39c12);
    color: #1a0a2e;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  }
  
  .btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
  }
  
  .btn-view {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #ffd700;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-view:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
  }
  
  .artist-card__visual {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .idcard-preview {
    max-width: 380px;
  }
  
  .idcard-preview img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.25);
    transition: transform 0.3s ease;
  }
  
  .idcard-preview img:hover {
    transform: scale(1.03);
  }
  
  
  /* ---- PROGRAMMES & EVENTS SECTION ---- */
  
  .programmes {
    padding: 60px 80px;
    background: linear-gradient(180deg, #f8f9fa, #eef0f2);
    color: #333;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 34px;
    margin: 0 0 8px;
    font-weight: 700;
  }
  
  .section-header .underline {
    width: 60px;
    height: 3px;
    margin: 0 auto 16px;
    border-radius: 2px;
  }
  
  .section-header p {
    font-size: 16px;
    margin: 0;
  }
  
  .programmes .section-header h2 {
    color: #222;
  }
  
  .programmes .section-header h2 span {
    color: #d35400;
  }
  
  .programmes .section-header .underline {
    background: #ffd700;
  }
  
  .programmes .section-header p {
    color: #777;
  }
  
  .programme-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .programme-tabs__btn {
    padding: 10px 28px;
    border: 2px solid #ddd;
    background: transparent;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .programme-tabs__btn:hover {
    border-color: #d35400;
    color: #d35400;
  }
  
  .programme-tabs__btn.active {
    background: linear-gradient(135deg, #d35400, #e67e22);
    color: #fff;
    border-color: transparent;
  }
  
  .programme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .programme-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }
  
  .programme-card:hover {
    transform: translateY(-5px);
    border-color: #d35400;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  }
  
  .programme-card__date {
    display: inline-block;
    background: linear-gradient(135deg, #d35400, #e67e22);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
  }
  
  .programme-card__date--upcoming {
    background: linear-gradient(135deg, #2e7d32, #43a047);
  }
  
  .programme-card h3 {
    font-size: 20px;
    margin: 0 0 10px;
    color: #222;
    font-weight: 600;
  }
  
  .programme-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 18px;
  }
  
  .programme-card__details {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .programme-card__detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888;
  }
  
  .programme-card__detail-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fdf0e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  
  .status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .status-badge--completed {
    background: #f0f0f0;
    color: #999;
  }
  
  .status-badge--upcoming {
    background: #e8f5e9;
    color: #2e7d32;
  }
  
  .status-badge--ongoing {
    background: #fff3e0;
    color: #e65100;
  }
  
  
  /* ---- OFFICERS SECTION ---- */
  
  .officers {
    padding: 60px 80px;
    background: linear-gradient(180deg, #fffdf5, #fff8e7, #fff3d4);
    color: #333;
    position: relative;
    overflow: hidden;
  }
  
  .officers::before {
    content: "";
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.08) 40%, transparent 70%);
    pointer-events: none;
  }
  
  .officers::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .officers__grid {
    display: flex;
    justify-content: center;
    gap: 60px;
  }
  
  .officer-card {
    width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid rgba(218, 185, 107, 0.25);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
  }
  
  .officer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(218, 185, 107, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .officer-card__photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
    border: 4px solid #dab96b;
    box-shadow: 0 8px 25px rgba(218, 185, 107, 0.3);
  }
  
  .officer-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .officer-card h3 {
    font-size: 20px;
    margin: 0 0 6px;
    color: #2c1810;
    font-weight: 700;
    white-space: nowrap;
  }
  
  .officer-card__designation {
    font-size: 15px;
    color: #c0392b;
    margin: 0 0 4px;
    font-weight: 600;
  }
  
  .officer-card__department {
    font-size: 13px;
    color: #2c3e50;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
  }
  
  .officer-card__divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dab96b, transparent);
    margin: 16px auto;
    border-radius: 2px;
  }
  
  
  /* ---- IMAGE CAROUSEL / GALLERY ---- */
  
  .gallery {
    padding: 50px 0;
    background: #1a0a2e;
    overflow: hidden;
  }
  
  .gallery .section-header {
    margin-bottom: 30px;
    padding: 0 80px;
  }
  
  .gallery .section-header h2 {
    color: #fff;
  }
  
  .gallery .section-header h2 span {
    color: #ffd700;
  }
  
  .gallery .section-header .underline {
    background: #ffd700;
  }
  
  .gallery__track {
    display: flex;
    gap: 20px;
    animation: scrollCarousel 25s linear infinite;
    width: max-content;
  }
  
  .gallery__track:hover {
    animation-play-state: paused;
  }
  
  .gallery__item {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  .gallery__item:hover {
    border-color: #ffd700;
    transform: scale(1.03);
  }
  
  .gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  @keyframes scrollCarousel {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  
  /* ---- CONTACT SECTION ---- */
  
  .contact {
    padding: 60px 80px;
    background: linear-gradient(180deg, #f8f9fa, #eef0f2);
    color: #333;
  }
  
  .contact .section-header h2 {
    color: #222;
  }
  
  .contact .section-header h2 span {
    color: #d35400;
  }
  
  .contact .section-header .underline {
    background: #d35400;
  }
  
  .contact__grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  
  .contact__info {
    flex: 1;
  }
  
  .contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
  }
  
  .contact-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
  }
  
  .contact-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d35400, #e67e22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #fff;
  }
  
  .contact-card h4 {
    margin: 0 0 4px;
    font-size: 16px;
    color: #222;
    font-weight: 600;
  }
  
  .contact-card p {
    margin: 0;
    font-size: 14px;
    color: #777;
    line-height: 1.6;
  }
  
  .contact__form {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  
  .contact__form h3 {
    margin: 0 0 20px;
    font-size: 20px;
    color: #222;
  }
  
  .form-row {
    margin-bottom: 16px;
  }
  
  .form-row input,
  .form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    color: #333;
    outline: none;
    transition: border 0.3s ease;
    box-sizing: border-box;
  }
  
  .form-row input:focus,
  .form-row textarea:focus {
    border-color: #d35400;
    background: #fff;
  }
  
  .form-row textarea {
    height: 100px;
    resize: vertical;
  }
  
  .btn-submit {
    padding: 12px 36px;
    background: linear-gradient(135deg, #d35400, #e67e22);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.3);
  }
  
  
  /* ---- FOOTER ---- */
  
  .footer {
    background: #0d0520;
    color: #fff;
    padding: 50px 80px 30px;
  }
  
  .footer__grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
  }
  
  .footer__col {
    flex: 1;
  }
  
  .footer__col h4 {
    font-size: 18px;
    margin: 0 0 20px;
    color: #ffd700;
    font-weight: 600;
  }
  
  .footer__col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0;
  }
  
  .footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer__col ul li {
    margin-bottom: 10px;
  }
  
  .footer__col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .footer__col ul li a:hover {
    color: #ffd700;
  }
  
  .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer__bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
  }
  
  .footer__bottom-links {
    display: flex;
    gap: 20px;
  }
  
  .footer__bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
  }
  
  .footer__bottom-links a:hover {
    color: #ffd700;
  }
  