/* General Styles */
 /* General styles */
 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.gold-price-table th, .gold-price-table td {
            text-align: center;
            vertical-align: middle;
        }
        .compare-section {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            margin-top: 20px;
        }
        .compare-btn {
            background-color: #ff9900;
            color: #fff;
        }
        .compare-btn:hover {
            background-color: #cc7a00;
        }
        .nav-right {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px;
        }

       
        @media (max-width: 768px) {
            .nav-right {
                display: none;
                flex-direction: column;
                background-color: #ff9900;
                position: absolute;
                top: 60px;
                right: 0;
                width: 100%;
            }
            .nav-right.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
        }




/* Hero Section */
.hero {
    background: url('images/03banner-3.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 5rem 1rem;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero .btn {
    background: #333;
    color: #ffd700;
    padding: 0.5rem 1rem;
    border: none;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
}

/* Table Section */
.gold-prices {
    padding: 2rem 1rem;
    background: #f9f9f9;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.price-table th, .price-table td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: left;
}

/* Services Section */
.services {
    padding: 2rem 1rem;
}

.service-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.card {
    background: #ffd700;
    padding: 1rem;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 1rem);
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: #fff;
    margin-top: 1rem;
}


/* General Navbar Styles */
.navbar {
    background: #ffd700; /* Gold background */
    padding: 1rem;
    display: flex;
    justify-content: space-between; /* Space between logo and nav-right */
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo Style */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    
}

/* Right-side Container */
.nav-right {
    display: flex;
    align-items:right;
    gap: 0rem; /* Spacing between the items */
}

/* Navigation Links */
.action-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.action-link:hover {
    background-color: #333;
    color: #ffd700;
    border-radius: 5px;
}

/* Get Instant Cash Button */
.btn-get-cash {
    background: #333;
    color: #ffd700;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-get-cash:hover {
    background: #555;
    color: #fff;
}

/* Vibrating Icons */
.icon {
    font-size: 1.5rem;
    text-decoration: none;
    color: #333;
    animation: vibrate 0.5s infinite;
}

.phone-icon:hover,
.whatsapp-icon:hover {
    color: green;
}

/* Vibration Animation */
@keyframes vibrate {
    0% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
}
/* Home Section Styles */
.home-section {
    background: linear-gradient(135deg, #f0f0f0, #ffd700);
    padding: 3rem 1rem;
    text-align: center;
}

/* Headline and Text */
.home-content {
    margin-bottom: 2rem;
}

.home-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.home-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.btn-sell-now {
    background: #333;
    color: #ffd700;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-sell-now:hover {
    background: #555;
    transform: scale(1.05);
}

/* Image Gallery Section */
.home-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.home-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.home-image:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-content h1 {
        font-size: 2rem;
    }

    .home-content p {
        font-size: 1rem;
    }

    .home-images {
        flex-direction: column;
    }

    .home-image {
        width: 100%;
        margin-bottom: 1rem;
    }
}
/* General Styling for Sections */
section {
    padding: 3rem 1rem;
    margin-top: 2rem;
}

/* Home Section Styling */
.home-section {
    background: linear-gradient(135deg, #f0f0f0, #ffd700);
    text-align: center;
}

.home-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.home-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.home-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.home-image:hover {
    transform: scale(1.05);
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: #fff;
    text-align: center;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.feature {
    width: 200px;
    text-align: center;
}

.feature h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 1rem;
    color: #555;
}

/* Testimonials Section */
.testimonials-section {
    background: #f0f0f0;
    text-align: center;
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    width: 300px;
    padding: 1rem;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    color: #555;
}

.testimonial h4 {
    font-weight: bold;
    margin-top: 1rem;
    color: #333;
}

/* Pricing Comparison Section */
.pricing-comparison-section {
    background: #ffd700;
    text-align: center;
}

.pricing-table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    margin-top: 1rem;
}

.pricing-table th, .pricing-table td {
    padding: 0.75rem;
    border: 1px solid #ccc;
}

.pricing-table th {
    background: #333;
    color: #ffd700;
}

.pricing-table td {
    background: #fff;
    color: #333;
}

/* Sell Now Section */
.sell-now-section {
    background: #fff;
    text-align: center;
}

.btn-sell-now {
    background: #333;
    color: #ffd700;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-sell-now:hover {
    background: #555;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }

    .testimonials {
        flex-direction: column;
    }

    .pricing-table {
        width: 100%;
    }
}
/* Why Choose Us Section */
.why-choose-us-section {
    padding: 3rem 1rem;
    background-color: #f4f4f9;
    text-align: center;
}

.why-choose-us-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
}

.why-choose-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 2rem;
}

.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.feature-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.feature-text h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.feature-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.btn-action {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-action:hover {
    background-color: #555;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-us-content {
        grid-template-columns: 1fr; /* Stack the features vertically on mobile */
    }
}
.card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}



.gold-price-table th, .gold-price-table td {
    text-align: center;
    vertical-align: middle;
}
.compare-section {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}
.compare-btn {
    background-color: #ff9900;
    color: #fff;
}
.compare-btn:hover {
    background-color: #cc7a00;
}
.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}


@media (max-width: 768px) {
    .nav-right {
        display: none;
        flex-direction: column;
        background-color: #ff9900;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
    }
    .nav-right.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
	
	/* Base */
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: .2s;
    line-height: 0px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    bottom: 85px;
    background-color: #760f10;
}

.btn-floating.phone:hover {
    background-color: #c03421;
}

/* WhatsApp */
.btn-floating.whatsapp {
    background-color: #34af23;
    bottom: 25px;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12
}
}

/* footer1*/
.yg-footer-extra {
  background: #f5f5f5;
  padding: 24px 40px;
  border-top: 1px solid #e2e2e2;
}

.yg-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr; /* 3 columns */
  gap: 24px;
  align-items: start;
}

.yg-footer-col {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
}

.yg-footer-col h4 {
  margin: 0 0 8px;
  font-size: 16px;
}

.yg-footer-col p {
  margin: 6px 0;
}

.yg-footer-col a {
  color: #0a66c2;
  text-decoration: none;
}
.yg-footer-col a:hover { text-decoration: underline; }

.yg-footer-brand img {
  max-width: 180px; /* adjust as needed */
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.yg-tagline {
  margin: 0;
  font-size: 13px;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .yg-footer-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 16px;
  }
  .yg-footer-brand { grid-column: 1 / -1; } /* logo spans full width on tablet */
  .yg-footer-brand img { max-width: 150px; }
}

@media (max-width: 560px) {
  .yg-footer-grid {
    grid-template-columns: 1fr; /* stack on mobile */
  }
}
