body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    transition: all 0.3s ease;
    /* background: linear-gradient(135deg, #f49b4d, #fc6c32); */
    background-color: #1a237e;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-nav .nav-item .nav-link {
    font-size: 1.1rem;
    /* font-weight: 600; */
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.carousel-item .hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 15px;
}

.modal-content {
    border-radius: 15px;
    animation: zoomIn 0.5s ease-in-out;
}

.form-control,
.form-select {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #ff6f61;
    box-shadow: 0 0 5px rgba(255, 111, 97, 0.5);
}

.btn-primary {
    background-color: #ff6f61;
    border-color: #ff6f61;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e65b50;
    border-color: #e65b50;
    transform: scale(1.05);
}

.btn-lets-talk {
    background-color: #28a745;
    border-color: #28a745;
    font-size: 1.2rem;
    padding: 12px 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-lets-talk:hover {
    background-color: #218838;
    border-color: #218838;
    transform: scale(1.1);
}

.dropdown-menu {
    background-color: #343a40;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

.dropdown-item {
    color: white;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #ff6f61;
    color: white;
}

.dropdown-header {
    color: #ff6f61;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 1.1rem;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

.section {
    padding: 80px 0;
}

.quick-highlights .card {
    transition: transform 0.3s ease;
}

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

.contact-info {
    background-color: #343a40;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

.gallery-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.gallery-nav .nav-link.active {
    background-color: #ff6f61;
    color: white;
    border-radius: 8px;
}
.gallery-nav .nav-link:hover{
    color:#fff !important;
}
.gallery-nav .nav-link:hover {
    color: #ff6f61;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeInUp 0.5s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    /* background: rgba(0, 0, 0, 0.3); */
}

.carousel-indicators button {
    background-color: #ff6f61;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.carousel-indicators .active {
    background-color: #e65b50;
}

/* What We Work For - Swiper Carousel */
#what-we-work-for {
    padding: 60px 0;
    background-color: #f8f9fa;
}

#what-we-work-for h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.work-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.work-card h4 {
    font-size: 1.5rem;
    color: #ff6f61;
    margin-bottom: 15px;
}

.work-card p {
    font-size: 1rem;
    color: #555;
}

.swiper-button-prev,
.swiper-button-next {
    color: #ffa600;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #ff6f61;
    color: #fff;
}

.swiper-pagination-bullet {
    background-color: #ff6f61;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

#lets-talk {
    background: linear-gradient(135deg, #fdefe3, #fd7f40);
}

#lets-talk  h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 3.5rem;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.1em; */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info,
.enquiry-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover,
.enquiry-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-lets-talk,
.btn-primary {
    background-color: #ff6f61;
    border: none;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.btn-lets-talk:hover,
.btn-primary:hover {
    background-color: #e53f30;
}

.services-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fdefe3, #fd7f40);
}

.section-title {
    font-size: 2.6rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 3.5rem;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.1em; */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.2);
    filter: brightness(70%);
}

.overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(230, 91, 80, 0.9);
    color: #fff;
    padding: 20px;
    text-align: left;
    transition: bottom 0.5s ease;
}

.service-card:hover .overlay {
    bottom: 0;
}

.overlay h3 {
    font-size: 1.5rem;
    margin: 0 0 10px;
}

.overlay p {
    font-size: 1rem;
    line-height: 1.4;
}

@keyframes fadeInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#quick-highlights {
    background: linear-gradient(135deg, #fdefe3, #fd7f40);
    /* padding: 5rem 1rem; */
    min-height: 50vh;
}

#quick-highlights h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 3.5rem;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.1em; */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quick-highlights .card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.quick-highlights .card:hover {
    transform: translateY(-0.75rem);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.quick-highlights .card-body {
    padding: 2.5rem;
    text-align: center;
}

.quick-highlights .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.quick-highlights .card-text {
    color: #ffffff;
    font-size: 1rem;
    opacity: 0.9;
}

.quick-highlights .icon {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* Individual card styles */
.wedding-card {
    background: linear-gradient(45deg, #d81b60, #f06292);
}

.crafting-card {
    background: linear-gradient(45deg, #f1c40f, #e91e63);
}
.professional-card {
    background: linear-gradient(45deg, #e91e63, #2196f3);
}
.customize-card{
    background: linear-gradient(45deg, #00c4b4, #7b61ff);
}
.social-card {
    background: linear-gradient(45deg,  #8e44ad, #ff85a2);
}

.corporate-card {
    background: linear-gradient(45deg, #1565c0, #42a5f5);
}

.party-card {
    background: linear-gradient(45deg, #ffb300, #ffca28);
}

.catering-card {
    background: linear-gradient(45deg, #2e7d32, #66bb6a);
}

/* Hover overlay effect */
.quick-highlights .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-highlights .card:hover::before {
    opacity: 1;
}

#about-us {
    background: linear-gradient(135deg, #fdefe3, #fd7f40);
    /* padding: 5rem 1rem; */
    min-height: 70vh;
}

#about-us h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #4a148c;
    margin-bottom: 4rem;
    /* text-transform: uppercase; */
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-item {
    margin-bottom: 3rem;
    padding: 2rem;
    position: relative;
    transition: transform 0.4s ease, background 0.4s ease;
}

.about-item:hover {
    transform: translateY(-0.5rem);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

.about-item h4 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #311b92;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.about-item p {
    color: #4a148c;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.about-item .icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    color: #7b1fa2;
    transition: transform 0.3s ease;
}

.about-item:hover .icon {
    transform: scale(1.2);
}

/* Individual item highlights */
.story-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(156, 39, 176, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1rem;
}

.vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 150, 136, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1rem;
}

.choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 112, 67, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1rem;
}

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

#gallery {
    background: linear-gradient(135deg, #fdefe3, #fd7f40);
}

#gallery h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 3.5rem;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.1em; */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    /* background: linear-gradient(135deg, #e19c06, #b54605); */
    background-color: #1a237e;
}

.social-section p {
      color: #ffffff;
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .social-icons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
    }

    .social-icons a {
      color: #ffffff;
      font-size: 1.8rem;
      transition: transform 0.3s ease, color 0.3s ease;
      text-decoration: none;
    }

    .social-icons a:hover {
      transform: scale(1.2);
    }

    .social-icons .fa-x-twitter:hover {
      color: #000000;
    }

    .social-icons .fa-instagram:hover {
      color: #e1306c;
    }

    .social-icons .fa-facebook:hover {
      color: #1877f2;
    }

    .social-icons .fa-linkedin:hover {
      color: #0a66c2;
    }

    .social-section .small {
      color: #ffffff;
      font-size: 0.9rem;
      opacity: 0.8;
      margin-top: 1.5rem;
      text-align: center;
    }
