:root {
    --primary-color: #8BC34A;
    --secondary-color: #689F38;
    --text-color: #333;
    --bg-color: #fff;
    --nav-bg: rgba(255, 255, 255, 0.95);
}

[data-bs-theme="dark"] {
    --text-color: #fff;
    --bg-color: rgb(2, 27, 18);
    --nav-bg: rgba(2, 27, 18, 0.95);
}

body {
    color: var(--text-color);
    background-color: var(--bg-color);
}

.navbar {
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color);
}
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
}
.theme-toggle {
    margin-right: 8px;
}
@media (max-width: 991.98px) {
    .navbar-collapse {
        text-align: center;
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        background-color: var(--bg-color);
        padding: 20px;
        box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

    .d-flex.align-items-center {
        flex-direction: column;
        gap: 15px;
        margin: 15px 0;
    }

    .theme-toggle {
        margin-right: 0;
    }

    .btn-primary {
        margin-left: 0;
    }
}
.navbar .navbar-nav {
    margin-right: 0;
    align-items: flex-start;
}
.nav-link {
    padding: 10px 0;
    margin: 5px 0;
    text-align: left;
}
.d-flex.align-items-center {
    justify-content: flex-start;
    margin: 15px 0;
    width: 100%;
}
/* Add this to ensure proper container positioning */
.navbar .container {
    position: relative;
}
.d-flex.align-items-center {
    justify-content: center;
    margin: 15px auto;
    width: 100%;
}
.btn-primary {
    margin: 0 auto;
}
.theme-toggle {
    margin-right: 15px;
}
.btn-primary {
    margin-left: 20px;
}
.hero-section {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero-section {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}
/* Hero Section Responsive Styles */
.hero-section {
    padding: 120px 0 60px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(0.8rem, 1.5vw, 1rem);
}

.description {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
    opacity: 0.8;
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 40px;
        text-align: center;
    }
    
    .description {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 30px;
    }
}
.description {
    color: var(--text-color);
    opacity: 0.8;
}
/* Navigation Styles */
.navbar {
    background-color: var(--bg-color);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #4a6741 !important;
}
.navbar .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.nav-link {
    position: relative;
    margin: 0 25px;
    padding: 5px 0;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}
/* Adjust the navbar brand and contact button positions */
.navbar-brand {
    margin-right: 0;
}

.d-flex.align-items-center {
    margin-left: auto;
}
.nav-link:hover {
    color: #8BC34A;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link.active {
    color: #8BC34A;
}
.nav-link.active::after {
    width: 100%;
}
.btn-primary {
    background-color: #9FE754;
    border: none;
    padding: 8px 35px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
    white-space: nowrap;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: none;
}

.btn-primary:hover {
    background-color: #8ed842;
    color: #333;
    transform: none;
    box-shadow: none;
}

/* Desktop navigation button alignment */
@media (min-width: 992px) {
    .d-flex.align-items-center {
        margin-left: 30px;
        gap: 10px;
        
    }
    .btn-primary {
        margin-right: 0px;
    }
}
.btn-primary:hover {
    background-color: #7cb342;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}
/* Dark theme adjustments */
[data-bs-theme="dark"] .nav-link {
    color: #fff;
}
[data-bs-theme="dark"] .navbar {
    background-color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.values-section {
    background-color: var(--bg-color);
    padding: 80px 0;
}
.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: var(--bg-color);
    transition: transform 0.3s ease;
    height: 100%;
}
.value-card:hover {
    transform: translateY(-10px);
}
.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}
.value-card:nth-child(1) .value-icon {
    color: #FFB74D;
}
.value-card:nth-child(2) .value-icon {
    color: #4CAF50;
}
.value-card:nth-child(3) .value-icon {
    color: #FF7043;
}
.value-card:nth-child(4) .value-icon {
    color: #42A5F5;
}
.value-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.value-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .value-card {
        margin-bottom: 30px;
    }
}
.frame-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.frame-showcase img {
    max-width: 100%;
    height: auto;
    position: relative;
}
.light-frames-section {
    background-color: var(--bg-color);
    padding: 80px 0;
    position: relative;
}
.light-frames-section h2 {
    color: var(--text-color);
}
.light-frames-section .lead {
    color: var(--text-color);
}
.light-frames-section .text-muted {
    color: var(--text-color) !important;
    opacity: 0.8;
}
.frame-border {
    position: relative;
    border-radius: 50%;
    padding: 10px;
    background-color: #2E7D32;
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid var(--primary-color);
}
/* Dark theme adjustments */
[data-bs-theme="dark"] .light-frames-section {
    background-color: var(--bg-color);
}
[data-bs-theme="dark"] .frame-border {
    background-color: #1B5E20;
    border-color: var(--secondary-color);
}
[data-bs-theme="dark"] .frame-item {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.frame-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}
.frame-item:hover {
    transform: translateY(-10px);
}
.frame-item:hover img {
    transform: scale(1.1);
}
/* Floating animation for frames */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
.frame-item {
    animation: float 3s ease-in-out infinite;
}
/* Stagger animation delays */
.frame-item:nth-child(1) { animation-delay: 0s; }
.frame-item:nth-child(2) { animation-delay: 0.5s; }
.frame-item:nth-child(3) { animation-delay: 1s; }
.frame-item:nth-child(4) { animation-delay: 1.5s; }
/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}
.carousel-control-prev {
    left: -50px;
}
.carousel-control-next {
    right: -50px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--secondary-color);
}
/* Ensure smooth transitions */
.carousel-item {
    transition: transform .6s ease-in-out;
}
@media (max-width: 768px) {
    .carousel-control-prev {
        left: -20px;
    }
    .carousel-control-next {
        right: -20px;
    }
}
/* Carousel responsive adjustments */
@media (max-width: 768px) {
    .carousel-control-prev {
        left: -20px;
    }
    .carousel-control-next {
        right: -20px;
    }
.carousel .row {
        flex-wrap: nowrap;
        overflow-x: hidden;
    }
.carousel .col-md-3 {
        width: 100%;
        flex: 0 0 100%;
    }
.frame-item {
        max-width: 280px;
        margin: 0 auto;
    }
.carousel-item .row > div:not(:first-child) {
        display: none;
    }
}
/* Ensure proper spacing in mobile */
@media (max-width: 576px) {
    .frame-item {
        max-width: 240px;
    }
}
/* Wooden Frames Section */
.wooden-frames-section {
    background-color: var(--bg-color);
    padding: 80px 0;
    position: relative;
}
.wooden-frame-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.wooden-frame-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.frame-text-overlay {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 10px 30px;
    border-radius: 5px;
}
.frame-text-overlay h2 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;  /* Added to remove default margins */
}
/* Mobile adjustments for top text */
@media (max-width: 768px) {
    .frame-text-overlay {
        top: 15px;
        padding: 8px 20px;
    }
}
.wooden-frame-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}
/* Hover Effects */
.wooden-frame-container:hover img {
    transform: scale(1.05);
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .frame-text-overlay h2 {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .frame-text-overlay h2 {
        font-size: 1.5rem;
    }
}
.btn-shop-now {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-shop-now:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
/* Mobile adjustments */
@media (max-width: 768px) {
    .btn-shop-now {
        padding: 8px 25px;
        font-size: 0.9rem;
    }
}
/* Celebrate the Bonds Section */
.celebrate-bonds-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}
.bond-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
}
.bond-card:hover {
    transform: translateY(-10px);
}
.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.bond-card:hover .card-image img {
    transform: scale(1.1);
}
.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background-color: rgba(139, 195, 74, 0.9);
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
}
/* Dark theme adjustments */
[data-bs-theme="dark"] .bond-card {
    background-color: #1a1a1a;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bond-card {
        max-width: 300px;
        margin: 0 auto;
    }
    .card-label {
        padding: 12px;
        font-size: 1rem;
    }
}
.why-choose-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}
.why-choose-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
}
.comparison-table {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
}
.comparison-grid {
    display: grid;
    gap: 15px;
}
.grid-header, .grid-row {
    display: grid;
    grid-template-columns: 1fr 100px 100px;
    align-items: center;
    gap: 20px;
}
.grid-header {
    margin-bottom: 10px;
}
.company, .others {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}
.grid-row {
    background-color: #4a1e1e;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.grid-row:hover {
    transform: translateX(10px);
}
.feature-name {
    font-size: 1.1rem;
}
.check, .cross {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.check {
    color: #8BC34A;
}
.cross {
    color: #dc3545;
}
@media (max-width: 768px) {
    .grid-header, .grid-row {
        grid-template-columns: 1fr 80px 80px;
        gap: 10px;
    }
}

/* about */
.about-section {
    background-color: var(--bg-color);
    overflow: hidden;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
}

.about-content h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: bold;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.achievement-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-item span {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.achievement-item p {
    margin: 10px 0 0;
    color: var(--text-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-badge {
        padding: 15px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .achievement-grid {
        grid-template-columns: 1fr;
    }
}

.thoughtful-gifts-section {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.gift-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gift-card:hover {
    transform: translateY(-10px);
}

.gift-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gift-card:hover .gift-image img {
    transform: scale(1.05);
}

.gift-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #9FE754;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.gift-label span {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.gift-card:hover .gift-label {
    background: #8ed842;
    padding-bottom: 20px;
}

/* Dark theme adjustments */
[data-bs-theme="dark"] .gift-card {
    background: #1a1a1a;
}

[data-bs-theme="dark"] .gift-label {
    background: #2E7D32;
}

[data-bs-theme="dark"] .gift-label span {
    color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .gift-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .gift-label {
        padding: 12px;
    }

    .gift-label span {
        font-size: 1.1rem;
    }
}

/* Footer Styles */
.footer-section {
    background-color: #1a1a1a;
    padding: 80px 0 20px;
    color: #fff;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-info p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    line-height: 2;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Dark theme adjustments */
[data-bs-theme="dark"] .footer-section {
    background-color: #0a0a0a;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 20px;
    }

    .footer-info, .footer-links, .footer-contact {
        text-align: center;
        margin-bottom: 40px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-color);
    padding: 80px 0;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
}

.rating i {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-author h5 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

.testimonial-indicators {
    position: relative;
    margin-top: 30px;
    margin-bottom: 0;
}

.testimonial-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.testimonial-indicators .active {
    opacity: 1;
    transform: scale(1.2);
}

/* Dark theme adjustments */
[data-bs-theme="dark"] .testimonial-card {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
        margin: 10px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }
}