:root {
    --primary-blue: #0d6efd;
    --accent-pink: #ff4f8b;
    --dark-blue: #061329;
    --light-bg: #f7f8ff;
    --text-color: #333;
    --gradient-main: linear-gradient(135deg, #0d6efd, #ff4f8b);
    --font-main: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-script: "Great Vibes", cursive;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #ffffff;
}

/* Top Bar */

.top-bar {
    background: var(--dark-blue);
    color: #f1f1f1;
    font-size: 0.85rem;
}

.top-bar .social-icons a {
    color: #fff;
    margin-left: 0.5rem;
    transition: transform 0.2s, color 0.2s;
}

.top-bar .social-icons a:hover {
    color: var(--accent-pink);
    transform: translateY(-1px);
}

/* Logo */

.logo-script {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--accent-pink);
}

.logo-sub {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

/* Navbar */

.navbar {
    padding: 0.6rem 0;
}

.navbar .nav-link {
    font-weight: 500;
    margin-left: 0.5rem;
    position: relative;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: width 0.3s;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.btn-gradient {
    background-image: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.6rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s;
}

.btn-gradient:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Hero / Carousel */

.hero-section {
    position: relative;
}

.carousel-item {
    height: 90vh;
    min-height: 460px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.carousel-item .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 79, 139, 0.6), rgba(6, 19, 41, 0.9));
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 8%;              /* push it from the left edge */
    transform: translateY(-50%); /* only move vertically now */
    max-width: 650px;
    z-index: 2;
    text-align: left;      /* make sure text is left aligned */
}


.carousel-caption h5 {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffe5f0;
}

.carousel-caption h2 {
    font-size: clamp(2rem, 3.2vw + 1rem, 3.3rem);
    font-weight: 700;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    max-width: 550px;
    font-size: 0.95rem;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.7));
}

/* Sections */

.section-padding {
    padding: 80px 0;
}

.section-title .subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-pink);
    font-size: 0.85rem;
}

.section-title h2 {
    font-weight: 700;
    margin-top: 0.3rem;
    margin-bottom: 1.3rem;
}

/* About */

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

.about-card {
    position: relative;
}

.about-card img {
    border-radius: 24px;
}

.about-badge {
    position: absolute;
    bottom: -10%;
    left: -6%;
    background: var(--gradient-main);
    color: #fff;
    padding: 14px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-badge .number {
    font-size: 2rem;
    font-weight: 700;
}

.about-badge .text {
    font-size: 0.8rem;
    line-height: 1.2;
}

.bullet-list li {
    margin-bottom: 0.4rem;
}

.bullet-list i {
    color: var(--accent-pink);
    margin-right: 0.4rem;
}

/* Services */

.service-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 79, 139, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13, 110, 253, 0.18);
}

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

.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-image: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.4rem;
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.package-list {
    padding-left: 1rem;
}

.package-list li::marker {
    color: var(--accent-pink);
}

.service-card .price {
    margin-top: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.service-card .price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #777;
}

/* Why Choose Us */

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.08);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card i {
    font-size: 2.1rem;
    color: var(--accent-pink);
    margin-bottom: 10px;
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(255, 79, 139, 0.18);
}

/* Achievements */

.counter-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.08);
}

.counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-pink);
}

/* Gallery */

#galleryGrid .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

#galleryGrid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#galleryGrid .gallery-item::after {
    content: "View";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    background: linear-gradient(135deg, rgba(6, 19, 41, 0.1), rgba(6, 19, 41, 0.85));
    transition: opacity 0.3s ease;
}

#galleryGrid .gallery-item:hover img {
    transform: scale(1.08);
}

#galleryGrid .gallery-item:hover::after {
    opacity: 1;
}

/* Contact */

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 999px;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}

.contact-form textarea.form-control {
    border-radius: 1.4rem;
}

.contact-info i {
    color: var(--accent-pink);
}

.map-wrapper iframe {
    border-radius: 18px;
}

/* Footer */

.footer {
    background: #050915;
    color: #cdd3ff;
    font-size: 0.9rem;
}

.footer h5 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: #cdd3ff;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-pink);
    transform: translateX(3px);
}

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    margin-right: 0.4rem;
    color: #fff;
    font-size: 0.9rem;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s;
}

.footer .social-icons a:hover {
    background: var(--accent-pink);
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-bottom {
    background: #02040a;
    color: #8d93c4;
}

.footer-bottom i.bi-heart-fill {
    color: var(--accent-pink);
}

/* Floating Buttons */

.floating-buttons {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
	margin-bottom:100px;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
    animation: pulse 1.7s infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s;
}

.float-whatsapp {
    background: #25d366;
}

.float-call {
    background-image: var(--gradient-main);
}

.float-btn:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.05);
    box-shadow: 0 0 25px rgba(255, 79, 139, 0.9);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 79, 139, 0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(255, 79, 139, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 79, 139, 0);
    }
}

/* Scroll Reveal Animation */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 991.98px) {
    .carousel-caption {
        left: 4%;
        right: 15px;
        width: 85%;
    }
}

@media (max-width: 767.98px) {
    .carousel-item {
        height: 70vh;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-badge {
        bottom: -15%;
        left: 0%;
    }
}










.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    padding: 20px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.10);
    transition: all 0.3s ease;
}

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

/* image on top */
.service-img img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
}

/* Icon Circle */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff79c6, #6a5af9);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

/* Icon animation on hover */
.service-card:hover .icon-circle {
    transform: rotate(10deg) scale(1.15);
    box-shadow: 0 8px 20px rgba(255, 121, 198, 0.5);
}

/* Floating effect on icon */
.animated-icon i {
    animation: pulse 2s infinite ease-in-out;
}

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



/* Fancy Contact Box */
.fancy-contact {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fancy-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Heading Gradient Bar */
.contact-heading h5 {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.contact-heading h5 span {
    background: linear-gradient(45deg, #ff6ec7, #6a5af9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-heading h5::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff6ec7, #6a5af9);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 50px;
}

/* Each Item */
.contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Icon Circle */
.icon-badge {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(255,110,199,.15), rgba(106,90,249,.15));
    color: #ff6ec7;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 50%;
    margin-right: 15px;
    transition: 0.3s ease;
}

.fancy-contact:hover .icon-badge {
    transform: scale(1.18);
    background: linear-gradient(135deg, #ff6ec7, #6a5af9);
    color: #fff;
}

/* Text */
.contact-detail-item p {
    margin: 0;
    font-size: 15px;
    color: #444;
}

/* Note text */
.contact-note {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
}

.cu-sr{
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
	border-radius:15px;
	padding:30px;
	margin-bottom:30px;
}
.servc-secnt{
	margin-top:70px;
	margin-bottom:70px;
}
.cu-glry{
	margin-bottom:15px;
border-radius:20px;
}
.cu-glry img{
	
border-radius:20px;
}
.cu-hft-ba{
	height:auto!important;
	min-height:auto!important;
}
@media(max-width:991px)
{
	.sticky-top{
		position:relative
	}
}
@media(max-width:767px)
{
	.cu-mb-ds-nn{
		display:none!important;
	}
	.jf-cnt-ctnr{
		justify-content:center!important;
	}
}