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

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f9fa;
    color: #333;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.right-img img{
    height: 60px;
    width: auto;
}

.logo h1 {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 14px;
}

.nav a:hover {
    color: #FFD700;
}

.nav a i {
    margin-right: 5px;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.btn-login {
    background: #FFD700;
    color: #8B4513 !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-login:hover {
    background: #FFC700;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1200') center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #FFD700;
    color: #8B4513;
}

.btn-primary:hover {
    background: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #8B4513;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #8B4513;
    font-weight: 700;
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #FFD700);
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-box i {
    font-size: 48px;
    color: #8B4513;
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 36px;
    color: #8B4513;
    margin-bottom: 10px;
}

.stat-box p {
    color: #666;
    font-size: 14px;
}

/* Why Us Section */
.why-us-section {
    background: #f8f9fa;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-box i {
    font-size: 48px;
    color: #8B4513;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* How To Section */
.how-to-section {
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513, #6B3410);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step i {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-large {
    background: #FFD700;
    color: #8B4513;
}

.cta-section .btn-large:hover {
    background: #FFC700;
    color: #8B4513;
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-col p {
    line-height: 1.8;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #FFD700;
}

.footer-col ul li i {
    margin-right: 10px;
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #FFD700;
    color: #2c2c2c;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .features, .steps, .about-stats, .footer-content {
        grid-template-columns: 1fr;
    }
}


/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: white;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: white;
}

.content-box {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    border-left: 4px solid #8B4513;
}

.content-box h2 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 24px;
}

.content-box h2 i {
    margin-right: 10px;
    color: #FFD700;
}

.content-box p {
    line-height: 1.8;
    color: #555;
}

.wiki-link {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #fff3cd;
    border-radius: 10px;
}

.wiki-link a {
    color: #8B4513;
    font-weight: 600;
}

/* Form Section */
.form-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.form-container, .login-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.login-container {
    max-width: 500px;
}

.registration-form, .login-form, .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row .full {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group label i {
    color: #8B4513;
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8B4513;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139,69,19,0.1);
}

.btn-submit {
    background: linear-gradient(135deg, #8B4513, #6B3410);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139,69,19,0.3);
}

.btn-submit i {
    margin-right: 8px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.form-footer a {
    color: #8B4513;
    font-weight: 600;
}

.alert-error {
    background: #ffe6e6;
    color: #d32f2f;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #d32f2f;
}

.alert-success {
    background: #e6ffe6;
    color: #2e7d32;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #2e7d32;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 5px;
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.contact-form-box, .contact-info-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-form-box h2, .contact-info-box h2 {
    color: #8B4513;
    margin-bottom: 25px;
    font-size: 28px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    font-size: 32px;
    color: #8B4513;
    min-width: 40px;
}

.info-item h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 18px;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Search Section */
.search-section {
    padding: 60px 0;
    background: white;
}

.search-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.search-form-inline {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.search-form-inline select,
.search-form-inline input {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.search-form-inline button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #8B4513, #6B3410);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-form-inline button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,69,19,0.3);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.profile-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.profile-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.profile-image {
    height: 250px;
    background: linear-gradient(135deg, #8B4513, #6B3410);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image i {
    font-size: 100px;
    color: rgba(255,255,255,0.3);
}

.profile-info {
    padding: 25px;
}

.profile-info h3 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 22px;
}

.profile-details p {
    margin: 8px 0;
    color: #555;
    font-size: 14px;
}

.profile-details i {
    color: #8B4513;
    margin-right: 8px;
    width: 20px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #666;
    margin-bottom: 10px;
}

.no-results p {
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid, .profiles-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .search-form-inline {
        flex-direction: column;
    }
    
    .search-form-inline select,
    .search-form-inline input {
        width: 100%;
    }
}


/* Profile Locked */
.profile-locked {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 15px;
}

.profile-locked i {
    font-size: 60px;
    color: #8B4513;
    margin-bottom: 15px;
}

.profile-locked p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.btn-unlock {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #6B3410);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-unlock:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,69,19,0.3);
}

/* Admin Action Buttons */
.btn-action {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin-right: 5px;
    transition: all 0.3s;
}

.btn-edit {
    background: #2196F3;
    color: white;
}

.btn-edit:hover {
    background: #1976D2;
}

.btn-approve {
    background: #4CAF50;
    color: white;
}

.btn-approve:hover {
    background: #388E3C;
}

.btn-delete {
    background: #f44336;
    color: white;
}

.btn-delete:hover {
    background: #d32f2f;
}

.btn-action i {
    margin-right: 5px;
}


/* Recent Profiles Section */
.recent-profiles-section {
    padding: 80px 0;
    background: white;
}

.profile-quick-info {
    margin: 15px 0;
}

.profile-quick-info p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
}

.btn-view-profile {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #8B4513, #6B3410);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-view-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,69,19,0.3);
}

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

.no-profiles {
    text-align: center;
    color: #999;
    padding: 40px;
    grid-column: 1 / -1;
}


/* Profile Wrapper */
.profile-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-sidebar {
    background: white;
    border-radius: 15px;
    padding: 20px;
    height: fit-content;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.profile-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-menu a {
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-menu a:hover {
    background: #f8f9fa;
    color: #8B4513;
}

.profile-menu a.active {
    background: linear-gradient(135deg, #8B4513, #6B3410);
    color: white;
}

.profile-menu a i {
    font-size: 18px;
}

.profile-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.password-form {
    max-width: 500px;
}

.password-form .form-group {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .profile-wrapper {
        grid-template-columns: 1fr;
    }
    
    .profile-menu {
        flex-direction: row;
        overflow-x: auto;
    }
}


/* Marathi Content Styling */
.marathi-content {
    font-size: 16px;
    line-height: 1.9;
}

.marathi-content .content-box {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #8B4513;
}

.marathi-content h3 {
    color: #8B4513;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.marathi-content p {
    margin-bottom: 15px;
    color: #444;
    text-align: justify;
}

.contact-highlight {
    background: linear-gradient(135deg, #FFD700, #FFC700);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    color: #8B4513;
    margin: 20px 0;
}

.important-note {
    background: #fff3cd !important;
    border-left-color: #ff9800 !important;
}

.important-note h3 {
    color: #ff9800;
}

.highlight-text {
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    margin: 15px 0;
}

.request-box {
    background: linear-gradient(135deg, #8B4513, #6B3410) !important;
    color: white;
    text-align: center;
}

.request-box p {
    color: white;
    font-size: 17px;
}

.namaste {
    font-size: 24px;
    margin-top: 20px;
}


/* Profile Detail Page */
.profile-detail-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.profile-detail-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-detail-sidebar {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: fit-content;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.profile-detail-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.profile-detail-photo-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #8B4513, #6B3410);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.profile-detail-photo-placeholder i {
    font-size: 120px;
    color: rgba(255,255,255,0.3);
}

.profile-detail-sidebar h2 {
    color: #8B4513;
    margin-bottom: 10px;
    font-size: 24px;
}

.profile-id {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-back {
    display: block;
    background: #f8f9fa;
    color: #333;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-back:hover {
    background: #e9ecef;
}

.profile-detail-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.detail-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid #f0f0f0;
}

.detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-section h3 {
    color: #8B4513;
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-item label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.detail-item span {
    color: #333;
    font-size: 16px;
}

.expectations-text {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.contact-info-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.contact-item i {
    font-size: 32px;
    color: #8B4513;
}

.contact-item label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.contact-item span {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.profile-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-action-primary, .btn-action-success {
    flex: 1;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-action-primary {
    background: linear-gradient(135deg, #8B4513, #6B3410);
    color: white;
}

.btn-action-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,69,19,0.3);
}

.btn-action-success {
    background: #25D366;
    color: white;
}

.btn-action-success:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

@media (max-width: 768px) {
    .profile-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .detail-grid, .contact-info-box {
        grid-template-columns: 1fr;
    }
    
    .profile-actions {
        flex-direction: column;
    }
}


/* Admin Dashboard */
.admin-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.stat-card i {
    font-size: 48px;
    color: #8B4513;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    font-size: 16px;
}

.admin-table-wrapper {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead tr {
    background: linear-gradient(135deg, #8B4513, #6B3410);
}

.admin-table th {
    padding: 15px;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.admin-table tbody tr:hover {
    background: #f8f9fa;
}

.admin-thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.admin-thumb-icon {
    font-size: 50px;
    color: #ddd;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-warning {
    background: #FFC107;
    color: #333;
}

.badge-success {
    background: #4CAF50;
    color: white;
}

.badge-danger {
    background: #f44336;
    color: white;
}

.btn-view {
    background: #2196F3;
    color: white;
}

.btn-view:hover {
    background: #1976D2;
}

.admin-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.btn-admin-approve, .btn-admin-edit, .btn-admin-delete {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-admin-approve {
    background: #4CAF50;
    color: white;
}

.btn-admin-approve:hover {
    background: #388E3C;
}

.btn-admin-edit {
    background: #2196F3;
    color: white;
}

.btn-admin-edit:hover {
    background: #1976D2;
}

.btn-admin-delete {
    background: #f44336;
    color: white;
}

.btn-admin-delete:hover {
    background: #d32f2f;
}

@media (max-width: 768px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-table-wrapper {
        overflow-x: scroll;
    }
}


/* Email Verification */
.verification-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.verification-success i {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.verification-error i {
    font-size: 80px;
    color: #f44336;
    margin-bottom: 20px;
}

.verification-box h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 28px;
}

.verification-box p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}


/* Owl Carousel Hero Slider */
.hero-slider .hero-slide {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
}

.hero-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: white !important;
    transition: all 0.3s;
}

.hero-slider .owl-nav button:hover {
    background: rgba(255,255,255,0.4) !important;
}

.hero-slider .owl-nav .owl-prev {
    left: 20px;
}

.hero-slider .owl-nav .owl-next {
    right: 20px;
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.hero-slider .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5) !important;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s;
}

.hero-slider .owl-dot.active {
    background: white !important;
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero{
        background: none;
        padding: 0px;
        display: block;
        height: auto;
    }

    .hero-buttons{
        display: block;
    }
    .hero-slider .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}


/* Disclaimer Box */
.disclaimer-box {
    background: linear-gradient(135deg, #8B4513, #6B3410);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
}

.disclaimer-box .hero-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.disclaimer-box .hero-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: white;
}

.disclaimer-box .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .disclaimer-box {
        padding: 30px 20px;
    }
    
    .disclaimer-box .hero-content h1 {
        font-size: 24px;
    }
    
    .disclaimer-box .hero-content p {
        font-size: 14px;
    }
}
