/* General Body and Background */
body {
    background-color: #2c2c2c; /* Dark background */
    color: white;
    font-family: Arial, sans-serif;
}

/* Navbar Styling */
.navbar {
    background: black;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
}

/* Change background when scrolling */
.navbar.scrolled {
    background: black; /* Fully black when scrolling */
}

/* Brand Logo */
.navbar-brand {
    font-size: 26px;
    font-weight: bold;
    color: #f1c40f !important; /* Golden color */
    text-transform: uppercase;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-size: 18px; /* Increased font size */
    font-weight: 600; /* Increased font weight for bolder text */
    color: white !important;
    padding: 12px 20px; /* Increased padding for more spacing */
    position: relative;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.navbar-nav .nav-link:hover {
    color: #f1c40f !important; /* Golden hover effect */
}

/* Active Link */
.navbar-nav .nav-link.active {
    font-weight: 700; /* Bold text */
    color: #f1c40f !important; /* Golden color for active link */
}

/* Underline Effect */
.navbar-nav .nav-link::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: #f1c40f;
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%; /* Increased underline width for more impact */
}

/* Navbar Toggler Icon */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-color: white;
    border-radius: 3px;
}

/* Make Navbar Sticky */
.navbar.fixed-top {
    z-index: 1030;
}

/* Navbar Logo - Bigger Size */
.navbar-brand .logo {
    height: 100px; /* Increased size */
    width: auto;   /* Keeps aspect ratio */
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.navbar-brand .logo:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Navbar Height Adjustment */
.navbar {
    padding: 0.5rem 1rem; /* Adjusts padding for larger logo */
}

/* Adjust Logo Size on Smaller Screens */
@media (max-width: 992px) {
    .navbar-brand .logo {
        height: 80px; /* Slightly smaller for tablets */
    }
}

@media (max-width: 768px) {
    .navbar-brand .logo {
        height: 70px; /* Smaller for mobile */
    }
}
/* Active Link */
.navbar-nav .nav-link.active {
    font-weight: 700; /* Bold text */
    color: #f1c40f !important; /* Golden color for active link */
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    color: #f1c40f !important; /* Golden hover effect */
}

/* Underline Effect */
.navbar-nav .nav-link::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: #f1c40f;
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%; /* Increased underline width for more impact */
}

/* Hero Section with Slider */
.carousel-item {
    height: 100vh; 
}

.carousel-caption {
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 3rem;
}

.carousel-caption .btn {
    padding: 15px 30px;
    font-size: 1.25rem;
}

/* Hero Section */
h1 {
    color: gold;
}

h1.display-3 {
    font-weight: bold;
}

p.lead {
    font-size: 1.5rem;
}

.btn-warning {
    background-color: #f1c40f;
    border-color: #f1c40f;
}

.btn-warning:hover {
    background-color: #d4ac0d;
    border-color: #d4ac0d;
}
/* Make sure text in the How It Works section is dark */
.how-it-works h5, 
.how-it-works p {
    color: #333; /* Dark text color */
}

    .hover-zoom:hover img {
        transform: scale(1.1); /* Zoom effect on hover */
        transition: transform 0.3s ease-in-out;
    }
    .card {
        border: none;
    }
    .card-body {
        text-align: center;
    }
    .card-title {
        font-size: 1.2rem;
        font-weight: bold;
    }
    .card-text {
        font-size: 1rem;
        color: #555;
    }
    
/* Google Translate Widget */
#google_translate_element {
    position: fixed;
    top: 10%;
    right: 20px;
    z-index: 9999;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

 .product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3); /* Golden glow effect */
}

/* Fixing Image Issue */
.product-card img {
    width: 100%;  /* Ensures full width */
    height: 300px; /* Adjust height to maintain consistency */
    object-fit: cover; /* Ensures the image fills the area without distortion */
}

.card-body {
    background: #212121; /* Dark background */
    color: white;
    border-radius: 0 0 10px 10px;
}

.btn-warning {
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-warning:hover {
    background: #b8860b; /* Dark golden shade */
    color: white;
}

.faq {
    background-color: white; /* White Background */
    padding: 60px 0;
}

.accordion-button {
    background-color: #ffd700; /* Golden Color */
    color: black;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.accordion-button:hover {
    background-color: #b8860b; /* Darker Golden */
    color: white;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.accordion-body {
    background-color: #f8f9fa; /* Light Gray for Readability */
    color: #333;
}

   /* Footer Styling */
footer {
    background-color: #212121;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #f1c40f;
}

/* Social Icons Hover Effect */
.social-icon {
    transition: color 0.3s ease;
}

.social-icon i {
    font-size: 30px; 
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2); 
}

/* Hover effects for each social icon */
.social-icon:hover .fa-facebook {
    color: #1877F2;
}

.social-icon:hover .bi-whatsapp {
    color: #25D366; 
}

.social-icon:hover .bi-linkedin {
    color: #0077b5; 
}

.social-icon:hover .bi-instagram {
    color: #E1306C; 
}

.social-icon:hover .bi-youtube {
    color: #FF0000; 
}

.social-icon:hover .fa-tiktok {
    color: #ff0050; 
}



.footer-icon {
    color: #fff;
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-icon:hover {
    color: #ffc107;
    transform: translateY(-3px);
}

.footer-link {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffc107;
}
