@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* --- General Styles --- */
body { 
    font-family: 'Poppins', sans-serif; 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    background-color: #fcfcfc; 
    color: #333;
}

/* --- Top Bar --- */
.top-bar { font-size: 13px; letter-spacing: 0.5px; }
.top-bar a { text-decoration: none; transition: 0.3s; }
.top-bar a:hover { color: #ff4d6d !important; }

/* --- Logo & Navbar --- */
.logo-text { font-weight: 700; font-size: 1.6rem; color: #333 !important; text-decoration: none; }
.logo-text span { color: #ff4d6d; }
.nav-link { font-weight: 500; color: #555 !important; transition: 0.3s; }
.nav-link:hover { color: #ff4d6d !important; }

.btn-primary { 
    background-color: #ff4d6d; 
    border: none; 
    border-radius: 50px; 
    padding: 10px 25px; 
    font-weight: 600;
    transition: 0.3s;
}
.btn-primary:hover { 
    background-color: #e63958; 
    transform: scale(1.05); 
    box-shadow: 0 10px 20px rgba(255, 77, 109, 0.3);
}

/* --- About Page Hero --- */
.about-hero {
    background: linear-gradient(rgba(255, 77, 109, 0.8), rgba(255, 77, 109, 0.8)), 
                url('https://images.pexels.com/photos/1024960/pexels-photo-1024960.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

/* --- Image Overlap Logic --- */
.about-img-overlap { 
    position: relative; 
    padding: 20px;
}
.img-1 { 
    width: 85%; 
    border-radius: 20px; 
    position: relative; 
    z-index: 1; 
}
.img-2 { 
    width: 55%; 
    position: absolute; 
    bottom: -20px; 
    right: 0; 
    z-index: 2; 
    border-radius: 20px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); 
}

/* --- Experience Badge --- */
.experience-badge { 
    min-width: 130px; 
    border: 5px solid #fff; 
    z-index: 3; 
    text-align: center;
}

/* --- Value Cards & Icons --- */
.icon-box {
    width: 65px;
    height: 65px;
    background: rgba(255, 77, 109, 0.1);
    color: #ff4d6d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: 0.4s;
}
.card:hover .icon-box {
    background: #ff4d6d;
    color: #fff;
    transform: rotateY(360deg);
}

/* --- Feature Cards & Ratings --- */
.feature-card, .item { 
    transition: 0.4s ease-in-out; 
    background: #fff; 
    border-radius: 20px;
    border: 1px solid #eee;
}
.feature-card:hover, .item:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 20px 40px rgba(255, 77, 109, 0.12) !important; 
    border-color: #ff4d6d; 
}

/* --- Footer --- */
footer { border-top: 4px solid #ff4d6d; }
.footer-links a { 
    color: #adb5bd !important; 
    text-decoration: none; 
    transition: 0.3s; 
    font-size: 14px; 
    display: block; 
    margin-bottom: 10px; 
}
.footer-links a:hover { 
    color: #ff4d6d !important; 
    padding-left: 10px; 
}

/* --- Banner Slides --- */
.banner-img { height: 85vh; object-fit: cover; filter: brightness(45%); }
.carousel-caption { bottom: 35%; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.carousel-caption h1 { font-size: 4rem; }

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .img-2 { width: 45%; bottom: -10px; }
}

@media (max-width: 768px) { 
    .banner-img { height: 60vh; } 
    .carousel-caption h1 { font-size: 2.5rem; } 
    .display-3 { font-size: 2.2rem; }
}
/* --- Sidebar Styles --- */
.sidebar {
    width: 280px;
    height: 100vh;
    background-color: #ffffff; /* Clean white background */
    position: fixed;
    top: 0;
    left: 0;
    border-right: 1px solid #eee;
    padding: 30px 20px;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Sidebar Links */
.sidebar a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #555; /* Neutral grey color */
    font-weight: 500;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: 0.3s;
}

/* Sidebar Hover Effect */
.sidebar a:hover {
    background-color: rgba(255, 77, 109, 0.1); /* Light pink background */
    color: #ff4d6d; /* Your brand pink color */
    padding-left: 20px;
}

/* Active Link State */
.sidebar a.active {
    background-color: #ff4d6d; /* Solid pink */
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(255, 77, 109, 0.2);
}

/* Icon style inside sidebar */
.sidebar i {
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .sidebar {
        width: 70px; /* Mini sidebar for mobile */
        padding: 20px 10px;
    }
    .sidebar span {
        display: none; /* Hide text on small screens */
    }
}
/* --- Custom Scrollbar Styles --- */

/* 1. Scrollbar ki puri width (Bar track) */
::-webkit-scrollbar {
    width: 10px; /* Scrollbar ki motayi */
}

/* 2. Scrollbar ka background (Track) */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

/* 3. Jo bar move hoti hai (Thumb) */
::-webkit-scrollbar-thumb {
    background: #ff4d6d; /* Aapka brand pink color */
    border-radius: 10px; /* Isse bar round dikhegi */
    border: 2px solid #f1f1f1; /* Track aur thumb ke beech gap ke liye */
}

/* 4. Hover karne par thumb ka color change */
::-webkit-scrollbar-thumb:hover {
    background: #e63958; /* Thoda dark pink hover par */
}

/* Firefox ke liye (Standard property) */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff4d6d #f1f1f1;
}
/* --- Services Page Custom Styles --- */

/* Services Hero Section */
.services-hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.pexels.com/photos/1024960/pexels-photo-1024960.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

/* Service Card Container */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 30px;
    border: 1px solid #eee;
    transition: all 0.4s ease-in-out;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(255, 77, 109, 0.15) !important;
    border-color: #ff4d6d;
}

/* Service Icon Styling */
.service-icon-box {
    width: 75px;
    height: 75px;
    background: rgba(255, 77, 109, 0.1);
    color: #ff4d6d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.service-card:hover .service-icon-box {
    background: #ff4d6d;
    color: #ffffff;
    transform: rotateY(360deg);
}

/* Service Card Title */
.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

/* Service Card Description */
.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Navbar Active Link for Services */
.nav-link.active {
    color: #ff4d6d !important;
    font-weight: 600;
}
/* --- Careers Page Specific Styles --- */

.careers-hero {
    background: linear-gradient(rgba(255, 77, 109, 0.9), rgba(255, 77, 109, 0.9)), 
                url('https://images.pexels.com/photos/3184339/pexels-photo-3184339.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
}

.job-card {
    transition: 0.3s ease-in-out;
}

.job-card:hover {
    transform: translateX(10px);
    background-color: #fff !important;
    box-shadow: 0 15px 30px rgba(255, 77, 109, 0.1) !important;
}

.bg-danger-soft {
    background-color: rgba(255, 77, 109, 0.1);
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 77, 109, 0.25);
    border: 1px solid #ff4d6d;
}

/* Application Form Animation */
.card {
    border-top: 5px solid #ff4d6d !important;
}
/* Contact Page Styling */
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 109, 0.1);
    color: #ff4d6d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card:hover .icon-box {
    background: #ff4d6d;
    color: #fff;
    transform: scale(1.1);
    transition: 0.3s;
}

form .form-control:focus {
    background-color: #fff !important;
    border: 1px solid #ff4d6d !important;
    box-shadow: 0 0 10px rgba(255, 77, 109, 0.2);
}
/* Custom Icon Colors for Features */
.icon-box i {
    font-size: 2rem;
}

/* Love Wallet Special Card */
.bg-danger {
    background-color: #ff4d6d !important;
}

/* Badge for Coins */
.badge-coin {
    background: #ffd700;
    color: #333;
    font-weight: bold;
    border-radius: 50px;
    padding: 5px 15px;
}

/* Smooth Image hover */
img.shadow-lg:hover {
    transform: scale(1.02);
    transition: 0.5s;
}

/* Flex adjustment for icons in list */
ul li i {
    vertical-align: middle;
}
/* Custom Border for Chat Cards */
.border-top-danger {
    border-top: 4px solid #ff4d6d !important;
}

/* Progress Bar Styling */
.progress-bar {
    background-color: #ff4d6d !important;
    border-radius: 10px;
}

/* AI Section Hover */
.bg-white.shadow.rounded-5:hover {
    transform: scale(1.03);
    transition: 0.3s ease;
    box-shadow: 0 15px 30px rgba(255, 77, 109, 0.1) !important;
}

/* Nudge Icon Animation */
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
}

.feature-card:hover .bi-hand-index-thumb-fill {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}
/* --- Team Section Styles --- */
.team-card {
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent !important;
}

.team-card:hover {
    transform: translateY(-10px);
    background-color: #ffffff !important;
    box-shadow: 0 20px 40px rgba(255, 77, 109, 0.15) !important;
    border-bottom: 4px solid #ff4d6d !important;
}

.team-img-wrapper img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    transition: 0.4s;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-social a {
    font-size: 1.1rem;
    transition: 0.3s;
    opacity: 0.7;
}

.team-social a:hover {
    color: #ff4d6d !important;
    opacity: 1;
}
.team-img-wrapper img {
    width: 150px; /* Aap apne hisab se size kam-zyada kar sakte hain */
    height: 150px;
    object-fit: cover; /* Yeh image ko stretch nahi hone dega */
    object-position: top center; /* Yeh face ko focus mein rakhega */
    border-radius: 50%;
}