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

body{
    background:#000;
    color:#fff;
    font-family:Arial, sans-serif;
}

/* ================= GLOBAL ================= */
a{
    color:#fff;
    text-decoration:none;
}

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

/* ================= HEADER ================= */
.main-header{
    position:sticky;
    top:0;
    background:#000;
    z-index:999;
    border-bottom:1px solid #222;
}

.header-container{
    text-align:center;
    padding:12px;
}

.logo{
    font-size:22px;
    color:gold;
    font-weight:bold;
}

/* ================= NAV ================= */
.main-nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}

.main-nav a{
    padding:6px 12px;
    border-radius:6px;
    color:#aaa;
}

.main-nav a.active{
    background:red;
    color:#fff;
}

/* ================= HERO (FINAL FIX) ================= */
.cover{
    width:100%;
    aspect-ratio:16/7; /* ðŸ”¥ PERFECT RATIO */
    overflow:hidden;
}

.cover-slide{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center; /* ðŸ”¥ CENTER FIX */
}

/* ================= PROFILE ================= */
.profile-box{
    text-align:center;
    margin-top:-60px;
}

.profile-pic{
    width:120px;
    height:120px;
    border-radius:50%;
    border:4px solid #fff;
    object-fit:cover;
}

/* NAME */
.profile-box h1{
    color:gold;
    margin-top:10px;
}

/* FOLLOW BUTTON FIX */
.follow-btn{
    margin-top:15px;
    padding:12px 35px;
    border-radius:30px;
    background:linear-gradient(45deg,#ff0000,#ff3b3b);
    color:#fff;
    border:none;
    font-weight:bold;
    font-size:14px;
}

/* ================= CATEGORY ================= */
.category-bar{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin:20px 0;
}

.category-bar a{
    padding:8px 14px;
    border-radius:20px;
    background:#111;
    color:#ccc;
}

.category-bar a.active,
.category-bar a:hover{
    background:red;
    color:#fff;
}

/* ================= GRID ================= */
.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

/* ================= CARD ================= */
.card{
    background:#111;
    border-radius:12px;
    overflow:hidden;
}

.card img{
    width:100%;
    aspect-ratio:2/3;
    object-fit:cover;
}

/* TITLE BELOW */
.title{
    padding:10px;
    font-weight:bold;
}

.sub{
    font-size:12px;
    color:#aaa;
}

/* ================= GALLERY ================= */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.gallery-grid img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
}

/* ================= ABOUT ================= */
.about-box{
    background:#111;
    padding:18px;
    border-radius:12px;
    border:1px solid #222;
    margin-bottom:15px;
}

/* ðŸ”¥ PROFILE IMAGE IN ABOUT */
.about-profile{
    text-align:center;
    margin-bottom:15px;
}

.about-profile img{
    width:120px;
    height:120px;
    border-radius:50%;
    border:3px solid gold;
    object-fit:cover;
}

/* ================= CAREER ================= */
.career-card{
    background:#111;
    padding:18px;
    border-radius:12px;
    border-left:4px solid red;
    margin-bottom:15px;
}

/* ================= SOCIAL ================= */
.social-box{
    background:#111;
    padding:18px;
    border-radius:12px;
    border:1px solid #222;
}

.social-links{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:15px;
}

.social-links a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px;
    border-radius:10px;
    background:#000;
    border:1px solid #222;
    transition:0.3s;
}

/* HOVER EFFECT */
.social-links a:hover{
    background:red;
}

/* ICON */
.social-links i{
    font-size:18px;
}

/* ================= BUSINESS ================= */
.business-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.business-grid .card{
    padding:15px;
    text-align:center;
    border:1px solid #222;
}

.business-grid img{
    height:80px;
    object-fit:contain;
}

.btn{
    margin-top:10px;
    padding:10px;
    border-radius:25px;
    background:red;
}

/* ================= RESPONSIVE ================= */
@media(min-width:768px){

    .grid{
        grid-template-columns:repeat(4,1fr);
    }

    .business-grid{
        grid-template-columns:repeat(3,1fr);
    }
}
/* ================= SECTION TITLE PRO ================= */
.section-title{
    font-size:24px;
    font-weight:bold;
    margin:25px 0 15px;
    position:relative;
    padding-left:14px;
}

.section-title::before{
    content:'';
    position:absolute;
    left:0;
    top:4px;
    width:5px;
    height:80%;
    background:linear-gradient(to bottom, red, gold);
    border-radius:3px;
}

.section-title::after{
    content:'';
    position:absolute;
    bottom:-6px;
    left:14px;
    width:60px;
    height:2px;
    background:red;
    opacity:0.6;
}

/* ================= CONTACT PAGE ================= */
.contact-box{
    background:#111;
    padding:20px;
    border-radius:14px;
    border:1px solid #222;
    margin-bottom:20px;
}

.contact-item{
    margin-bottom:10px;
    font-size:15px;
}

.contact-item strong{
    color:#fff;
}

.contact-btn{
    display:inline-block;
    margin-top:12px;
    padding:10px 25px;
    border-radius:30px;
    background:linear-gradient(45deg,#ff0000,#ff3b3b);
}

/* ================= ABOUT PAGE PRO ================= */
.about-box{
    background:#111;
    padding:20px;
    border-radius:14px;
    border:1px solid #222;
    line-height:1.6;
}

/* ================= CAREER ================= */
.career-card{
    background:#111;
    padding:20px;
    border-radius:14px;
    border-left:4px solid red;
    line-height:1.6;
}

/* ================= SOCIAL PAGE PRO ================= */
.social-box{
    background:#111;
    padding:20px;
    border-radius:14px;
    border:1px solid #222;
}

.social-links{
    margin-top:15px;
}

.social-links a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px;
    border-radius:12px;
    background:#000;
    border:1px solid #222;
    transition:0.3s;
}

/* 🔥 hover effect */
.social-links a:hover{
    background:linear-gradient(45deg,#ff0000,#ff3b3b);
}

/* ================= SMALL FIX ================= */
.section{
    margin-top:20px;
}
/* ================= ABOUT PROFILE ================= */
.about-profile{
    text-align:center;
    margin-bottom:15px;
}

.about-profile img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid gold;
}

.about-name{
    margin-top:10px;
    font-size:18px;
    font-weight:bold;
    color:#fff;
}
/* ================= CONTACT ================= */
.contact-box{
    background:#111;
    padding:20px;
    border-radius:14px;
    border:1px solid #222;
    margin-bottom:20px;
}

.contact-item{
    margin-bottom:15px;
    font-size:15px;
}

.contact-item a{
    color:#fff;
    text-decoration:none;
}

.contact-btn{
    display:inline-block;
    margin-top:10px;
    padding:10px 25px;
    border-radius:30px;
    background:linear-gradient(45deg,#ff0000,#ff3b3b);
}

/* MAP */
.map-box{
    margin-top:15px;
}
/* ================= CAREER ================= */

.career-hero{
    background:#111;
    padding:20px;
    border-radius:14px;
    border:1px solid #222;
    text-align:center;
    margin-bottom:20px;
}

.career-img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:10px;
    border:3px solid gold;
}

.career-section{
    margin-bottom:20px;
}

.career-section h3{
    margin-bottom:10px;
}

/* LIST */
.career-list{
    padding-left:18px;
    line-height:1.6;
    color:#ccc;
}

/* SKILLS */
.skills-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:15px;
}

.skill-card{
    background:#111;
    padding:15px;
    border-radius:10px;
    border-left:3px solid red;
}

/* DESKTOP */
@media(min-width:768px){
    .skills-grid{
        grid-template-columns:repeat(3,1fr);
    }
}
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.05);
  z-index: 5;
}

.video-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover img {
  transform: scale(1.1);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.video-card:active {
  transform: scale(0.95);
}
/* 🎬 HERO */
.hero {
  position: relative;
  margin-bottom: 25px;
}

.hero-overlay h2 {
  font-size: 18px;
  line-height: 1.4;
  max-width: 90%;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  border-radius: 15px;
}

.watch-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #ff0000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* 🔥 SECTION */
.section-title {
  margin: 20px 0 10px;
}

/* 🎬 SCROLL */
.scroll-row {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.scroll-item {
  min-width: 160px;
  scroll-snap-align: start;
  text-decoration: none;
}

/* 🎬 CARD */
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: 0.3s;
}

.video-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  transition: 0.3s;
}

.video-card:hover {
  transform: scale(1.05);
}

.video-card:hover img {
  transform: scale(1.1);
}

.video-card:active {
  transform: scale(0.95);
}

/* ▶ PLAY */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

/* 📝 TITLE */
.video-title {
  font-size: 12px;
  color: #fff;
  margin-top: 6px;
  line-height: 1.4;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.section-title {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

/* RED LINE UNDER */
.section-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: red;
  border-radius: 5px;
}

/* LEFT GLOW LINE */
.section-title::before {
  content: "";
  width: 4px;
  height: 20px;
  background: linear-gradient(to bottom, red, orange);
  border-radius: 5px;
}
.preview-video{
    width:100%;
    height:110px;
    object-fit:cover;
    display:none;
}

.ott-card:hover img{
    display:none;
}

.ott-card:hover .preview-video{
    display:block;
}
a {
-webkit-tap-highlight-color: transparent;
}