/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

/* Navbar */
.navbar {
    background: #1e90ff;
    color: white;
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar h1 {
    font-size: 24px;
}

.navbar nav ul {
    display: flex;
    list-style: none;
}

.navbar nav ul li {
    margin-right: 20px;
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
	padding: 10px 15px;
    border-radius: 5px;
}

.navbar nav ul li a:hover {
    color: #dcdcdc;
	background-color: rgba(255, 255, 255, 0.2);
}

.navbar nav ul li a.active {
    background-color: white;
    color: #1e90ff;
}


/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1e90ff;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.btn {
    background: #0056b3;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #003d80;
}

/* Hero Section with Slideshow */
.hero {
	
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slideshow-container {
    max-width: 100%;
    position: relative;
}

.slide {
    display: none;
}

.slide-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 24px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.feature-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-item {
    background: #f9f9f9;
    padding: 20px;
    margin: 10px;
    flex-basis: 30%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.feature-item img {
    width: 60px;
    margin-bottom: 20px;
}

.feature-item h4 {
    margin-bottom: 10px;
    font-size: 22px;
}

.feature-item p {
    font-size: 16px;
}

/* About Section */
.about {
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1e90ff;
    color: white;
    flex-wrap: wrap;
}

.about-content {
    flex-basis: 50%;
}

.about-image {
    flex-basis: 40%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Floating WhatsApp Chat */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 1000;  /* Agar tetap di atas elemen lainnya */
}

.whatsapp-chat:hover {
    transform: scale(1.1);
}

.whatsapp-chat img {
    width: 40px;
    height: 40px;
}


/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
    }

    .dropdown-content {
        position: static;
    }

    .hero {
        height: 80vh;
    }

    .feature-grid {
        flex-direction: column;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-content, .about-image {
        flex-basis: 100%;
    }
}



/* Social Media Icons in Footer */
.social-icons {
    position: absolute;
    bottom: 10px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.social-icons a img {
    width: 5px; /* Adjust the size of the icons */
    height: 5px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2); /* Enlarge icons slightly on hover */
}

/* Social Media Icons in Footer */
.social-icons-fixed {
    display: flex;
    justify-content: center;  /* Center the icons */
.social-icons-fixed a {
    margin: 0 10px;  /* Space between each icon */
}

.social-icons-fixed a img {
    width: 5px;  /* Set the size of the icons */
    height: 5px;
    transition: transform 0.3s ease;  /* Smooth hover effect */
}

.social-icons-fixed a:hover img {
    transform: scale(1.2);  /* Slightly enlarge on hover */
}

/* Footer styles */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 20px;
    font-size: 32px;
    color: #333;
}

.pricing p {
    margin-bottom: 40px;
    font-size: 18px;
    color: #555;
}

.pricing-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-basis: 22%;
}

.pricing-item h3 {
    font-size: 24px;
    color: #007BFF;
    margin-bottom: 10px;
}

.pricing-item p {
    font-size: 22px;
    margin-bottom: 20px;
}

.pricing-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-item ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.pricing-item .btn {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.pricing-item .btn:hover {
    background-color: #0056b3;
}

/* Package Colors */
.bronze {
    border: 2px solid #cd7f32;
}

.silver {
    border: 2px solid #c0c0c0;
}

.gold {
    border: 2px solid #ffd700;
}

.platinum {
    border: 2px solid #e5e4e2;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
    }
}

/* Contact Us Section */
.contact {
    background-color: white;
    padding: 10px 0;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-item {
    flex-basis: 30%;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 22px;
    color: #007BFF;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 18px;
    color: #333;
}

.contact-form {
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
}

.contact-form h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.btn {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
    }

    .contact-item {
        flex-basis: 100%;
    }
}

/* Style for the navbar logo */
.navbar-logo {
    height: 70px;  /* Adjust the height as needed */
    width: auto;   /* Maintain the aspect ratio */
    position: absolute;
    left: 20px;   /* Position it to the right */
    top: 0px;     /* Adjust spacing from the top */
}

/* Burger Menu Styles */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
}

.burger span {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Burger Menu Animation */
.burger.toggle span:nth-child(1) {
    transform: rotate(45deg) translateY(6px);
}

.burger.toggle span:nth-child(2) {
    opacity: 0;
}

.burger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translateY(-6px);
}

/* Navigation Links */
.nav-links {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

/* Responsive: Burger Menu */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    /* Hide the nav-links initially */
    .nav-links {
        display: none;
        position: absolute;
        top: 60px; /* Adjust based on the height of your navbar */
        right: 0;
        background-color: #1e90ff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    /* Dropdown inside burger menu */
    .dropdown-content {
        position: static;
        width: 100%;
    }

    .dropdown-content a {
        padding: 10px;
        width: 100%;
        text-align: center;
    }
}
