body {
    margin: 0;
    padding: 0;
}

/* navbar start */
/* Navbar Custom Styles */
/* Existing navbar-custom CSS */
.navbar-custom {
    background: linear-gradient(135deg, #ff6f00, #ffa040);
    height: 97px;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-brand span {
    font-family: "Cinzel", serif;
    font-size: 1.5rem;
    color: #fff;
}

.navbar-custom .nav-link {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: #ffd700;
}

/* Keep logo and toggle in one line */
.navbar-toggler {
    border: none;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-custom {
        height: auto;
        padding: 0.5rem 1rem;
    }

    .navbar-brand span {
        font-size: 1.3rem;
    }

    .navbar-collapse {
        background-color: #ff7f00;
        margin-top: 10px;
        border-radius: 10px;
        padding: 10px;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem;
    }
}

@media (max-width: 575px) {
    .navbar-brand span {
        font-size: 1.1rem;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
        text-align: center;
    }
}

/* navbar end */

/* crousel start */
/* Carousel Container */
#customImageCarousel {
    position: relative;
}

/* Carousel Items */
#customImageCarousel .carousel-item {
    height: 85vh;
    /* increased height for desktop */
    overflow: hidden;
}

#customImageCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

#customImageCarousel .carousel-item.active img {
    transform: scale(1.05);
}

/* Carousel Controls */
#customImageCarousel .carousel-control-prev,
#customImageCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    border: none;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

#customImageCarousel .carousel-control-prev:hover,
#customImageCarousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

#customImageCarousel .carousel-control-prev-icon,
#customImageCarousel .carousel-control-next-icon {
    filter: invert(0.2);
}

/* Carousel Indicators */
#customImageCarousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
    background-color: #fff;
}

#customImageCarousel .carousel-indicators [data-bs-target]:hover {
    opacity: 1;
    background-color: #ff7f00;
}

#customImageCarousel .carousel-indicators .active {
    background-color: #ff0000;
    opacity: 1;
}

/* Responsive Heights */
@media (max-width: 991.98px) {
    #customImageCarousel .carousel-item {
        height: 65vh;
    }
}

@media (max-width: 767.98px) {
    #customImageCarousel .carousel-item {
        height: 50vh;
    }

    #customImageCarousel .carousel-item img {
        object-fit: contain;
        padding: 10px;
    }
}

@media (max-width: 575.98px) {
    #customImageCarousel .carousel-item {
        height: 35vh;
    }

    #customImageCarousel .carousel-item img {
        padding: 15px;
    }

    #customImageCarousel .carousel-control-prev,
    #customImageCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }
}

/* crousel end */

/* about start */
/* Container Animation */
#about .about-image,
#about .about-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

/* Trigger Animation */
#about.visible .about-image,
#about.visible .about-content {
    opacity: 1;
    transform: translateY(0);
}

/* Headings */
#about h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff7f00;
}

/* Paragraphs */
#about p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #333;
}

/* List Items */
#about ul {
    padding-left: 20px;
    margin-top: 1rem;
}

#about ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Image Styling */
#about img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #about h2 {
        font-size: 1.8rem;
    }

    #about p,
    #about ul li {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    #about h2 {
        font-size: 1.5rem;
    }

    #about p,
    #about ul li {
        font-size: 0.95rem;
    }
}

/* about end */

/* gallery start */
/* Gallery Styles */
.gallery {
    background: #f9f9f9;
}

.gallery-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff7f00;
}

.gallery-subtitle {
    font-size: 1rem;
    color: #555;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.6s ease;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 88, 103, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Scroll Animation */
.gallery-item.visible {
    transform: scale(1);
    opacity: 1;
}

/* Modal Styling */
.modal-content {
    background: transparent;
    border: none;
    text-align: center;
}

.modal-content img {
    border-radius: 12px;
    max-height: 80vh;
    object-fit: cover;
}

.modal-title-text {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.btn-close {
    filter: invert(1);
}

/* gallery end */

/* banner start */
.hero-banner {
    position: relative;
    background: linear-gradient(rgba(25, 88, 103, 0.65), rgba(0, 0, 0, 0.6)),
        url("images/crousel2.webp") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.banner-title {
    font-family: "Cinzel", serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    animation: fadeDown 1.5s ease forwards;
}

.banner-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #f1f1f1;
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Attractive Button */
.btn-banner {
    background: linear-gradient(45deg, #ff7f00, #ffb347);
    color: #fff;
    padding: 12px 34px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    animation: zoomIn 1.2s ease forwards;
    animation-delay: 1s;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

/* Hover Effects */
.btn-banner:hover {
    background: linear-gradient(45deg, #195867, #218c74);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(25, 88, 103, 0.4);
}

/* Shine Effect */
.btn-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.btn-banner:hover::after {
    left: 130%;
}

/* Animations */
@keyframes fadeDown {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .banner-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 575px) {
    .hero-banner {
        height: 55vh;
        padding: 0 15px;
    }

    .banner-title {
        font-size: 1.7rem;
    }

    .banner-subtitle {
        font-size: 0.95rem;
    }

    .btn-banner {
        font-size: 1rem;
        padding: 10px 24px;
    }
}

/* banner end */

/* enquiry index start */
.enquiry-section {
    text-align: center;
    padding: 20px 10px;
    overflow: hidden;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff7f00;
}

/* Animations */
.enquiry-title {
    font-size: 28px;
    font-weight: bold;
    color: #004d4d;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 1s forwards;
}

.enquiry-subtitle {
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 1s forwards;
    animation-delay: 0.3s;
}

.enquiry-row {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
    align-items: stretch;
    /* Ensure equal height */
}

/* Image */
.enquiry-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s forwards;
    animation-delay: 0.5s;
}

.enquiry-left img {
    width: 100%;
    height: 100%;
    /* Fill container height */
    border-radius: 20px;
    object-fit: cover;
    /* Maintain aspect ratio */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Form */
.enquiry-right {
    flex: 1;
    background: #f7f7f7;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s forwards;
    animation-delay: 0.7s;
}

.enquiry-right h3 {
    color: #ff7f00;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
    animation-delay: 0.9s;
}

.form-row {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 10px 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
}

.form-row:nth-child(1) {
    animation-delay: 1.1s;
}

.form-row:nth-child(2) {
    animation-delay: 1.3s;
}

.form-row:nth-child(3) {
    animation-delay: 1.5s;
}

.form-row:nth-child(4) {
    animation-delay: 1.7s;
}

.textarea-row {
    align-items: flex-start;
    border-radius: 20px;
}

.form-row i {
    margin-right: 10px;
    font-size: 16px;
    color: #d4af37;
}

.form-row input,
.form-row textarea {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    background: transparent;
    resize: none;
}

.form-row:focus-within {
    border: 1px solid #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.enquiry-btn {
    background: linear-gradient(135deg, #FF7F00 0%, #ffcc33 100%);
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
    animation-delay: 1.9s;
}

.enquiry-btn:hover {
    background: linear-gradient(135deg, #FF7F00 0%, #ffcc33 100%);
    color: #004d4d;
    transform: scale(1.02);
}

.enquiry-btn:active {
    background: #d4af37;
    color: #004d4d;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
    transform: scale(0.98);
}

/* Keyframes */
@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .enquiry-row {
        flex-direction: column;
    }

    .enquiry-left,
    .enquiry-right {
        height: auto;
        transform: none;
        animation: none;
        opacity: 1;
    }

    .enquiry-left img {
        height: auto;
    }
}

/* enquiry index end */

/* footer start */
/* Footer CSS */
.footer {
    background: linear-gradient(135deg, #ff6f00, #ffa040);
    color: white;
    padding: 50px 20px;
    font-family: "Poppins", sans-serif;
    /* Paragraphs & links */
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    /* uniform gap between columns */
    justify-content: space-between;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-about h2,
.footer-links h3,
.footer-contact h3 {
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    /* uniform heading spacing */
}

.footer-about p {
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 20px;
    /* consistent spacing after paragraph */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    line-height: 2;
    margin-bottom: 20px;
    /* uniform spacing */
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #ffd700;
}

.footer-contact p {
    margin-bottom: 15px;
    /* uniform spacing between contact lines */
}

.footer-contact p i {
    margin-right: 8px;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    /* equal spacing between social icons */
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    color: #ffd700;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    font-size: 14px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-social a {
        margin-right: 15px;
    }
}

/* footer end */

/* Hero Section */
.hero {
    display: flex;
    justify-content: flex-start;
    /* Align content towards top */
    align-items: flex-start;

    text-align: center;

    /* Top padding for spacing */
    position: relative;
    overflow: hidden;
    flex-direction: column;
    background: none;
    /* Removed background color */
}

/* Gradient text */
.hero h1,
.hero p {
    background: linear-gradient(90deg, #FF8C00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    width: 100%;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 0;
    opacity: 0;
    transform: translateY(-50px);
    /* Slide from top */
    animation: fadeInDown 1s ease forwards;
    animation-delay: 0.5s;
}

.hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(50px);
    /* Slide from bottom */
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}



    /* ===== Container ===== */
    .fixed-buttons {
      position: fixed;
      bottom: 25px;
      left: 25px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      z-index: 1000;
    }

    /* ===== Common Button Style ===== */
    .fixed-buttons a {
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      font-size: 24px;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(6px);
    }

    /* ===== Backgrounds with Gradient & Glow ===== */
    .call-btn {
      background: linear-gradient(135deg, #ff416c, #ff7e5f);
      box-shadow: 0 0 18px rgba(255, 65, 108, 0.5);
      animation: glowRed 2s infinite alternate;
    }

    .whatsapp-btn {
      background: linear-gradient(135deg, #25d366, #0cb974);
      box-shadow: 0 0 18px rgba(37, 211, 102, 0.5);
      animation: glowGreen 2s infinite alternate;
    }

    /* ===== Hover Effect ===== */
    .fixed-buttons a:hover {
      transform: scale(1.18) rotate(-8deg);
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    }

    /* ===== Shine Effect ===== */
    .fixed-buttons a::after {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      transform: skewX(-25deg);
      transition: left 0.6s ease;
    }
    .fixed-buttons a:hover::after {
      left: 125%;
    }

    /* ===== Tooltip ===== */
    .tooltip {
      position: absolute;
      left: 70px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.75);
      color: #fff;
      font-size: 14px;
      padding: 6px 10px;
      border-radius: 6px;
      opacity: 0;
      pointer-events: none;
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    .fixed-buttons a:hover .tooltip {
      opacity: 1;
      left: 75px;
    }

    /* ===== Glow Animations ===== */
    @keyframes glowRed {
      from {
        box-shadow: 0 0 10px rgba(255, 65, 108, 0.4);
      }
      to {
        box-shadow: 0 0 25px rgba(255, 65, 108, 0.8);
      }
    }

    @keyframes glowGreen {
      from {
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
      }
      to {
        box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
      }
    }

    /* ===== Responsive ===== */
    @media (max-width: 576px) {
      .fixed-buttons {
        bottom: 20px;
        left: 15px;
      }
      .fixed-buttons a {
        width: 52px;
        height: 52px;
        font-size: 20px;
      }
      .tooltip {
        font-size: 12px;
      }
    }