
body {
	background: #f7f7f7;
}
.section-title {
	text-align: center;
	padding: 25px 0;
}
.section-title h2 {
	font-size: 40px;
	text-transform: uppercase;
	font-family: oswald;
	font-weight: 700;
	text-shadow: 0 1px 2px rgb(231, 12, 12);
}
.section-title h2 span {
	color: rgb(76, 0, 255);
}
.contact-form {
	background-color: #fff;
	box-shadow: rgba(105, 97, 97, 0.934) 0px 5px 15px;
	padding: 40px 30px;
}
.contact-form .btn {
	background: rgb(92, 9, 236);
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 50px;
	letter-spacing: 1px;
}
.map-area {
	width: 600px;
	height: 465px;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.map-area iframe {
	width: 100%;
	height: 100%;
	border: none;
}
/*responsive*/

@media (max-width: 991px) {
	.contact-form {
		margin-bottom: 30px;
	}
	.map-area {
		width: 100%;
		height: 400px;
	}
}
/* Ganti efek hover dengan rotate */
.social-icon:hover {
    transform: rotate(360deg);
}

/* Atau efek bounce */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.social-icon {
    box-shadow: 0 0 10px currentColor;
}
.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.floating-whatsapp a {
	text-decoration: none;
	/* ... style lainnya ... */
  }
  
  .floating-whatsapp a:hover {
	text-decoration: none;
	/* ... style hover lainnya ... */
  }
  
  .floating-whatsapp i {
	text-decoration: none !important;
	border: none !important;
  }
  .contact-container {
    width: 300px; /* Lebar container */
    right: 30px; /* Jarak dari kanan */
}





.contact-icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-text::after {
    content: "Kirim email kepada kami";
    position: absolute;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-left: 10px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.logo.bounce {
    animation: bounce 0.5s ease infinite;
}
@media (max-width: 768px) {
    .logo {
        width: 40px;
        height: 40px;
    }
}


/* styles.css */
.floating-button {
    position: fixed; /* Membuat button tetap di layar */
    right: 20px; /* Jarak dari kanan */
    z-index: 1000; /* Memastikan button selalu di atas elemen lain */
    background-color: #25D366; /* Warna default (WhatsApp hijau) */
    color: white; /* Warna ikon */
    padding: 15px; /* Padding untuk ukuran button */
    border-radius: 50%; /* Membuat button bulat */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Efek bayangan */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Animasi saat hover */
    text-decoration: none; /* Menghilangkan underline pada link */
}

.floating-button.whatsapp {
    bottom: 90px; /* Jarak dari bawah (posisi WhatsApp) */
    background-color: #25D366; /* Warna WhatsApp */
}

.floating-button.phone {
    bottom: 20px; /* Jarak dari bawah (posisi telepon) */
    background-color: #007BFF; /* Warna telepon (biru) */
}

.floating-button:hover {
    transform: scale(1.1); /* Efek zoom saat hover */
}

.floating-button.whatsapp:hover {
    background-color: #128C7E; /* Warna WhatsApp saat hover */
}

.floating-button.phone:hover {
    background-color: #0056b3; /* Warna telepon saat hover */
}







       /* Custom CSS untuk video */
        .carousel-item video {
            width: 100%;
            height: auto;
        }
        
        /* Tinggi carousel di desktop */
        @media (min-width: 768px) {
            .carousel-item {
                height: 600px;
            }
        }
        
        /* Tinggi carousel di mobile */
        @media (max-width: 767px) {
            .carousel-item {
                height: 300px;
            }
        }




        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        h1 {
            text-align: center;
            color: #333;
        }
        .client-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 20px;
        }
        .client-card {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            width: 200px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .client-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .client-logo {
            width: 100px;
            height: 100px;
            object-fit: contain;
            margin-bottom: 15px;
        }
        .client-name {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }



        
        .navbar-nav .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #007bff;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #007bff !important;
        }

        