@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Playfair+Display:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/*Header section*/



/* Navbar Styling */
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-bottom: 2px solid #d4af37; /* Golden border */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo Styling */
.logo {
    line-height: 1;
}

.logo-main {
    color: #ff2e63; /* Premium Pink */
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.logo-sub {
    color: #d4af37; /* Gold */
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 5px;
}

.tagline {
    color: #fff;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Nav Menu Styling */
.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu ul li {
    margin-left: 25px;
}

.nav-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav-menu ul li a:hover, .nav-menu ul li a.active {
    color: #d4af37;
}

/* Contact Button */
.contact-btn {
    background: #ff2e63;
    padding: 10px 20px;
    border-radius: 50px;
    color: white !important;
    transition: 0.4s !important;
}

.contact-btn:hover {
    background: #fff;
    color: #ff2e63 !important;
    box-shadow: 0 0 15px rgba(255, 46, 99, 0.4);
}

/* Mobile Responsive */
.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media screen and (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #1a1a1a;
        transition: 0.5s;
        height: 100vh;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        padding-top: 50px;
    }

    .nav-menu ul li {
        margin: 20px 0;
    }

    .nav-menu ul li a {
        font-size: 20px;
    }
}



/*banner*/
 
.hero-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('images/banner.jpg'); 
	background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding: 0 20px;
}

.welcome-text {
    font-size: 1.2rem;
    letter-spacing: 4px;
    font-weight: 300;
    margin-bottom: 10px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #ffcc00;  
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.diamond-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 40px;
}

.diamond-icon {
    font-size: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px #00d4ff);
}

.sub-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.ornament {
    color: #ffd700;
    margin-top: 10px;
}

/* Button Styling */
.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-pink {
    background: linear-gradient(45deg, #ff0066, #ff00aa);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.3);
}

.btn-gold {
    background: linear-gradient(45deg, #ffcc00, #ffaa00);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    filter: brightness(1.1);
}

/* Responsiveness */
@media (max-width: 768px) {
    .main-title { font-size: 2.2rem; }
    .sub-title { font-size: 1.5rem; }
    .diamond-box { padding: 20px; }
    .btn { width: 100%; }
}



/* Content Section Styling */
.content-section {
    background-color: #3d0303;  
    background-image: url('images/dark-matter.png'); /* Subtle texture */
    padding: 80px 20px;
    color: #f1f1f1;
    font-family: 'Poppins', sans-serif;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; 
}

 
.text-side {
    flex: 1;
    min-width: 300px;
}

.content-heading {
    
    font-size: 2rem;
    color: #d4af37;  
    margin-bottom: 20px;
    line-height: 1.3;
	font-weight:900;
}

.divider {
    width: 80px;
    height: 3px;
    background: #ff2e63;
    margin-bottom: 30px;
}

p{
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;

}
.content-para {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.highlight {
    color: #ff2e63;
    font-weight: 600;
}

.italic {
    font-style: italic;
    opacity: 0.8;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #d4af37;
    transition: 0.3s;
}

.read-more:hover {
    color: #ff2e63;
    border-color: #ff2e63;
}

 
.image-side {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.profile-card {
    position: relative;
    width: 320px;
    border: 5px solid #2a0202;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    overflow: hidden;
    border-radius: 10px;
}

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

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

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px;
    text-align: center;
}

.card-overlay h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-top: 5px;
}

.card-overlay span {
    font-size: 12px;
    letter-spacing: 2px;
}

 
@media (max-width: 992px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }
    .divider { margin: 0 auto 30px; }
    .image-side { order: -1; } 
}



 /*Gallery*/

.premium-gallery {
    background: #0a0a0a;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

 
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #d4af37;  
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.heading-line {
    width: 150px;
    height: 2px;
    background: #333;
    margin: 0 auto 20px;
    position: relative;
}

.heading-line span {
    width: 50px;
    height: 4px;
    background: #ff2e63;  
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.sub-heading {
    color: #888;
    font-size: 1.1rem;
    font-weight: 300;
}

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

 
.model-card {
    background: #151515;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #222;
}

.img-box {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff2e63;
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

 
.model-info {
    padding: 20px;
    text-align: center;
    background: linear-gradient(to top, #151515 80%, transparent);
}

.model-info h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.model-info p {
    color: #d4af37;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.stars {
    color: #ffcc00;
    margin-bottom: 15px;
}

.profile-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border: 1px solid #ff2e63;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    transition: 0.3s;
}

 
.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 46, 99, 0.2);
    border-color: #ff2e63;
}

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

.profile-link:hover {
    background: #ff2e63;
    box-shadow: 0 0 15px #ff2e63;
}

 
@media (max-width: 768px) {
    .main-heading { font-size: 2.2rem; }
    .img-box { height: 300px; }
}




/* Premium Booking Section Styles */
.booking-info-section {
    background-color: #2a0202;  
    background-image: linear-gradient(rgba(42, 2, 2, 0.9), rgba(42, 2, 2, 0.9)), url('https://www.transparenttextures.com/patterns/black-linen.png');
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

 
.info-text-box {
    flex: 1;
    min-width: 300px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37; /* Gold */
    margin-bottom: 15px;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: #ff2e63;
    margin-bottom: 30px;
}

.highlight-para {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item h4 {
    color: #ff2e63;
    margin: 10px 0;
}

.feature-item p {
    font-size: 0.9rem;
    color: #bbb;
}

 
.booking-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #d4af37;
}

.phone-link {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

 
.visual-card {
    flex: 0.8;
    height: 450px;
    background: url('images/image-2.jpg') center/cover;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.glass-box {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    width: 100%;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-tag {
    background: #ff2e63;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.action-btn {
    margin-top: 20px;
    background: #d4af37;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.action-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

 
@media (max-width: 992px) {
    .content-wrapper { flex-direction: column; text-align: center; }
    .title-underline { margin: 0 auto 30px; }
    .feature-grid { grid-template-columns: 1fr; }
    .visual-card { width: 100%; height: 350px; }
}


/* --- Luxury Gallery Styles --- */
.luxury-gallery-section {
    background-color: #080808;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow: hidden;
}

 
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-size: 3rem;
    color: #d4af37;  
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 700;
}

.title-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.title-decor .line {
    width: 60px;
    height: 2px;
    background: #ff2e63;  
}

.title-decor .diamond {
    width: 10px;
    height: 10px;
    background: #d4af37;
    transform: rotate(45deg);
}

.subtitle-text {
    color: #777;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

 
.gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

 
.model-item {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.image-container {
    width: 100%;
    height: 100%;
}

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

.tag-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

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

.overlay-info {
    text-align: center;
    padding: 20px;
}

.overlay-info h3 {
    color: #d4af37;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.overlay-info p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 15px;
}

.rating-stars {
    color: #ff2e63;
    margin-bottom: 20px;
}

.view-btn {
    text-decoration: none;
    color: #fff;
    border: 1px solid #ff2e63;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.view-btn:hover {
    background: #ff2e63;
    box-shadow: 0 0 15px #ff2e63;
}

 
.model-item:hover .image-container img {
    transform: scale(1.1) rotate(2deg);
}

.model-item:hover .hover-overlay {
    opacity: 1;
    transform: translateY(0);
}

 
@media (max-width: 768px) {
    .main-title { font-size: 2.2rem; }
    .model-item { height: 350px; }
}



.premium-container-section {
    background: #0c0c0c;  
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;  
}



.main-content-section {
    background-color: #2b0505; 
    padding: 30px 15px;
    color: #ffffff;
}


.main-content-section .content-container {
    max-width: 1100px;
    margin: 0 auto;
}


.main-content-section .title-heading {
    color: #f4c542; 
    font-size: 28px;
    font-weight: 700;
  
    text-transform: uppercase;
}


.main-content-section .text-description {
    font-size: 17px;
    line-height: 1.8;
 
    text-align: justify;
    color: #e0e0e0;
}


.main-content-section .text-description strong {
    color: #fff;
    border-bottom: 1px solid #f4c542;
    font-weight: bold;
}


@media (max-width: 768px) {
    .main-content-section .title-heading {
        font-size: 22px;
    }
    .main-content-section .text-description {
        font-size: 16px;
    }
}

 
.content-side {
    flex: 1;
    min-width: 320px;
}

.main-heading {
    font-size: 3rem;
    color: #d4af37;  
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.gold-separator {
    width: 70px;
    height: 4px;
    background: #ff2e63;  
    margin-bottom: 30px;
}

.dummy-para {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.features-list {
    margin: 30px 0;
}

.feat-item {
    margin-bottom: 12px;
    color: #d4af37;
    font-weight: 500;
}

.feat-item span {
    color: #ff2e63;
    margin-right: 10px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ff2e63;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s ease;
    border: 2px solid #ff2e63;
}

.cta-button:hover {
    background: transparent;
    color: #ff2e63;
}

 
.image-side {
    flex: 1;
    min-width: 320px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cat-card {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.cat-overlay span {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
}

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

 
@media (max-width: 768px) {
    .main-heading { font-size: 2.2rem; }
    .main-wrapper { flex-direction: column; text-align: center; }
    .gold-separator { margin: 0 auto 30px; }
    .category-grid { grid-template-columns: 1fr; }
}


 
.hero-banner-2 {
    background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 100%);
    padding:60px 20px;
    
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.hero-container {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

 
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #333;
    margin-bottom: 10px;
    line-height: 1;
}

.hero-title .highlight {
    color: #d63384;  
    text-shadow: 2px 2px 0px #000;
}

.satisfaction-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.percent {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
}

.hero-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #444;
    margin: 30px 0;
    border-left: 4px solid #d63384;
    padding-left: 15px;
}

 
.hero-image-area {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    border: 8px solid #d63384;
    border-radius: 20px;
    padding: 10px;
    transform: rotate(3deg);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    background: #fff;
    z-index: 2;
}

.image-frame img {
    max-width: 100%;
    border-radius: 12px;
    display: block;
}

 
.shape.triangle {
    position: absolute;
    top: -20px;
    right: 10%;
    width: 0; height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid #ffc107;
    z-index: 1;
}

.hero-link {
    display: block;
    margin-top: 15px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
}

.hero-link:hover {
    color: #d63384;
}

 
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-area {
        order: -1;  
    }

    .hero-quote {
        border-left: none;
        border-top: 2px solid #d63384;
        padding-left: 0;
        padding-top: 10px;
    }

    .satisfaction-badge {
        justify-content: center;
    }
}



 
.services-grid-section {
    background-color: #2b0505;  
    padding: 60px 20px;
    color: #ffffff;
    
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    color: #f4c542;  
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: left;
	    font-family: 'Poppins', sans-serif;
}

.main-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ccc;
}

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

 
.service-card {
    background: #1a0303;
    border: 1px solid #441010;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);  
    border-color: #f4c542;
}

.card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

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

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

 
.card-btn {
    background-color: #c2185b;  
    color: white;
    border: none;
    padding: 12px 15px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.card-btn:hover {
    background-color: #f4c542;
    color: #000;
}

.btn-pink {
    background-color: #a3144d;
}

 
@media (max-width: 600px) {
    .main-title {
        font-size: 1.5rem;
    }
    .card-image {
        height: 300px;
    }
}


/* Footer General Styles */
.footer-section {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 2px solid #f4c542;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

 
.footer-col h3 {
    color: #f4c542;  
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 600;
}

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

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

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #f4c542;
    padding-left: 5px;
}

 
.brand-name {
    font-size: 2rem;
    color: #ffffff;
    margin-top: 20px;
}

.brand-name span {
    color: #d63384;  
}

.brand-tag {
    color: #f4c542;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #222; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}


.insta:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    transform: scale(1.2) rotate(10deg);
}

.twitter:hover {
    background: #1DA1F2;
    transform: scale(1.2) rotate(-10deg);
}

.fb:hover {
    background: #1877F2;
    transform: scale(1.2) rotate(10deg);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

 
.footer-bottom {
    text-align: center;
    margin-top: 50px;
	margin-bottom:50px;
    font-size: 0.85rem;
    color: #888;
}

.footer-bottom hr {
    border: 0;
    border-top: 1px solid #333;
    margin-bottom: 20px;
}

.booking-text {
    margin: 15px 0;
    color: #bbb;
}

.booking-text strong {
    color: #fff;
}

.footer-policy a {
    color: #f4c542;
    text-decoration: none;
}

 
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}



 .nowcalling{display:block;position:fixed;bottom:0;width:100%;z-index:9999}.lcol,.rcol{float:left;width:50%}.lcol{background-color:#C20964}.rcol{background-color:#069C3E}.lcol a,.rcol a{display:block;padding:10px 0;text-align:center;text-decoration:none;color:#fff}