/*!
 * SIMPLEE GOOD Website Styles
 * Author: OBII KRIATIONZ WEB LLP
 * Description: Custom styles for SIMPLEE GOOD website, including responsive design, animations, and interactive elements.
 * Version: 1.0.0
 */

:root {
    --primary-color: #f5f0e6;
    --accent-color: #324038;
    --text-dark: #333333;
    --text-light: #ffffff;
    --transition: all 0.3s ease;
    --tangy-color: #FF6B35;
    --gallery-bg: #F6E7D8;
}

.text-primary {
    color: var(--accent-color) !important;
}
.bg-primary 
{
    background-color: var(--accent-color) !important;
}
/* Typography */
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Text', serif;
    font-weight: 400;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-family: 'DM Serif Text', serif;
}

.section-tag {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.stat-plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: inline-block;
    margin-left: -0.2em;
    vertical-align: top;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    display: block;
}

.feature-item span {
    font-family: 'DM Sans', sans-serif;
}

.experience-badge .years {
    font-family: 'DM Serif Text', serif;
}

.experience-badge .text {
    font-family: 'DM Sans', sans-serif;
}

.btn-explore {
    font-family: 'DM Sans', sans-serif;
}

.carousel-caption h1 {
    font-family: 'DM Serif Text', serif;
}

.carousel-caption .lead {
    font-family: 'DM Sans', sans-serif;
}

.vertical-content h3 {
    font-family: 'DM Serif Text', serif;
}

.vertical-content p {
    font-family: 'DM Sans', sans-serif;
}

.vertical-features span {
    font-family: 'DM Sans', sans-serif;
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
}

.navbar-brand {
    font-family: 'DM Serif Text', serif;
}

footer h5 {
    font-family: 'DM Serif Text', serif;
}

footer p {
    font-family: 'DM Sans', sans-serif;
}

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    z-index: 1050;
    position: fixed;
    width: 100%;
}

.navbar-brand {
    padding: 0;
    position: relative;
    height: 75px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 100%;
    width: auto;
    transition: opacity 0.3s ease;
}

.navbar-brand .logo-white {
    position: absolute;
    opacity: 1;
}

.navbar-brand .logo-black {
    position: absolute;
    opacity: 0;
}

.navbar.scrolled .logo-white {
    opacity: 0;
}

.navbar.scrolled .logo-black {
    opacity: 1;
}

.navbar:not(.scrolled) {
    background-color: transparent;
    box-shadow: none;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #fff !important;
    font-weight: 600;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark) !important;
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -6px;
    width: 15px;
    right: 0;
}

.navbar-toggler-icon::after {
    bottom: -6px;
    width: 15px;
    right: 0;
}

/* Active state animation */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
    width: 20px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
    width: 20px;
}

/* Scrolled state */
.navbar.scrolled .navbar-toggler-icon,
.navbar.scrolled .navbar-toggler-icon::before,
.navbar.scrolled .navbar-toggler-icon::after {
    background-color: #000;
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-item {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        color: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-link:hover {
        color: #fff;
    }

    /* Dropdown menu styles */
    .dropdown-menu {
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
        width: 100%;
        display: none;
    }

    .dropdown-menu.show {
        display: block;
        padding-left: 1.5rem;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.7);
        padding: 0.75rem 1rem;
        font-size: 1rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .dropdown-item:hover {
        color: #fff;
        background: transparent;
        transform: translateX(5px);
    }

    .dropdown-item i {
        font-size: 0.9rem;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .dropdown-item:hover i {
        opacity: 1;
        transform: translateX(3px);
    }

    /* Dropdown toggle styles */
    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-toggle i {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .dropdown-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    /* Phone link styles */
    .phone-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 0.5rem;
        margin-top: 1rem;
    }

    .phone-link i {
        font-size: 1.2rem;
    }

    /* Staggered animation for menu items */
    .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .navbar-collapse.show .nav-item:nth-child(5) { transition-delay: 0.5s; }
    .navbar-collapse.show .nav-item:nth-child(6) { transition-delay: 0.6s; }
    .navbar-collapse.show .nav-item:nth-child(7) { transition-delay: 0.7s; }
}

/* Smaller mobile devices */
@media (max-width: 767.98px) {
    .navbar-collapse {
        padding: 60px 15px 15px;
    }

    .nav-item {
        font-size: 0.95rem;
    }

    .dropdown-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }

    .phone-link {
        padding: 0.6rem 0.8rem;
    }
}

/* Hero Carousel */
.carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.carousel-image {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 1.5rem;
    text-align: center;
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-caption .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-caption .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

@media (max-width: 991.98px) {
    .carousel-caption h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .carousel-caption .lead {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-caption .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .carousel-caption {
        padding: 0 1rem;
    }
    
    .carousel-caption h1 {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }
    
    .carousel-caption .lead {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .carousel-caption .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-caption .lead {
        font-size: 1rem;
    }
    
    .carousel-caption .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    background-color: #fff;
    margin-top: 100vh;
    padding-top: 2rem;
}

/* Buttons */
 .btn-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
}

.hero-content .btn-primary::before,
.hero-content .btn-primary::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    background: var(--primary-color);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-content .btn-primary::before {
    left: 0;
}

.hero-content .btn-primary::after {
    right: 0;
}

.hero-content .btn-primary span {
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content .btn-primary i {
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-20px);
}

.btn-primary:hover {
    color: var(--text-dark);
    transform: translateY(-5px);
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-content .btn-primary:hover::before,
.hero-content .btn-primary:hover::after {
    width: 50%;
}

.hero-content .btn-primary:hover i {
    opacity: 1;
    transform: translateX(0);
}

.hero-content .btn-primary:active {
    transform: translateY(-2px);
}

/* Button Animation */
.hero-content .btn-primary.animate__animated {
    animation: buttonEntrance 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes buttonEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(-5deg);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-10px) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

/* Glow Effect */
.hero-content .btn-primary::before,
.hero-content .btn-primary::after {
    box-shadow: 0 0 20px rgba(245, 240, 230, 0.3);
}

.hero-content .btn-primary:hover::before,
.hero-content .btn-primary:hover::after {
    box-shadow: 0 0 30px rgba(245, 240, 230, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

.btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
}

/* Service Cards */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    transform: translateY(-5px);
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--primary-color);
}

.service-card h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-service {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    position: relative;
    padding-right: 20px;
}

.btn-service::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.service-card:hover .btn-service::after {
    transform: translate(5px, -50%);
}

/* Process Steps */
.process-steps-container {
    position: relative;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-top: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
    background: #fff;
    border-radius: 3px;
    box-shadow: 2px -2px 2px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-family: 'DM Serif Text', serif;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-color);
    margin: 0;
}

.process-arrow {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.5rem;
    z-index: 1;
}

@media (max-width: 991px) {
    .process-arrow {
        display: none;
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--primary-color) !important;
}

/* Footer */
footer {
    background: #324038;
        padding: 80px 0 40px;
    color: var(--text-light);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-about {
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 380px;
}

.footer-heading {
    font-family: 'DM Serif Text', serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(255,255,255,0.3);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-contact {
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.contact-info i {
    margin-right: 15px;
    margin-top: 5px;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

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

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

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

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 992px) {
    .footer-column {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 30px;
    }
    
    .footer-heading {
        font-size: 1.2rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
}

/* Animation classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__delay-1s {
    animation-delay: 1s;
}

.animate__delay-2s {
    animation-delay: 2s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

/* Custom Utilities */
.rounded-lg {
    border-radius: 12px;
}

.shadow-lg {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Verticals Section */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.8;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1400px;
}

.vertical-item {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.vertical-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vertical-item.wedding {
    grid-column: span 2;
}

.vertical-item .vertical-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vertical-item .vertical-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-item:hover .vertical-image img {
    transform: scale(1.1);
}

.vertical-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    transition: all 0.5s ease;
}

.vertical-item:hover .overlay {
    background: linear-gradient(45deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

.vertical-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.vertical-content h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    opacity: 1;
    transform: translateY(0);
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.vertical-content .content-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    padding: 30px 40px;
    z-index: 2;
}

.vertical-item:hover .content-bottom {
    opacity: 1;
    transform: translateY(0);
}

.vertical-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.vertical-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.vertical-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.vertical-features span:hover {
    transform: translateX(5px);
    color: #8eccab;
}

.vertical-features i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.vertical-features span:hover i {
    transform: scale(1.2);
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.vertical-item:hover .btn-explore {
    opacity: 1;
    transform: translateY(0);
}

.btn-explore:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.btn-explore i {
    transition: transform 0.3s ease;
}

.btn-explore:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .verticals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vertical-item.wedding {
        grid-column: span 2;
    }
}

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

    .vertical-item.wedding {
        grid-column: span 1;
    }

    .vertical-content {
        padding: 30px;
    }

    .vertical-content h3 {
        font-size: 1.8rem;
        top: 30px;
        left: 30px;
        right: 30px;
    }

    .vertical-content .content-bottom {
        padding: 20px 30px;
    }
}

@media (max-width: 576px) {
    .vertical-content {
        padding: 20px;
    }

    .vertical-content h3 {
        font-size: 1.5rem;
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .vertical-content .content-bottom {
        padding: 15px 20px;
    }
}

/* About Preview Section */
#about-preview {
    position: relative;
    background-color: var(--primary-color);
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: #8eccab;
    font-size: 1.2rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.05));
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 1 1 120px;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .feature-item {
        gap: 10px;
    }

    .experience-badge {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px;
    }
}

/* Gallery Section */
.bg-warm {
    background: #F6E7D8;
    background: linear-gradient(150deg, rgba(246, 231, 216, 1) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
}

.bg-warm .section-title {
    color: var(--accent-color);
}

.bg-warm .section-subtitle {
    color: var(--text-dark);
}

.bg-warm .container {
    position: relative;
}

.bg-warm .gallery-grid {
    position: relative;
    margin-top: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item img 
{
    width: 100%;    
}

.gallery-card {
    position: relative;
    height: 100%;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 1.25rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-overlay h4 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.gallery-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover .gallery-card img {
    transform: scale(1.02);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Category-specific hover effects */
.gallery-item.weddings:hover {
    background: linear-gradient(45deg, #e83e8c, #d63384);
}

.gallery-item.corporate:hover {
    background: linear-gradient(45deg, #17a2b8, #138496);
}

.gallery-item.special:hover {
    background: linear-gradient(45deg, #28a745, #218838);
}

.gallery-item.brand:hover {
    background: linear-gradient(45deg, #6f42c1, #5a32a3);
}

.gallery-item.entertainment:hover {
    background: linear-gradient(45deg, #fd7e14, #e56a0c);
}

/* Add a subtle border animation */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 15px;
    /* background: linear-gradient(45deg, var(--accent-color), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out; */
    mask-composite: exclude;
    transition: all 0.4s ease;
}

.gallery-item:hover::before {
    /* border-color: var(--accent-color); */
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-caption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    text-align: center;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .gallery-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: #25D366;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
    padding: 12px 20px;
    gap: 8px;
    width: auto;
    height: auto;
}

.whatsapp-float span {
    font-weight: 500;
    white-space: nowrap;
}

.whatsapp-float i {
    font-size: 1.3rem;
}

.whatsapp-float:hover,
.floating-call:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
    color: #fff;
}

.floating-call:hover {
    color: var(--text-dark);
}

.whatsapp-float::before,
.floating-call::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    animation: pulse 2s infinite;
    z-index: -1;
}

.whatsapp-float::before {
    background: #25D366;
}

.floating-call::before {
    background: var(--primary-color);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-call {
        bottom: 85px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .whatsapp-float i {
        font-size: 1.2rem;
    }
}

/* Ensure visibility on smaller screens */
@media (max-width: 576px) {
    .floating-call,
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-radius: 50%;
        padding: 0;
    }
    
    .whatsapp-float span {
        display: none;
    }

    .floating-call {
        bottom: 80px;
    }

    .whatsapp-float {
        bottom: 20px;
    }
}

/* Testimonials Section */
#testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23e9ecef"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.testimonials-container {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #000;
    font-family: 'DM Serif Text', serif;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author h4 {
        font-size: 1.1rem;
    }
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    color: #fff;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    #testimonials {
        padding: 80px 0;
    }

    .testimonial-card {
        margin: 0 15px;
        padding: 25px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-author h4 {
        font-size: 1.1rem;
    }
} 

.min-vh-50
{
    min-height: 50vh;
}

/* Achievement Counters */
.achievements-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.achievements-title {
    font-size: 2em;
    font-weight: 400;
    color: #2a2a2a;
 
    margin-bottom: 0;
    font-family: 'DM Serif Text', serif;
}

.achievements-divider {
    width: 40px;
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 15px auto;
}

.counter-card {
    background: transparent;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.counter-card:hover {
    transform: translateY(-3px);
}

.counter-number {
    text-align: center;
    margin-bottom: 8px;
}

.counter {
    font-size: 3em;
    font-weight: 300;
    color: #2a2a2a;
    font-family: 'DM Serif Text', serif;
}

.counter-symbol {
    font-size: 1.2rem;
    color: rgba(0,0,0,0.3);
}

.counter-icon {
    width: 30px;
    height: 30px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    transition: color 0.3s ease;
}

.counter-icon i {
    color: rgba(0,0,0,0.3);
    font-size: 0.9rem;
}

.counter-card:hover .counter-icon i {
    color: rgba(var(--accent-rgb), 0.5);
}

.counter-label {
    color: #666;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 0;
}

/* Service Feature Cards with Images */
.service-feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 0;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.overlay-content span {
    font-family: 'DM Serif Text', serif;
    font-size: 1.2rem;
    display: block;
}

.service-feature-card:hover .image-overlay {
    opacity: 1;
}

.service-feature-card:hover .overlay-content {
    transform: translateY(0);
}

.service-feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    position: relative;
    background: #fff;
}

.card-content h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2a2a2a;
    position: relative;
    padding-bottom: 10px;
}

.card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.service-feature-card:hover .card-content h3::after {
    width: 60px;
}

.card-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .feature-image {
        height: 200px;
    }
    
    .card-content {
        padding: 20px;
    }
}

/* FAQ Section Styles */
.accordion {
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-border-color: rgba(0,0,0,0.1);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 10px;
    background: transparent;
}

.accordion-button {
    font-family: 'DM Serif Text', serif;
    font-size: 1.2rem;
    color: #2a2a2a;
    padding: 20px 0;
    background: transparent;
}

.accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a2a2a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23324038'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 0 20px;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

@media (max-width: 768px) {
    .accordion-button {
        font-size: 1.1rem;
        padding: 15px 0;
    }
    
    .accordion-body {
        font-size: 0.95rem;
    }
}

/* Dark CTA Button */
.btn-dark-cta {
    background-color: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-dark-cta:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-dark-cta i {
    transition: transform 0.3s ease;
}

.btn-dark-cta:hover i {
    transform: translateX(5px);
}

/* Venue Cards */
.venue-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.venue-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.venue-card:hover .venue-overlay {
    opacity: 1;
}

.venue-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 2rem;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.venue-card:hover .venue-icon {
    transform: scale(1);
    background: #fff;
}

.venue-content {
    padding: 25px;
    position: relative;
    background: #fff;
}

.venue-content h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2a2a2a;
    position: relative;
    padding-bottom: 10px;
}

.venue-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.venue-card:hover .venue-content h3::after {
    width: 60px;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.venue-features span {
    background: rgba(var(--accent-rgb), 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.venue-features span i {
    font-size: 0.9rem;
}

.venue-features span:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Vendor Cards */
.vendor-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vendor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.05));
    opacity: 0;
    transition: all 0.4s ease;
}

.vendor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vendor-card:hover::before {
    opacity: 1;
}

.vendor-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.vendor-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 50%;
    transform: scale(0.8);
    opacity: 0.1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vendor-card:hover .vendor-icon-bg {
    transform: scale(1.2);
    opacity: 0.2;
}

.vendor-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vendor-card:hover .vendor-icon {
    transform: scale(1.1) rotate(5deg);
    background: #2a2a2a;
}

.vendor-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.vendor-stats span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.vendor-card:hover .vendor-stats span {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .venue-image {
        height: 200px;
    }
    
    .venue-content {
        padding: 20px;
    }
    
    .vendor-card {
        padding: 25px;
    }
    
    .vendor-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .vendor-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Venue and Vendor Content Wrappers */
.venue-content-wrapper,
.vendor-content-wrapper {
    padding: 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2a2a2a 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.venue-content-wrapper h3,
.vendor-content-wrapper h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.venue-content-wrapper h3::after,
.vendor-content-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.3);
}

.venue-content-wrapper p,
.vendor-content-wrapper p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Feature Lists */
.venue-features-list,
.vendor-features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.feature-item span {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

/* List Items */
.venue-list,
.vendor-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.venue-list-item,
.vendor-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.venue-list-item:hover,
.vendor-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.venue-icon,
.vendor-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.venue-list-item:hover .venue-icon,
.vendor-list-item:hover .vendor-icon {
    background: var(--accent-color);
    color: #fff;
    transform: rotate(5deg);
}

.venue-details,
.vendor-details {
    flex: 1;
}

.venue-details h4,
.vendor-details h4 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.3rem;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.venue-details p,
.vendor-details p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .venue-content-wrapper,
    .vendor-content-wrapper {
        padding: 25px;
    }
    
    .venue-list-item,
    .vendor-list-item {
        padding: 20px;
    }
    
    .venue-icon,
    .vendor-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

.navbar .phone-link {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.navbar .phone-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.navbar .phone-link i {
    margin-right: 5px;
}

@media (max-width: 991.98px) {
    .navbar .phone-link {
        margin: 0.5rem 0;
        display: inline-block;
    }
}

/* Special Occasions Styles */
.occasion-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.occasion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.occasion-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    font-size: 32px;
    transition: transform 0.3s ease;
}

.occasion-card:hover .occasion-icon {
    transform: scale(1.1);
}

.occasion-card h3 {
    font-family: 'DM Serif Text', serif;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.occasion-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.occasion-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.occasion-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #444;
}

.occasion-features li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 14px;
}

/* Process Steps for Special Occasions */
.process-step {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-family: 'DM Serif Text', serif;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    margin: 0;
}

/* CTA Section for Special Occasions */
.bg-accent {
    background: var(--accent-color);
}

.bg-accent .display-4 {
    font-family: 'DM Serif Text', serif;
    margin-bottom: 20px;
}

.bg-accent .lead {
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .occasion-card {
        padding: 30px 20px;
    }

    .occasion-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .occasion-card h3 {
        font-size: 20px;
    }

    .process-step {
        padding: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Services Dropdown Menu Styles */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.dropdown-item {
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.03);
    padding-left: 30px;
    color: var(--accent-color);
}

.dropdown-item:hover:before {
    opacity: 1;
}

.dropdown-item i {
    margin-right: 10px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.dropdown-item:hover i {
    transform: translateX(5px);
}

/* Add icons to each service */
.dropdown-item[href="luxury-weddings.html"] i {
    color: #e83e8c;
}

.dropdown-item[href="corporate-events.html"] i {
    color: #17a2b8;
}

.dropdown-item[href="special-occasions.html"] i {
    color: #28a745;
}

.dropdown-item[href="birthday-planners.html"] i {
    color: #ffc107;
}

.dropdown-item[href="brand-activation.html"] i {
    color: #6f42c1;
}

.dropdown-item[href="entertainment.html"] i {
    color: #fd7e14;
}

.dropdown-item[href="wedding-planners-bangalore.html"] i {
    color: #ff6b35;
}

/* Gallery Filter Buttons */
.filter-btn {
    position: relative;
    padding: 12px 24px;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0 8px 16px;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.filter-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
}

.filter-btn:hover::before {
    width: 100%;
}

.filter-btn.active {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Button Container Animation */
.gallery-filter-container {
    position: relative;
    padding: 20px 0;
    margin-bottom: 40px;
}

.gallery-filter-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.2), transparent);
    transform: translateY(-50%);
}

/* Button Hover Effects */
.filter-btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.filter-btn:hover i {
    transform: rotate(360deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 0 4px 8px;
    }
    
    .gallery-filter-container {
        padding: 15px 0;
        margin-bottom: 30px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem auto;
    max-width: 1400px;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-card {
    position: relative;
    height: 100%;
    width: 100%;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 1.25rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-overlay h4 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.gallery-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover .gallery-card img {
    transform: scale(1.02);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .gallery-grid {
        gap: 2rem;
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Testimonials Page Styles */
.page-header {
    padding: 120px 0 60px;
    background-color: var(--light-bg);
    text-align: center;
}

.page-header h1 {
    font-family: 'DM Serif Text', serif;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-header .lead {
    color: var(--text-color);
    font-size: 1.25rem;
}

/* Testimonials Grid */
#testimonials-grid {
    background-color: var(--light-bg);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.testimonial-content {
    padding: 30px;
    position: relative;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-author h4 {
    font-family: 'DM Serif Text', serif;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
}

.cta-section h2 {
    font-family: 'DM Serif Text', serif;
    margin-bottom: 20px;
}

.cta-section .btn-light {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .testimonial-image {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.contact-form .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Contact Info Styles */
.contact-info-wrapper {
    padding: 3rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-info-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    margin-top: 5rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        gap: 1rem;
    }
    
    .contact-info-item i {
        font-size: 1.25rem;
    }
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

@media (max-width: 767.98px) {
    .carousel-controls {
        display: none;
    }
}
 .footer-legal-links
{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-legal-links a
{
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

 .footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

 .footer-legal-links a:hover {
    color: #fff;
}

.legal-footer
{
    padding: 120px 0px;
}

.obii
{
    color:#ba933e;
    text-decoration: none;
}
.obii:hover
{
    color:#e3c687;
    transition: color 0.3s ease;
}

/* Gallery Modal Styles */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: block;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    margin: 5vh auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.gallery-modal.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

.modal-content {
    height: calc(100% - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.zoom-controls {
    display: flex;
    gap: 10px;
}

.zoom-controls button {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-controls button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-caption {
    flex: 1;
    margin-right: 20px;
}

.modal-counter {
    margin: 0 20px;
    font-weight: 500;
}

.modal-actions {
    display: flex;
    gap: 10px;
}

.modal-actions button {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-actions button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        height: 95vh;
        margin: 2.5vh auto;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
    }

    .modal-actions {
        display: none;
    }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    margin-bottom: 2rem;
}

.loader-logo img {
    max-width: 200px;
    height: auto;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 1rem;
}

.loader-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

/* Gallery Watermark */
.gallery-item {
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    background-image: url('../images/simpleegood-black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* Ensure the image container has proper positioning */
.gallery-item img {
    position: relative;
    z-index: 0;
}

/* Adjust watermark for modal view */
.gallery-modal .modal-content img {
    position: relative;
}

.gallery-modal .modal-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    background-image: url('../images/simpleegood-black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.swiper-wrapper
{
    height: 600px
}

/* Featured Testimonial Styling */
.testimonial-card.featured {
    transform: scale(1.05);
    border: 2px solid #f8bb86;
    box-shadow: 0 10px 30px rgba(248, 187, 134, 0.2);
}

.testimonial-card.featured .quote-icon {
    color: #f8bb86;
}

.testimonial-card.featured:before {
    content: "Featured";
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f8bb86;
    color: #fff;
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 1;
}

