/* Primary Colors */
:root {
    --primary-orange: #FF6B35;
    /* Orange */
    --primary-blue: #1A56DB;
    /* Blue */
    --primary-yellow: #F59E0B;
    /* Yellow */
    --dark-orange: #D45A00;
    /* Darker shade of orange for hover states */
    --dark-blue: #1E40AF;
    /* Darker shade of blue for hover states */
    --light-yellow: #FCD34D;
    /* Lighter shade of yellow for highlights */
    --text-dark: #1F2937;
    /* Dark gray for text */
    --text-light: #F9FAFB;
    /* Light text for dark backgrounds */
    --light-gray: #F3F4F6;
    /* Light gray for backgrounds */
}

/* Base Styles */
body {
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Page Header with Gradient */
.page-header {
    background: linear-gradient(135deg, #FF6B35, #F59E0B) !important;
    color: white;
    padding: 4rem 0;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #1F2937, #111827) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Noto Sans Devanagari', 'Arial Unicode MS', Arial, sans-serif;
}

/* Navbar Brand */
.navbar-brand {
    line-height: 1.2;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;

}



.navbar-brand .fs-6 {
    line-height: 1.1;
}

.navbar-brand .fs-7 {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Marathi text styling */
.marathi-text {
    font-family: 'Noto Sans Devanagari', 'Arial Unicode MS', Arial, sans-serif;
    line-height: 1.4;
    direction: ltr;
    unicode-bidi: bidi-override;
}

.navbar-brand,
.nav-link {
    color: #fcd34d !important;
    font-weight: 500;
}

.nav-link {
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}



.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #ffff00 !important;
    text-decoration: none;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: white;
}

.btn-warning {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #D97706;
    border-color: #D97706;
    color: white;
}

.btn-success {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-success:hover,
.btn-success:focus {
    background-color: var(--dark-orange);
    border-color: var(--dark-orange);
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: var(--primary-orange);
    color: white;
    font-weight: 600;
}

/* Backgrounds */
.bg-primary {
    background-color: var(--primary-orange) !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-orange) !important;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary-orange), #FF8C42);
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1F2937, #111827);
    color: white;
    padding: 3rem 0 1.5rem;
    border-top: 4px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue), var(--primary-yellow));
}

footer h5 {
    color: var(--light-yellow);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
}

footer a {
    color: #E5E7EB;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: var(--light-yellow);
    transform: translateX(5px);
    text-decoration: none;
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

footer address {
    color: #E5E7EB;
    line-height: 1.7;
    font-style: normal;
}

footer .social-links {
    margin-top: 1.5rem;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

footer .copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #9CA3AF;
    font-size: 0.9rem;
}

footer .copyright a {
    color: var(--primary-yellow);
    margin: 0;
}

footer .copyright a:hover {
    color: white;
    text-decoration: underline;
}

/* Utility Classes */
.rounded-pill {
    border-radius: 50rem !important;
}

/* Custom Button Styles */
.btn-outline-orange {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-outline-orange:hover {
    background-color: var(--primary-orange);
    color: white;
}

/* Alert Styles */
.alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: var(--primary-yellow);
    color: var(--text-dark);
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(26, 86, 219, 0.25);
}

/* Badges */
.badge-orange {
    background-color: var(--primary-orange);
    color: white;
}

/* Custom Section Styling */
.feature-box {
    padding: 2rem;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}



.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.carousel-caption {
    z-index: 2;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Team Section Styling */
.team-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.team-card .card-img-top {
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .card-img-top {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
    text-decoration: none;
}

.team-card h2.display-5 {
    font-weight: 500 !important;
    letter-spacing: -0.5px;
}

.team-card .card-title {
    font-weight: 600;
    color: #2d3748;
}

.team-card .text-primary {
    color: var(--primary-orange) !important;
    font-weight: 500;
}

.team-card .card-body {
    background: white;
    border-radius: 0 0 10px 10px;
}



.sticky-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-buttons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: #0088cc;
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.sticky-buttons a:hover {
    animation: pulse 1s infinite;
}


.rounded-submit-btn {
    width: 150px;                 /* Small clean width */
    padding: 10px 0;              /* Comfortable height */
    font-size: 16px;
    border-radius: 30px !important; /* FULL rounded button */
    display: block;
    margin: 20px auto 0;          /* Center alignment */
    font-weight: 500;
}







    /* Card Hover Effects */
    .option-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(135deg, #fff 0%, #fff9f2 100%);
        border: 1px solid #ffecd2;
    }
    
    .option-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
        cursor: pointer;
        background: linear-gradient(135deg, #fff8f0 0%, #fff2e0 100%);
    }
    
    /* Groom Card Specific */
    .option-card .fa-male {
        background: linear-gradient(45deg, #FF9800, #FFC107);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    /* Bride Card Specific */
    .option-card .fa-female {
        background: linear-gradient(45deg, #FF5722, #FF9800);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    /* Button Styling */
    .btn-primary {
        background: linear-gradient(45deg, #FF9800, #FFC107);
        border: none;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background: linear-gradient(45deg, #F57C00, #FFA000);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    }
    
    /* Card Header Gradient */
    .card-header {
        background: linear-gradient(120deg, #FF9800, #FFC107) !important;
    }
    
    /* Alert Styling */
    .alert-info {
        background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 100%);
        border: 1px solid #ffe0b2;
        color: #5d4037;
    }
    
    /* Form Input Focus */
    .form-control:focus {
        border-color: #FFA000;
        box-shadow: 0 0 0 0.25rem rgba(255, 152, 0, 0.25);
    }
    
    /* Checkbox Styling */
    .form-check-input:checked {
        background-color: #FF9800;
        border-color: #F57C00;
    }
