/* 
Tinker CSS Template
https://templatemo.com/tm-506-tinker
*/

/* Video Preview Styles */
.video-preview-container {
    position: relative;
    cursor: pointer;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-preview-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 14vw;
    overflow: hidden;
}

.thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    /* Ensure we crop out black bars */
    transform: scale(1.2);
}

.video-preview-container:hover .thumbnail-img {
    transform: scale(1.25);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-preview-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--orange) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white !important;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white !important;
    color: var(--orange) !important;
    transform: scale(1.1);
}

.play-button i {
    margin-left: 3px; /* Adjust play icon position */
}

/* Video Lightbox Styles */
.video-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-lightbox.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    margin: 0;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #fe994f;
}

.lightbox-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

/* UGC Lightbox - Taller format for YouTube Shorts */
.ugc-page .lightbox-video-container {
    padding-bottom: 177.78%; /* 9:16 aspect ratio for Shorts */
    max-width: 500px;
    margin: 0 auto;
}

/* UGC Lightbox for portfolio page UGC section */
#portfolio-overview .portfolio-section[data-category="ugc"] ~ * .lightbox-video-container,
body.ugc-lightbox-active .lightbox-video-container {
    padding-bottom: 177.78%; /* 9:16 aspect ratio for Shorts */
    max-width: 500px;
    margin: 0 auto;
}

.lightbox-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        margin: 0;
        width: 95%;
    }
    
    .lightbox-close {
        top: -35px;
        font-size: 30px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    /* UGC Lightbox mobile adjustments */
    .ugc-page .lightbox-video-container,
    body.ugc-lightbox-active .lightbox-video-container {
        max-width: 90vw;
        padding-bottom: 160%; /* Slightly less tall on mobile for better fit */
    }
}

@media screen and (max-width: 767px) {
    .video-thumbnail {
        height: 54vw;
    }
}

/* UGC Video Thumbnails - Taller format for Shorts */
body:has(#ugc-videos-container) .video-thumbnail,
.ugc-page .video-thumbnail,
#portfolio-overview .portfolio-section[data-category="ugc"] .video-thumbnail,
#portfolio-overview .portfolio-section[data-category="ugc"] .view-all-background {
    height: 35vw;
}

/* UGC Grid Layout - Desktop: 3 per row */
.ugc-page #ugc-videos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.ugc-page #ugc-videos-container > div {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
}

/* Tablet: 2 per row */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .ugc-page #ugc-videos-container > div {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    body:has(#ugc-videos-container) .video-thumbnail,
    .ugc-page .video-thumbnail,
    #portfolio-overview .portfolio-section[data-category="ugc"] .video-thumbnail,
    #portfolio-overview .portfolio-section[data-category="ugc"] .view-all-background {
        height: 45vw;
    }
}

/* Mobile: Horizontal scrolling */
@media screen and (max-width: 767px) {
    body:has(#ugc-videos-container) .video-thumbnail,
    .ugc-page .video-thumbnail,
    #portfolio-overview .portfolio-section[data-category="ugc"] .video-thumbnail,
    #portfolio-overview .portfolio-section[data-category="ugc"] .view-all-background {
        height: 450px;
    }
    
    .ugc-page #ugc-videos-container {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 10px 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .ugc-page #ugc-videos-container > div {
        flex: 0 0 280px;
        max-width: 280px;
        min-width: 280px;
    }
    
    /* Hide scrollbar but keep functionality */
    .ugc-page #ugc-videos-container::-webkit-scrollbar {
        display: none;
    }
    
    .ugc-page #ugc-videos-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Coming Soon Card Styles */
.coming-soon-container {
    position: relative;
    cursor: default;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border: 2px dashed #ccc;
}

.coming-soon-content {
    position: relative;
    width: 100%;
    height: 14vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.coming-soon-content i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.coming-soon-content h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .coming-soon-content {
        height: 54vw;
    }
    
    .coming-soon-content i {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .coming-soon-content h4 {
        font-size: 16px;
    }
}

/* Portfolio Section Styles */
.portfolio-section {
    margin-bottom: 60px;
}

.portfolio-section:first-child {
    margin-top: 60px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.section-title {
    margin: 0 0 15px 0;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
}

.view-all-btn {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    color: #333;
    text-decoration: none;
    transform: translateX(5px);
}

.view-all-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(3px);
}

/* View All Overlay Styles */
.view-all-overlay {
    position: relative;
    cursor: pointer;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-all-overlay:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.view-all-background {
    position: relative;
    width: 100%;
    height: 14vw;
    overflow: hidden;
}

.view-all-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.2);
}

.view-all-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 8px;
}

.view-all-text {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.view-all-arrow {
    color: var(--orange);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.view-all-arrow svg {
    width: 28px;
    height: 28px;
    stroke: var(--orange);
    transition: transform 0.3s ease;
}

.view-all-overlay:hover .view-all-arrow svg {
    transform: translateX(8px);
}

@media screen and (max-width: 767px) {
    .view-all-background {
        height: 54vw;
    }
    
    .view-all-text {
        font-size: 20px;
    }
    
    .view-all-arrow svg {
        width: 24px;
        height: 24px;
    }
}

/* Quick Navigation Styles */
.quick-navigation {
    background: #f8f9fa;
    padding: 20px 70px;
    border-bottom: 1px solid #e9ecef;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 100%;
}

.nav-label {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.nav-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: var(--orange);
    text-decoration: none;
    border-color: var(--orange);
}

.nav-link.active {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

/* Portfolio Dropdown Styles */
.navbar-nav .dropdown-menu {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    min-width: 320px;
    padding: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Dropdown hover functionality */
.navbar-nav .dropdown:hover .dropdown-menu,
.navbar-nav .dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dropdown toggle hover state */
.navbar-nav .dropdown:hover > .dropdown-toggle {
    color: var(--orange) !important;
}

.navbar-nav .dropdown-menu li a {
    color: #333;
    padding: 12px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.navbar-nav .dropdown-menu li a:hover {
    background: var(--orange);
    color: white;
    text-decoration: none;
}

.navbar-nav .dropdown-menu li a.active-page {
    background: var(--orange);
    color: white;
    font-weight: 600;
}

/* First and last dropdown item border-radius */
.navbar-nav .dropdown-menu li:first-child a {
    border-radius: 8px 8px 0 0;
}

.navbar-nav .dropdown-menu li:last-child a {
    border-radius: 0 0 8px 8px;
}

/* New Dropdown Item Content Styles */
.dropdown-item-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.dropdown-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.dropdown-icon svg {
    width: 100%;
    height: 100%;
    color: inherit;
}

.dropdown-text {
    flex: 1;
    min-width: 0;
}

.dropdown-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 2px;
    color: inherit;
}

.dropdown-description {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    color: #666;
    opacity: 0.8;
}

/* Desktop dropdown hover/active description colors */
@media (min-width: 768px) {
    .navbar-nav .dropdown-menu li a:hover .dropdown-description,
    .navbar-nav .dropdown-menu li a.active-page .dropdown-description {
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Mobile dropdown - keep descriptions dark even on hover/active */
@media (max-width: 767px) {
    .navbar-nav .dropdown-menu li a:hover .dropdown-description,
    .navbar-nav .dropdown-menu li a.active-page .dropdown-description {
        color: #000000;
    }
}


.dropdown-toggle {
	background-image: none !important;
	box-shadow: none !important;
}

.dropdown-toggle .caret {
    margin-left: 5px;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
}

/* Fix for dropdown black background issue */
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    background-color: transparent !important;
}

/* Mobile dropdown styles */
@media (max-width: 767px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: #ffffff;
        border: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        margin-left: 15px;
        margin-right: 15px;
        border-radius: 8px;
        min-width: auto;
    }
    
    /* Disable hover on mobile, keep click functionality */
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }
    
    .navbar-nav .dropdown.open .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
    
    /* Reset transitions on mobile for immediate show/hide */
    .navbar-nav .dropdown-menu {
        transition: none;
    }
    
    .navbar-nav .dropdown-menu li {
        margin-bottom: 8px;
    }
    
    .navbar-nav .dropdown-menu li a {
        padding: 15px 20px;
        color: #000000;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin-bottom: 2px;
    }
    
    .navbar-nav .dropdown-menu li:last-child {
        margin-bottom: 0;
    }
    
    .navbar-nav .dropdown-menu li:last-child a {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .navbar-nav .dropdown-menu li a:hover {
        background: var(--orange);
        color: white;
        border-radius: 6px;
        margin: 0 8px;
        border-bottom: none;
    }
    
    /* Remove active state styling on mobile */
    .navbar-nav .dropdown-menu li a.active-page {
        background: transparent;
        color: #000000;
        border-radius: 0;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav .dropdown-menu li a:hover .dropdown-description {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .navbar-nav .dropdown-menu .dropdown-description {
        color: #000000;
        font-weight: 400;
    }
    
    .navbar-nav .dropdown-menu .dropdown-title {
        color: #000000;
        font-weight: 600;
    }
    
    /* Make icons black on mobile */
    .navbar-nav .dropdown-menu .dropdown-icon svg {
        color: #000000;
        stroke: #000000;
    }
    
    .navbar-nav .dropdown-menu li a:hover .dropdown-icon svg {
        color: white;
        stroke: white;
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .nav-label {
        font-size: 14px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 14px;
    }
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', arial, sans-serif;
}

:root{
	--orange:#FE994F;
	--blue:#14517B;
	--green:#6A8A73;
}

/* logo */
.header .logo{
	width: 200px;
	display: block;
	padding-top: 15px;
}

@media (max-width:756px){
	.header .logo{
		height: 100%;
		width: auto;
	}

	.header .navbar-brand{
		height: 80px;
	}
	
}

footer .logo{
	width: 200px;
	display: block;
}

footer a{
	color: white;
}

footer a:hover{
	color: var(--orange);
}

.header.active .logo {
	content: url("../img/logo2.png");
	width: 120px;
	display: block;
	padding-top: 15px;
}

#portfolio .logo{
	height: 100%;
	object-fit: contain;
}

#portfolio .thumb img {
	height: 250px;
    width: 100%;
	object-fit: cover;
}

#portfolio .image{
	height: 100%;
}

#portfolio .thumb{
	height: 100%;
}

.video-list {
	text-align: center;
	padding: 40px 20px;
	background-color: #f8f9fa;
}

.video-list .row,
#ugc-videos-container,
#youtube-videos,
#freelance-videos,
#directing-videos-container,
.portfolio-section .row { 
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 0;
	padding: 0;
}

#youtube-videos::before,
#youtube-videos::after,
#freelance-videos::before,
#freelance-videos::after,
#directing-videos-container::before,
#directing-videos-container::after,
#ugc-videos-container::before,
#ugc-videos-container::after,
.video-list .row::before,
.video-list .row::after,
.portfolio-section .row::before,
.portfolio-section .row::after {
	content: none !important;
}

.video-grid-item {
	/* Grid items will automatically size based on grid-template-columns */
}

.video-list iframe {
	width: 100%;
	max-width: 560px;
	height: 315px;
	margin: 20px 0;
	border-radius: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	border: 3px solid #ffffff;
	transition: all 0.3s ease-in-out;
	background-color: #000;
}

.video-list iframe:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	border-color: var(--blue);
}

/* Responsive design with CSS Grid */
@media (max-width: 1200px) {
	.video-list .row,
	#ugc-videos-container,
	#youtube-videos,
	#freelance-videos,
	#directing-videos-container,
	.portfolio-section .row {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.video-list {
		padding: 30px 15px;
	}
	
	.video-list .row,
	#ugc-videos-container,
	#youtube-videos,
	#freelance-videos,
	#directing-videos-container,
	.portfolio-section .row {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.video-list iframe {
		max-width: 100%;
		height: auto;
		aspect-ratio: 16/9;
		border-radius: 15px;
		margin: 15px 0;
	}
}

@media (max-width: 480px) {
	.video-list {
		padding: 20px 10px;
	}
	
	.video-list .row,
	#ugc-videos-container,
	#youtube-videos,
	#freelance-videos,
	#directing-videos-container,
	.portfolio-section .row {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.video-list iframe {
		border-radius: 12px;
		margin: 10px 0;
	}
}

#home .col-md-3{
	padding-bottom: 15px;
}

#title-portofolio{
	height: 20vh;
	display: grid;
	justify-content: center;
	align-content: center;
	grid-auto-flow: column;
}

#title-portofolio-index{
	height: 20vh;
	display: grid;
	justify-content: center;
	align-content: center;
	grid-auto-flow: column;
	background-color: var(--orange);
}

#title-portofolio h2{
	text-transform: uppercase;
}

#title-portofolio a{
	margin-left: 30px;
	margin-right: 30px;
	justify-self: center;
    align-self: center;
}

#title-portofolio i{
	font-size: 40px;
	color: var(--orange);
}

#portfolio .row a.navbar-brand{
	height: 25%;
	margin: 40px;
	display: flex;
  	justify-content: center;

}

body {
	overflow-x: hidden;
}

ul {
	list-style: none;
	margin: 0px;
}

p {
	color: #7a7a7a;
	font-size: 14px;
	line-height: 24px;
}

.parallax-content {
  width: 100%;
  height: 100vh;
  background-size: cover;
  display: grid;
}

.parallax-content .text-content {
	padding-bottom: 30px;
  }


.parallax-content-b {
	width: 100%;
	min-height: 50vh;
	background-size: cover;
	display: grid;
}

.social-icons-home  {
	justify-content: center;
	display: flex;

	@media (max-width: 767px){
		display: block;
	}
}

.social-icon-home  {
	padding-bottom: 30px;
}

#work-home {
	padding-bottom: 50px;

	@media (min-width: 768px) {
		padding-bottom: 100px;
	}
}

#work-home .col-xs-6,
#work-home .col-sm-6,
#work-home .col-md-3 {
	margin-bottom: 5px;
	padding-inline: 5px;

	@media (min-width: 992px) {
		margin-bottom: 30px;
		padding-inline: 15px;
	}
}

/* Remove bottom margin on larger screens for last row */
@media (min-width: 992px) {
	#work-home .col-md-3:nth-last-child(-n+4) {
		margin-bottom: 0;
	}
}

/* Remove bottom margin on tablets for last row */
@media (min-width: 768px) and (max-width: 991px) {
	#work-home .col-sm-6:nth-last-child(-n+2) {
		margin-bottom: 0;
	}
}

/* Remove bottom margin on mobile for last row */
@media (max-width: 767px) {
	#work-home .col-xs-6:nth-last-child(-n+2) {
		margin-bottom: 0;
	}
}

/* Custom Wide Container */
.container-wide {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	max-width: 1400px; /* Wider than Bootstrap's default 1140px */
}

/* Responsive breakpoints for custom wide container */
@media (min-width: 576px) {
	.container-wide {
		max-width: 540px;
		padding-right: 20px;
		padding-left: 20px;
	}
}

@media (min-width: 768px) {
	.container-wide {
		max-width: 720px;
		padding-right: 25px;
		padding-left: 25px;
	}
}

@media (min-width: 992px) {
	.container-wide {
		max-width: 960px;
		padding-right: 30px;
		padding-left: 30px;
	}
}

@media (min-width: 1200px) {
	.container-wide {
		max-width: 1400px; /* Much wider than Bootstrap's 1140px */
		padding-right: 40px;
		padding-left: 40px;
	}
}

@media (min-width: 1400px) {
	.container-wide {
		max-width: 2000px; /* Even wider for very large screens */
		padding-right: 50px;
		padding-left: 50px;
	}
}

h2 {
	text-align: center;
	font-size: 40px;
	margin-block: 50px;
	color: var(--orange);
}

.work-item {
	display: block;
	width: 100%;
	height: 300px;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	border: 2px solid transparent;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);

	&:hover {
		border: 2px solid var(--blue);
	}

	&::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(20, 81, 123, 0.2);
	}

	@media (min-width: 576px) {
		height: 585px;
	}
}

.work-item::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.4s ease;
	position: absolute;
	top: 0;
	left: 0;
}

.work-item:hover::before {
	transform: scale(1.1);
}


/* Different background images using nth-child - targeting the column divs */
.col-xs-6:nth-child(1) .work-item::before {
	background-image: url('../img/ugc.png');
}

.col-xs-6:nth-child(2) .work-item::before {
	background-image: url('../img/Directing4.png');
}

.col-xs-6:nth-child(3) .work-item::before {
	background-image: url('../img/freelancer.jpg');
}

.col-xs-6:nth-child(4) .work-item::before {
	background-image: url('../img/youtube.jpg');
}

.work-item span {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 23px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: transform 0.3s ease-in-out;
	white-space: nowrap;
	border-radius: 5px 5px 0 0;
	z-index: 2;
	border-bottom: 3px solid transparent;
	transition: border-bottom 0.3s ease-in-out;

	@media (max-width: 767px) {
		font-size: 18px;
	}

}

.work-item:hover span {
	transform: translateX(-50%) translateY(0);
	border-bottom: 3px solid var(--orange);
}

.container{
	align-self: center;
}

.primary-white-button a {
	display: inline-block;
	background-color: #fff;
	font-size: 13px;
	padding: 12px 18px;
	color: #121212;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 20px;
}

.primary-blue-button a {
	display: inline-block;
	background-color: #33c1cf;
	font-size: 13px;
	padding: 12px 18px;
	color: #fff;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 20px;
}

.pop-button h4 {
	display: inline-block;
	background-color: #33c1cf;
	font-size: 13px!important;
	padding: 12px 18px;
	color: #fff;
	font-weight: 400!important;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 20px;
	cursor: pointer;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    height: 80px;
    background-color:transparent;  
    text-align: center;
    line-height: 40px;
}

.navbar-inverse .navbar-brand, .navbar-inverse .navbar-nav>li>a {
    text-shadow: none;
}

.navbar-brand {
	line-height: 80px;
	padding: 0px;
}

.navbar-nav>li>a {
	color: #ffffff!important;
	font-size: 17px;
	font-weight: 400;
	text-transform: uppercase;
	text-shadow: none;
	line-height: 80px;
	padding: 0px;
	letter-spacing: 0.5px;
}

.navbar-nav>li>a.active , .header.active .navbar-nav>li>a.active{
	color: var(--orange) !important;
}

.navbar-nav>li {
	margin-left: 45px;
}

.header.active .navbar-nav>li>a {
	font-family: 'Open Sans', arial, sans-serif;
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-shadow: none;
	color: #121212 !important;
}

.navbar-nav>li>a:hover {
	color: var(--orange) !important;
}

.header.active {
    background-color: rgba(250, 250, 250, 0.98);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}
.navbar-brand {
	font-family: 'Open Sans', sans-serif;
	font-size: 25px;
	text-transform: uppercase;
	color: #fff!important;
	transition: all 0.5s;
	 
}

/* .header.active .navbar-brand {
	color: #121212!important;
} */
.header .navbar-brand {
    font-weight: 800;
}
.navbar-inverse {
	background-image: none;
	background-color: transparent;
}
.header .navbar {
    margin: 0;
    border: none;
}
.page-section {
    padding: 80px 0;
}
.navbar-inverse .navbar-toggle {
	margin-top: 22px;
    border-color: var(--orange);
    background-color: var(--orange);
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
	background-color: var(--orange);
}
bootstrap.min.css
.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 15px!important;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .header .navbar-brand {
        padding-left: 0;
    }
    .navbar-nav {
        float: right;
    }
}
@media (max-width: 480px) {
    .page-section h1 {
        font-size: 3em;
    }
    .page-section h2 {
        font-size: 2em;
    }
    .page-section p {
        font-size: 1em;
        margin: 0 0 20px;
    }
}

.parallax-content {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
}

.baner-content{
	width: 100%;
  	text-align: center;
  	background-image: url(../img/clapper.png);
  	vertical-align: middle;
	background-position: center, center; 
}

.baner-content.portofolio{
  	background-image: url(../img/portfolio.JPG);
}

.baner-content.about{
	background-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.63)),
    url('../img/Directing\ 1.png');
}

.baner-content .text-content {
	text-align: center;
}

.baner-content .text-content h2 {
	font-size: 60px;
	font-weight: 400;
	color: #ffffff;
}

.baner-content .text-content h2 span {
	font-weight: 700;
	color: var(--orange)!important;
}

.baner-content .text-content h3{
	font-weight: 700;
	color: #ffffff!important;
}


.baner-content .text-content h2 em {
	font-style: normal;
	font-weight: 700;
	color: #ffffff!important;
}
.baner-content .text-content h3 em {
	font-size:large;
	font-weight: 600;
	color: #ffffff;
}

.baner-content .text-content p {
	color: #000000;
	font-size: 14px;
	line-height: 24px;
	padding: 0px 25%;
}

.baner-content .text-content .primary-white-button {
	margin-top: 25px;
}

#about .row{
	display: flex;
	margin: 30px 0;
	/* margin-top: 100px;
	margin-bottom: 30px; */
}

#about img{
	max-width: 80%;
	object-fit: contain;
	align-self: center;
	max-height: 90%;
}

#about p{
	width: 90%;
}

#about .row #image{
	display: flex;
  	justify-content: center;
	margin: 30px 0;
}

#about .row #description{
	margin: 30px 0;
	
}

.section-heading{
    padding: 0 20px;
}


@media (max-width: 767px){
	#about .row{
		display: flex;
		flex-direction: column-reverse;
	}

	#about p{
		align-self: center;

	}

	#about .row #description{
		display: flex;
  		flex-direction: column;
	}
}


#home .service-item .icon {
	width: 110px;
	height: 110px;
	display: inline-block;
	text-align: center;
	line-height: 104px;
	border: 3px solid #fff;
	border-radius: 50%;
	background-color: var(--orange);
	transition: all 0.2s ease-in-out;

	&:hover {
		background-color: var(--blue);
	}
}

#portfolio {
	padding-bottom: 50px;

	@media (min-width: 768px) {
		padding-bottom: 100px;
	}
}

#portoflio .page-section {
	padding: 0px;
}


.section-heading p{
	font-size: 16px;
}

#portfolio .project-item {
    padding-left: 0;
    padding-right: 0;
}

#portfolio .section-heading h4 {
	margin-top: 0px;
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 700;
	color: #000;
	letter-spacing: 1px;
}

#portfolio .section-heading p {
	color: #000;
	padding-right: 70px;
}

#portfolio .logo-container {
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#portfolio img {
	width: 100%;
	max-width: 300px;
	height: auto;
	margin: auto;
	display: block;
}

/* Responsive portfolio images */
@media (max-width: 767px) {
	#portfolio img {
		max-width: 250px;
	}
	
	#portfolio .logo-container {
		text-align: center;
		padding: 20px 15px;
	}
	
	#portfolio .col-md-6 {
		text-align: center;
	}
}

@media (max-width: 480px) {
	#portfolio img {
		max-width: 200px;
	}
	
	#portfolio .logo-container {
		padding: 15px 10px;
	}
}

@media (max-width: 320px) {
	#portfolio img {
		max-width: 180px;
	}
}


#testimonial {
	background-color: var(--green);
	text-align: center;
	padding: 100px 0px;
}

#testimonial .testimonials-item h4 {
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.5px;
	margin-top: 30px;
	margin-bottom: 5px;
}

#testimonial .testimonials-item span {
	font-size: 13px;
	color: #fff;
	letter-spacing: 0.5px;
}

#testimonial .testimonials-item p {
	font-size: 16px;
	color: #9a9a9a;
	font-style: italic;
	font-weight: 300;
	background-color: #fff;
	padding: 30px;
	border-radius: 5px;	
}

.owl-pagination {
  margin-top: 20px;
  opacity: 1;
  display: inline-block;
}

.owl-page span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0px 5px;
  filter: alpha(opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #fff;
}


#blog {
	background-image: url(../img/blog-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

#blog .section-heading {
	text-align: left;
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: rgba(0, 0, 0, 0.5);
	height: 582px;
	margin-left: -100vh;
	padding-left: 100vh;
	overflow: hidden!important;
}

#blog .section-heading h4 {
	margin-top: 0px;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
}

#blog .section-heading .line-dec {
	width: 270px;
	height: 1px;
	background-color: rgba(250, 250, 250, 0.5);
	margin: 20px 0 15px 0;
}

#blog .section-heading p {
	color: #fff;
	padding-right: 70px;
}

.wrapper {
  text-align: center;
}

.tabs {
  list-style: none;
  margin-top: 40px;
  padding-right: 70px;
}

.tabs li {
  display: block;
  text-align: center;
  margin: 25px 0px;
}

.tabs a {
  display:block;
  text-align:center;
  text-decoration:none;
  text-transform:capitalize;
  letter-spacing: 0.5px;
  color:#121212;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 12px;
  background-color: #fff;
}

.tabs a:hover {
  color: var(--orange);
}

.tabs .active {
  color: var(--orange);
}
#first-tab-group {
	margin-top: 30px;
	margin-bottom: 15px;
}
.tabgroup .text-content	 {
  background-color: #fff;
  color: #fff;
  padding: 25px;
  text-align: left;
}
.tabgroup .text-content h4 {
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: #121212;
	margin-top: 0px;
	margin-bottom: 5px;
}
.tabgroup .text-content span {
	font-size: 13px;
	color: #33c1cf;
}
.tabgroup .text-content a {
	font-size: 13px;
	color: #33c1cf;
	text-decoration: none;
}
.tabgroup .text-content p {
	margin-top: 10px;
}

.clearfix:after {
  content:"";
  display:table;
  clear:both;
}

#contact-us {
	background-color: #596065;
	text-align: center;
	padding: 80px 0px;
}

#contact-us .section-heading h4 {
	margin-top: 0px;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
}

#contact-us .section-heading .line-dec {
	width: 270px;
	height: 1px;
	background-color: rgba(250, 250, 250, 0.5);
	margin: 20px auto 15px auto;
}

#contact-us .section-heading p {
	color: #fff;
	padding: 0px 33%;
}

#contact-us .pop-button {
	margin-top: 30px;
}

#contact input {
  border-radius: 0px;
  padding-left: 15px;
  font-size: 13px;
  color: #232323;
  background-color: rgba(250, 250, 250, 1);
  outline: none;
  border: none;
  box-shadow: none;
  line-height: 50px;
  height: 50px;
  width: 100%;
  margin-bottom: 30px;
}

#contact textarea {
  border-radius: 0px;
  padding-left: 15px;
  padding-top: 10px;
  font-size: 13px;
  color: #232323;
  background-color: rgba(250, 250, 250, 1);
  outline: none;
  border: none;
  box-shadow: none;
  height: 165px;
  max-height: 220px;
  width: 100%;
  margin-bottom: 25px;
}

#contact button {
  display: inline-block;
	background-color: var(--orange);
	font-size: 13px;
	padding: 12px 18px;
	color: #fff;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 20px;
}

.pop #contact {
	z-index: 99999;
	position: fixed;
	top: 25%;
	left: 20%;
	right: 20%;
}

.pop {
	z-index: 99999;
	text-align: center;
	padding: 30px;
    display:none;
    position:fixed;
    width: 100%;
    top:0;
    left:0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0px 0px 15px;
}

.pop span {
	z-index: 999;
	position: relative;
	margin-bottom: 20px;
	cursor: pointer;
	width: 44px;
	height: 44px;
	display: inline-block;
	line-height: 44px;
	color: #fff;
	text-align: center;
	background-color: #33c1cf;
}

.pop span:hover {
	background-color: #596065;
	transition: all 0.5s;
}

.row{
	margin-left: 0;
	margin-right: 0;
}

section#portfolio .row{
	display: flex;
  	flex-wrap: wrap;
}

section#portfolio .col-sm-12{
	display: flex;
	flex-direction: column;
}

#boxes .row #short-films{
	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.7)), url("../img/Directing\ 1.png");
	background-size: cover;
	background-position: 60% 50%;
}

#boxes .row #freelance{
	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.7)), url("../img/Directing\ 2.png");
	background-size: cover;
	background-position: 70% 50%;
}

#boxes .row #youtube{
	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.7)), url("../img/Thumnails\ 2.png");
	background-size: cover;
	background-position: 70% 50%;
}

#boxes .row a{
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	text-decoration: none;
}

#boxes .row a:hover h2{
	color: var(--orange);
}

#boxes .row h2{
	align-self: center;
	color: white;
}

#boxes .row{
	width: 100%;
	height: auto;
	margin: 0;
}

#boxes .col-sm-12{
	margin: 0;
	padding: 0;
	height: 50vh;
	display: flex;
}



footer {
	margin-top: -6px;
    background-color: var(--green);
	padding: 50px 0px;
}
footer .logo em {
	font-style: normal;
	font-size: 28px;
	color: var(--orange);
}

footer .logo-ft {
	display: inline-block;
	text-decoration: none;
	color: #fff!important;
	font-size: 21px;
	font-weight: 900;
	text-transform: uppercase;
	text-shadow: none;
	letter-spacing: 1px;
}

footer .logo p {
	font-weight: 300;
	font-size: 12px;
	color: #fff;
	margin-bottom: -10px;
	letter-spacing: 0.5px;
}

footer .logo span {
	font-weight: 600;
	color: var(--orange);
}

footer .logo a {
	color: #FFF;
}

footer .logo a:hover {
	color: #9F0;
}

footer .location h4 {
	margin-top: 0px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
}

footer .location ul li {
	font-size: 13px;
	color: #fff;
	display: inline-block;
	line-height: 24px;
	letter-spacing: 0.5px;
	padding-top: 5px;
	padding-bottom: 5px;
}

footer .location ul li:first-child {
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid rgba(250, 250, 250, 0.1);
}

footer .contact-info h4 {
	margin-top: 0px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
}

footer .contact-info ul li {
	font-size: 13px;
	color: #fff;
	display: inline-block;
	line-height: 24px;
	letter-spacing: 0.5px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: 300;
	margin-bottom: -15px;
}

footer .contact-info ul li em {
	font-style: normal;
	font-weight: 500;
}

footer .connect-us h4 {
	margin-top: 0px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 35px;
}

footer .connect-us ul li {
	display: inline-block;
	margin-right: 2px;
}

footer .connect-us ul li a {
	display: inline-block;
	width: 28px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	background-color: #fff;
	border-radius: 50%;
	color: #373a3c;
	font-size: 15px;
	transition: all 0.3s;
}
footer .connect-us ul li a:hover {
	background-color: var(--orange);
}

iframe{
	max-width: 100%;
	aspect-ratio: 560/315;
}


/* RESPONSIVE */

@media (max-width: 991px){

	.baner-content .text-content p {
		padding: 0px 15%;
	}


	#about .service-item {
		margin-bottom: 80px;
	} 

	#portfolio .section-heading {
		text-align: center;
	}

	#portfolio .section-heading .line-dec {
		margin: 20px auto 15px auto;
	}

	#portfolio .section-heading p {
		padding: 0px 20px;
	}

	.projects-holder {
		text-align: center;
		padding: 15px 0px;
	}

	#portfolio .project-item {
		margin: 15px 0px;
	}

	#blog .section-heading {
		text-align: center;
		padding-top: 100px;
		padding-bottom: 100px;
		background-color: rgba(0, 0, 0, 0.5);
		margin-left: -15px;
		padding-left: 0vh;
		margin-right: -15px;
		padding-right: 0vh;
		overflow: hidden!important;
	}

	#blog .section-heading .line-dec {
		margin: 20px auto 15px auto;
	}

	#blog .section-heading p {
		padding: 0px 30px;
	}

	.tabs {
		padding: 0px 45px;
	}

	#first-tab-group {
		margin-bottom: 30px;
	}

	#contact-us .section-heading p {
		padding: 0px 10%;
	}

	footer .logo {
		margin-bottom: 30px;
	}

	footer .location {
		margin-bottom: 30px;
		padding-bottom: 30px;
		/* border-bottom: 1px solid rgba(250, 250, 250, 0.1); */
	}

	footer .contact-info {
		margin-bottom: 30px;
		/* border-bottom: 1px solid rgba(250, 250, 250, 0.1); */
	}

	footer .contact-info ul li {
		margin-right: 10px;
		margin-left: 10px;
	}

}

@media (max-width: 767px){
	.baner-content .text-content p {
		padding: 0px 10%;
	}
	#main-nav {
		margin-left: -15px;
		margin-right: -15px;
		border-top: none;
		/* margin-top: 15px; */
		background-color: rgba(250, 250, 250, 0.95);
	}

	.navbar-nav {
		margin-top: 0px;
		margin-bottom: 0px;
	}

	.navbar-inverse .navbar-nav>li {
		margin-left: 0px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.6);
	}

	.navbar-inverse .navbar-nav>li:last-child {
		border-bottom: none;
	}


	.navbar-inverse .navbar-nav>li>a {
		font-family: 'Roboto', sans-serif!important;
		line-height: 55px;
		color: #343434!important;
	}

}

@media (max-width: 385px){

	footer .location ul li {
		display: block;
	}

	footer .location ul li:first-child {
		margin-right: 0px;
		padding-right: 0px;
		border-right: none;
	}

}


@media(max-width:767px){
	.header {
		background-color: rgba(250, 250, 250, 0.98) !important;
		box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
	}
	
	.header .logo {
		content: url("../img/logo2.png") !important;
		width: 120px !important;
	}
	
	.header .navbar-nav>li>a {
		font-family: 'Open Sans', arial, sans-serif;
		font-size: 13px;
		font-weight: 300;
		letter-spacing: 0.5px;
		text-transform: uppercase;
		text-shadow: none;
		color: #121212 !important;
	}
	
}

/* UGC Intro Section Styles */
.ugc-intro {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    font-weight: 300;
}

.accordion-container {
    max-width: 600px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #eee;
}

.accordion-header:hover {
    background-color: #f8f9fa;
}

.accordion-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.accordion-icon {
    font-size: 18px;
    font-weight: bold;
    color: #666;
    transition: transform 0.3s ease;
}

.accordion-content {
    display: none;
    padding: 0 20px 20px 20px;
    background-color: #fff;
}

.accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
	text-align: left;
}

.accordion-list li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.accordion-list li:last-child {
    border-bottom: none;
}

.accordion-list li:before {
    content: "- ";
    color: #999;
    margin-right: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro-text {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .accordion-container {
        margin: 0 15px;
    }
    
    .accordion-header {
        padding: 12px 15px;
    }
    
    .accordion-content {
        padding: 0 15px 15px 15px;
    }
}
