/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

/* Navbar Styles */
.navbar {
    border: none;
    box-shadow: none;
    background-color: #ffffff;
    margin-bottom: 0; /* Pastikan margin bawah dihilangkan */
    padding-bottom: 0; /* Jika ada padding tambahan, atur menjadi nol */
}

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

.navbar-nav .nav-link {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 15px;
    position: relative;
}

/* Garis bawah untuk hover dan active */
.navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px; /* Samakan ketebalan untuk hover dan active */
    background: #000;
    transition: width 0.3s ease;
    margin: auto;
}

/* Efek garis saat hover */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%; /* Panjang garis penuh pada hover dan active */
}

/* Dropdown Menu Styling */
.navbar .dropdown-menu {
    background-color: #ffffff; /* Warna background putih */
    border: 1px solid #ddd; /* Border tipis untuk memisahkan */
    border-radius: 5px; /* Sedikit melengkung di sudut */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Bayangan lembut */
}

/* Dropdown Item Styling */
.navbar .dropdown-menu .dropdown-item {
    color: #333; /* Warna teks hitam */
    padding: 10px 15px; /* Spasi internal */
    transition: background-color 0.3s ease, color 0.3s ease; /* Efek transisi */
}

/* Hover Effect for Dropdown Items */
.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #f0f0f0; /* Background saat dihover */
    color: #000; /* Warna teks saat dihover */
}

.sticky-top {
    z-index: 1030;
}

@media (max-width: 768px) {
    .navbar {
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        flex-direction: column;
    }
}

.social-icons a {
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #007bff;
}

/* Align Social Icons for Desktop */
.social-icons {
    justify-content: flex-end;
}

/* Adjust Social Icons for Mobile */
@media (max-width: 991px) {
    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }
}

.hero {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh; /* Pastikan konten selalu berada di tengah layar */
    background-image: url("../../media/home-hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0 1rem;
    min-height: 80vh;
}

/* Overlay Gelap untuk Meningkatkan Keterbacaan */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Gelap transparan */
    z-index: 1;
}

/* Konten Teks di Tengah */
.hero .content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

/* Warna Teks Putih */
.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.hero h1 .subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6431;
    line-height: 1.3;
}

.hero p {
    color: #f1f1f1;
}

/* Style Tombol dengan Kontras yang Jelas */
.hero .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    margin: 10px;
    color: #fff;
}

.hero .btn-dark {
    background-color: #000;
    border: 1px solid #fff;
}

.hero .btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
}

.hero .btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .btn {
        width: 100%;
    }
}

#about {
    background-color: #f8f9fa;
}

#about .about-text {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

#about h2 {
    font-size: 2.5rem;
    color: #333;
}

#about p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Ensure the image is full height */
#about img {
    height: 100%;
    object-fit: cover;
}

#services {
    background-color: #ffffff;
}

#services h2 {
    font-size: 2.5rem;
    color: #333;
}

/* Service Item */
.service-item {
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

/* Hover Effect for Service Item */
.service-item:hover {
    transform: translateY(-10px);
}

/* Icon Styling */
.service-item img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

/* Title Styling */
.service-item h5 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
}

/* List Styling */
.service-item ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-item ul li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

#clients {
    background-color: #f8f9fa;
}

#clients h2 {
    font-size: 2.5rem;
    color: #333;
}

/* Client Logo Styling */
#clients .row .col {
    max-width: 120px;
    height: auto;
    display: block;
    margin: auto;
    transition: transform 0.3s ease;
}

#clients img {
    max-height: 60px;
    width: auto;
    display: block;
    margin: auto;
    transition: transform 0.3s ease;
}

#clients .row .col img:hover {
    transform: scale(1.1);
}

#home-ourworks {
    background-color: #3a3a3a; /* Background color */
    color: #fff;
}

#home-ourworks h2 {
    font-size: 2.5rem;
    color: #fff;
}

#home-ourworks p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
}

.work-item {
    position: relative;
    overflow: hidden;
}

.work-item img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.work-item:hover img {
    transform: scale(1.05);
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.play-button i {
    color: #fff;
    transition: color 0.3s ease;
}

.play-button:hover i {
    color: #000;
}

.work-item h5 {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

#footer {
    background-color: #f8f9fa;
    color: #333;
}

#footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

#footer ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

#footer ul li {
    margin-bottom: 0.5rem;
}

#footer ul li a {
    font-size: 0.9rem;
    transition: color 0.3s;
}

#footer ul li a:hover {
    color: #007bff;
}

#footer p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Tombol Sosial Media */
#footer .btn-sm {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

/* Hover effect */
#footer .btn-sm:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Container untuk tombol horizontal */
#footer .d-flex {
    justify-content: start; /* Atur posisi sesuai kebutuhan (start, center, end) */
    gap: 10px; /* Jarak antar tombol */
}


#service-consultancy {
    background-color: #2c6452; /* Dark green background */
    color: #ffffff;
}

#service-consultancy .content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#service-consultancy .content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

#service-consultancy .content ul {
    padding: 0;
    list-style: none;
}

#service-consultancy .content ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

#service-consultancy .img-call {
    max-height: 300px;
    width: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#service-consultancy .img-call:hover {
    transform: scale(1.05);
}

#service-branding {
    background-color: #b1985e; /* Background color for branding section */
    color: #ffffff;
}

#service-branding .content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

#service-branding .content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #fff;
}

#service-branding .content ul {
    padding: 0;
    list-style: none;
}

#service-branding .content ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

#service-branding .img-fluid {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

#service-branding .img-fluid:hover {
    transform: scale(1.05);
}

#service-branding .icon img {
    width: 50px;
    height: auto;
}

#service-content-management {
    background-color: #486775; /* Background color */
    color: #ffffff;
}

#service-content-management .content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#service-content-management .content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

#service-content-management .content ul {
    padding: 0;
    list-style: none;
}

#service-content-management .content ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

#service-content-management .img-fluid {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

#service-content-management .img-fluid:hover {
    transform: scale(1.05);
}

#service-content-management a {
    font-size: 0.9rem;
    font-weight: 500;
}

#service-content-management a:hover {
    text-decoration: underline;
}

#service-creative-production-photo {
    background-color: #f5f5f5; /* Light gray background */
    color: #333;
}

#service-creative-production-photo .content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

#service-creative-production-photo .content ul {
    padding: 0;
    list-style: none;
}

#service-creative-production-photo .content ul li {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

#service-creative-production-photo .img-fluid {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#service-creative-production-photo .img-fluid:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#service-creative-production-photo .icon img {
    width: 50px;
    height: auto;
}

#service-creative-production-video {
    background-color: #7d7d7d; /* Background color for the section */
    color: #ffffff;
}

#service-creative-production-video .content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#service-creative-production-video .content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

#service-creative-production-video .video-wrapper img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

#service-creative-production-video .video-wrapper img:hover {
    transform: scale(1.05);
}

#service-creative-production-video .video-wrapper a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
}

#service-creative-production-video .video-wrapper a:hover {
    text-decoration: underline;
}

#service-creative-production-documentary {
    background-color: #e5e5e5; /* Light gray background */
    color: #333;
}

#service-creative-production-documentary .content img {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

#service-creative-production-documentary .content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

#service-creative-production-documentary .video-wrapper img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

#service-creative-production-documentary .video-wrapper img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#service-creative-production-documentary .video-wrapper a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

#service-creative-production-documentary .video-wrapper a:hover {
    text-decoration: underline;
}

#service-creative-production-webseries {
    background-color: #f8f8f8; /* Light gray background */
    color: #333;
}

#service-creative-production-webseries .content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#service-creative-production-webseries .content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

#service-creative-production-webseries .video-wrapper img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

#service-creative-production-webseries .video-wrapper img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#service-creative-production-webseries .video-wrapper a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

#service-creative-production-webseries .video-wrapper a:hover {
    text-decoration: underline;
}

#service-creative-production-company {
    background-color: #fefaf6; /* Light beige background */
    color: #333;
}

#service-creative-production-company .content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

#service-creative-production-company .content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

#service-creative-production-company .video-wrapper img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

#service-creative-production-company .video-wrapper img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#service-creative-production-company .video-wrapper a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

#service-creative-production-company .video-wrapper a:hover {
    text-decoration: underline;
}

#service-creative-production-company .text-center a {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

#service-creative-production-company .text-center a:hover {
    color: #007bff;
}

#service-creative-production-music {
    background-color: #fefaf6; /* Light beige background */
    color: #333;
}

#service-creative-production-music h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

#service-creative-production-music p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

#service-creative-production-music img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

#service-creative-production-music img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#service-creative-production-music a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

#service-creative-production-music a:hover {
    text-decoration: underline;
}

#service-creative-production-music .list-unstyled {
    padding: 0;
    font-size: 1rem;
}

#service-creative-production-music .list-unstyled li {
    margin-bottom: 0.5rem;
}

/* General Section Styles */
#pricing {
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #2c3e50;
}

/* Pricing Items */
.pricing-item {
    margin-bottom: 40px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.pricing-list {
    list-style-type: disc; /* Use bullet points */
    margin-left: 20px; /* Ensure bullets are aligned properly */
    padding: 0; /* Remove default padding */
}

/* Mobile Specific Styling */
@media (max-width: 768px) {
    .pricing-item {
        text-align: left; /* Ensure content aligns left */
    }

    .pricing-list {
        margin-left: 20px; /* Keep the bullet points indented */
    }
}


.pricing-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #34495e;
}

.pricing-item .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.pricing-item ul {
    list-style: disc;
    padding-left: 20px;
    flex: 1;
    color: #7f8c8d;
}

.pricing-item ul li {
    margin-bottom: 10px;
}

.range-budget {
    text-align: center;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    flex: 0.3;
}

.range-budget p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: bold;
}

.range-budget span {
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .pricing-item .content {
        flex-direction: column;
    }

    .range-budget {
        margin-top: 20px;
    }
}

.office-section {
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

.office-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  text-align: left;
}

.office-item {
  width: 48%;
}

.office-item h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.office-item p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.office-bottom {
  display: flex;
  justify-content: space-between;
  background-color: #000;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.office-info,
.office-map {
  width: 48%;
  margin-bottom: 20px; /* Add spacing for mobile view */
}

.office-info h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.office-info p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.office-info .call-info {
  margin-top: 10px;
  font-size: 1rem;
}

.office-map iframe {
  border-radius: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
}

.btn-primary {
  background-color: #000;
  color: #fff;
}

.btn-secondary {
  background-color: #fff;
  color: #000;
  border: 2px solid #fff;
}

/* Media Query for Mobile View */
@media (max-width: 768px) {
  .office-container {
    flex-direction: column;
  }

  .office-info,
  .office-map {
    width: 100%;
  }

  .office-info h2 {
    font-size: 1.2rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}