/* General navbar styling */

.main {
    background-color: lightpink;
}

.navbar {
    background: linear-gradient(135deg, #ff69b4, #ff1493, #c71585) !important;
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Navbar brand styling */
.navbar-brand {
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 50px;
    transition: transform 0.3s ease;
}

.slot {
    margin-left: 300px;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: #ffd700 !important;
}

/* Navbar links styling */
.nav-link {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover effect with underline animation */
.nav-link:hover {
    color: #ffd700 !important;
    transform: scale(1.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active link styling */
.nav-link.active {
    color: #ffd700 !important;
    font-weight: 600;
}

/* Toggler button styling */
.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        background: #1a237e;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .nav-link {
        padding: 10px !important;
        text-align: center;
    }

    .nav-link:hover::after {
        width: 50%;
        left: 25%;
    }

    .slot {
        margin-left: 80px;
    }

}

/* Smooth transitions for collapse animation */
.navbar-collapse {
    transition: all 0.3s ease;
}

/* Hover effect for navbar items */
.nav-item {
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.nav-item:hover {
    transform: translateY(-2px);
}

/* Accessibility improvements */
.nav-link:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}







.about-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.about-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    /* Change as needed */
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    /* Improves readability on image */
}





/* Carousel container styling */
.carousel {
    max-height: 500px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    width: 100%;
}

/* Carousel inner and item styling */
.carousel-inner {
    height: 500px;
}

.carousel-item {
    height: 100%;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Zoom effect on hover */
.carousel-item img:hover {
    transform: scale(1.05);
}

/* Fade transition enhancement */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Carousel control buttons */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}



/* Control icons styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #1a237e;
    border-radius: 50%;
    padding: 20px;
    background-size: 50% 50%;
    transition: transform 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    transform: scale(1.2);
}

/* Accessibility improvements */
.carousel-control-prev:focus,
.carousel-control-next:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel {
        max-height: 270px;
        margin: 10px auto;
    }

    .carousel-inner {
        height: 270px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 15px;
    }
}

/* Ensure smooth transitions */
.carousel-item.active,
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    transform: translateX(0);
}

.carousel-item-next,
.carousel-item-prev {
    transform: translateX(0);
}








/* Container div styling */
.escort {
    background-color: #ffe6e6;
    /* Light red background */
    padding: 10px;
    text-align: center;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Hover effect for subtle zoom */
.escort:hover {
    transform: scale(1.02);
}

/* Heading styling */
.escort h1 {
    color: #1a237e;
    /* Matching navbar color for consistency */
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

/* Hover effect for heading */
.escort h1:hover {
    color: black;
    /* Gold accent to match navbar */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .escort {
        padding: 15px;
        margin: 10px;
    }

    .escort h1 {
        font-size: 1.8rem;
    }
}

/* Accessibility improvements */
.escort h1:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}







.hero-section {
    background: linear-gradient(135deg, #ff5e62, #f6d365);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.feature-card {
    transition: transform 0.3s;
    background-color: #e04e52 !important;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.container {
    padding: 40px 0;
}

.btn-custom {
    background-color: #ff5e62 !important;
    border: none;
    padding: 10px 30px;
}

.btn-custom:hover {
    background-color: #e04e52;
}





.footer {
    background: linear-gradient(135deg, #ff69b4, #ff1493, #c71585);
    color: white;
    padding: 3rem 0;
    font-family: 'Arial', sans-serif;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffd700;
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.footer .form-control {
    border-radius: 25px;
    border: none;
    padding: 0.75rem;
}

.footer .btn {
    border-radius: 25px;
    background-color: #ffd700;
    color: #c71585;
    font-weight: bold;
    border: none;
    padding: 0.75rem 1.5rem;
}

.footer .btn:hover {
    background-color: #ffeb3b;
    color: #b0006e;
}

.footer .social-icons a {
    font-size: 1.5rem;
    margin: 0 0.5rem;
    color: white;
}

.footer .social-icons a:hover {
    color: #ffd700;
}

.content2 {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    margin-top: 2rem;
}


.whatsapp-btn {
    position: fixed;
    bottom: 10px;
    right: 03px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #20b358;
    color: white;
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 1.5rem;
}




.phone-btn {
    position: fixed;
    bottom: 10px;
    left: 03px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.phone-btn:hover {
    background-color: #20b358;
    color: white;
}

.phone-btn i {
    margin-right: 10px;
    font-size: 1.5rem;
}




