/* style.css - Add your custom styles below */

.header-container {
    width: 100%;
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    text-align: left;
    padding-left: 20px;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

/* Astrologer Registration Button */
.astrologer-register-btn {
    margin-right: 20px;
}

.astrologer-register-btn a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #346eeb 0%, #7ca6fa 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    max-width: 600px;
    text-align: left;
    border: 2px solid transparent;
    animation: buttonBlink 2s ease-in-out infinite;
}

.astrologer-register-btn a:hover {
    background: linear-gradient(135deg, #346eeb 0%, #7ca6fa 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-title {
    font-size: 22px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
    text-align: left;
    flex-shrink: 0;
    margin-right: 15px;
}

.btn-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.0;
    opacity: 0.9;
    display: block;
    text-align: center;
    flex: 1;
}

.navigation {
    width: 100%;
    background-color: #f39c12;
    padding: 15px 0;
    border-bottom: 1px solid #e67e22;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    padding-left: 20px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover {
    background-color: #800000;
    color: #ffffff;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f39c12;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(230, 126, 34, 0.3);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #ffce7f;
    color: #2c3e50;
}

/* Sub-dropdown Styles */
.sub-dropdown {
    position: relative;
}

.sub-dropdown-toggle {
    cursor: pointer;
}

.sub-dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #f39c12;
    min-width: 220px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sub-dropdown:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-dropdown-menu li {
    border-bottom: 1px solid rgba(230, 126, 34, 0.3);
}

.sub-dropdown-menu li:last-child {
    border-bottom: none;
}

.sub-dropdown-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

.sub-dropdown-menu a:hover {
    background-color: #ffce7f;
    color: #2c3e50;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    outline: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Ribbon Section - Updated to match Services Section */
.ribbon-section {
    background: #ffc467;
    padding: 20px 0 50px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    border: none;
    width: 100% !important;
    display: block !important;
}

.ribbon-title {
    display: block;
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 36px;
    text-shadow: none;
}

.ribbon-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
    max-width: 400px;
    min-height: 120px;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
    margin: 0 auto;
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer;
    gap: 16px;
    box-sizing: border-box;
}

.ribbon-card:hover {
    box-shadow: 0 8px 32px rgba(243,156,18,0.18);
    transform: translateY(-6px) scale(1.04);
    background: #f5e6d3;
}

.ribbon-card-content {
    display: flex;
    flex-direction: column;
    width: 55%;
    min-width: 0;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.ribbon-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #800000;
    text-align: left;
    margin: 0 0 8px 0;
    height: 25%;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ribbon-card-description {
    font-size: 0.9rem;
    color: #666;
    text-align: left;
    line-height: 1.4;
    height: 75%;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 5px;
}

.ribbon-card-img {
    display: block;
    margin: 0;
    width: 45%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    background: #fff;
    object-fit: cover;
    flex-shrink: 0;
}

.ribbon-card a {
    color: #800000 !important;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none !important;
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 12px;
}

.ribbon-card a:hover {
    color: #a83232 !important;
}

/* Main Content Styles */
main {
    min-height: 100vh;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(195, 1, 4, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%), url('./images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: -20px;
    padding: 0 0;
}

.hero-text {
    flex: 0 0 60%;
    text-align: left;
    padding-right: 40px;
    margin-top: -80px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 5px;
    line-height: 1.6;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
}

.toggle-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
}

.toggle-btn.active {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #e67e22, #d35400);
}

.toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.hero-content-toggle {
    position: relative;
    min-height: 200px;
}

.content-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.content-section.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pay-now-btn {
    margin-top: 25px;
    display: inline-block;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
    color: white !important;
    border: 2px solid rgba(46, 204, 113, 0.3) !important;
    border-radius: 8px;
    padding: 60px 60px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 88px;
    line-height: 1.3;
    text-align: center;
    min-width: 400px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pay-now-btn:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
    border-color: rgba(46, 204, 113, 0.5);
    color: white;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 26px;
}

.btn-primary {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

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

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.saint-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: saintGlow 4s ease-in-out infinite;
    position: relative;
}

.saint-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.saint-svg {
    width: 80%;
    height: 100%;
    max-width: 500px;
    max-height: 600px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    position: relative;
    z-index: 2;
}

@keyframes saintGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
        transform: scale(1.04);
    }
}

/* Zodiac Signs Styles */
.zodiac-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.zodiac-sign {
    position: absolute;
    font-size: 2rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    animation: zodiacGlow 2s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zodiac-sign:hover {
    transform: scale(1.3);
    color: #FFA500;
    text-shadow: 0 0 20px rgba(255, 165, 0, 1);
}

.zodiac-svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    transition: all 0.3s ease;
}

.zodiac-sign:hover .zodiac-svg {
    filter: drop-shadow(0 0 15px rgba(255, 165, 0, 1));
}

@keyframes zodiacGlow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    }
    50% { 
        text-shadow: 0 0 20px rgba(255, 215, 0, 1);
    }
}

/* Zodiac Grid Section - Card Style */
.zodiac-grid-section {
    padding: 10px 0 50px 0;
    background: #ffd99e;
}

.zodiac-grid-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #800000;
    text-shadow: 0 2px 4px rgba(128, 0, 0, 0.1);
}

.zodiac-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.zodiac-grid-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px;
}

.zodiac-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.zodiac-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.zodiac-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.2);
    border-color: #f39c12;
}

.zodiac-grid-item:hover::before {
    transform: scaleX(1);
}

.zodiac-grid-svg {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    transition: transform 0.6s ease-in-out;
    filter: drop-shadow(0 4px 8px rgba(243, 156, 18, 0.2));
}

.zodiac-grid-item:hover .zodiac-grid-svg {
    transform: rotate(360deg);
    filter: drop-shadow(0 6px 12px rgba(243, 156, 18, 0.4));
}

.zodiac-grid-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    transition: color 0.3s ease;
}

.zodiac-grid-item:hover .zodiac-grid-label {
    color: #f39c12;
}

/* Zodiac Grid Responsive */
@media (max-width: 1024px) {
    .zodiac-grid-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    
    .zodiac-grid-item {
        padding: 20px 12px;
    }
    
    .zodiac-grid-svg {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .zodiac-grid-section {
        padding: 40px 0 30px 0;
    }
    
    .zodiac-grid-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .zodiac-grid-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .zodiac-grid-item {
        padding: 18px 10px;
    }
    
    .zodiac-grid-svg {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }
    
    .zodiac-grid-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .zodiac-grid-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .zodiac-grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .zodiac-grid-item {
        padding: 15px 8px;
    }
    
    .zodiac-grid-svg {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .zodiac-grid-label {
        font-size: 0.9rem;
    }
}

/* Services Section */
.services-section {
    padding: 10px 0;
    background: #f8f9fa;
}

.services-section a {
    text-decoration: none;
    color: inherit;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card-icon {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    padding: 0 30px;
    margin-top: 20px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 30px;
}

.service-link {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    padding: 0 30px 30px 30px;
    display: block;
}

.service-link:hover {
    text-decoration: underline;
}

/* Consultation Section */
.consultation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.consultation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.consultation-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.consultation-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.consultation-benefits li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    color: #333;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #f39c12;
}

.testimonial-rating {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.testimonial-author strong {
    color: #2c3e50;
    display: block;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #f39c12;
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    margin: 0;
}

.astrologer-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
}

.image-placeholder {
    font-size: 5rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile Fixes */
    .hero-section {
        padding: 20px 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 5px;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Hero Image Mobile Fixes - Move to top */
    .hero-image {
        order: 1;
        margin-bottom: 30px;
        margin-top: 20px;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
        margin-top: -80px;
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        display: none;
    }
    
    .hero-content-toggle {
        margin-bottom: 20px;
        margin-top: 50px;
        position: relative;
    }
    
    .content-section {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        height: auto;
        min-height: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .content-section:last-child {
        margin-bottom: 0;
    }
    
    .content-section h1 {
        text-align: center;
    }
    
    .content-section p {
        text-align: center;
    }
    
    /* Pay Button Mobile Fixes */
    .pay-now-btn {
        font-size: 14px !important;
        padding: 15px 20px;
        min-width: 250px;
        max-width: 90%;
        margin-top: 20px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .saint-container {
        max-width: 210px;
        max-height: 280px;
        padding: 10px 0px 30px;
    }
    
    .saint-svg {
        max-width: 210px;
        max-height: 280px;
    }
    
    /* Zodiac Signs Mobile Fixes */
    .zodiac-container {
        max-width: 250px;
        max-height: 350px;
    }
    
    .zodiac-sign {
        font-size: 1.5rem;
    }
    
    .zodiac-svg {
        width: 24px;
        height: 24px;
    }
    
    /* Other Section Mobile Fixes */
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Ribbon Section Mobile Fixes */
    .ribbon-section {
        padding: 10px 0;
    }
    
    .ribbon-list {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap !important;
    }
    
    .ribbon-list a {
        font-size: 12px;
        padding: 6px 12px;
        min-width: 80px;
        max-width: 100px;
        word-wrap: break-word;
        flex: 0 0 auto;
    }
    
    .ribbon-card {
        padding: 12px;
        gap: 8px;
        min-height: 80px;
    }
    
    .ribbon-card-img {
        width: 45%;
        height: 100%;
    }
    
    .ribbon-card-title {
        font-size: 0.9rem;
    }
    
    .ribbon-card-description {
        font-size: 0.8rem;
    }
    
    /* Navigation Mobile Fixes */
    .navigation {
        position: relative;
        padding: 10px 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f39c12;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        max-height: 400px;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(230, 126, 34, 0.3);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        font-size: 16px;
        display: block;
        width: 100%;
        text-align: left;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(230, 126, 34, 0.1);
        margin-left: 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
        font-size: 14px;
        border-bottom: 1px solid rgba(230, 126, 34, 0.2);
    }
    
    /* Mobile Sub-dropdown Styles */
    .sub-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(230, 126, 34, 0.05);
        margin-left: 20px;
        display: none;
        min-width: auto;
    }
    
    .sub-dropdown.active .sub-dropdown-menu {
        display: block;
    }
    
    .sub-dropdown-menu a {
        padding: 8px 20px;
        font-size: 13px;
        border-bottom: 1px solid rgba(230, 126, 34, 0.1);
    }
    
    /* Header Container Mobile Fixes */
    .header-container {
        flex-direction: column;
        padding: 10px 0;
    }
    
    /* Astrologer Button Mobile Fixes */
    .astrologer-register-btn {
        display: block;
        margin: 10px 0;
        width: 100%;
    }
    
    .astrologer-register-btn a {
        max-width: 100%;
        flex-direction: column;
        padding: 15px 20px;
        text-align: center;
        animation: buttonBlink 2s ease-in-out infinite;
    }
    
    .btn-title {
        font-size: 18px;
        margin-bottom: 8px;
        margin-right: 0;
        text-align: center;
    }
    
    .btn-subtitle {
        font-size: 14px;
        text-align: center;
        margin-right: 0;
    }
    
    /* Container Mobile Fixes */
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Section Padding Mobile Fixes */
    .services-section,
    .consultation-section,
    .testimonials-section,
    .about-section,
    .cta-section {
        padding: 40px 0;
    }
    
    /* Form Mobile Fixes */
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Hero Section Tablet Fixes */
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 30px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* Hero Image Tablet Fixes - Move to top like mobile */
    .hero-image {
        order: 1;
        margin-bottom: 40px;
        margin-top: 0;
        display: flex;
        justify-content: center;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        margin-top: -80px;
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    /* Hide toggle buttons on tablet like mobile */
    .hero-buttons {
        display: none;
    }
    
    .hero-content-toggle {
        margin-bottom: 30px;
        position: relative;
    }
    
    .content-section {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        height: auto;
        min-height: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .content-section:last-child {
        margin-bottom: 0;
    }
    
    .content-section h1 {
        text-align: center;
        font-size: 2.2rem;
    }
    
    .content-section p {
        text-align: center;
        font-size: 1.1rem;
    }
    
    /* Pay Button Tablet Fixes */
    .pay-now-btn {
        font-size: 20px !important;
        padding: 25px 35px;
        min-width: 320px;
        margin-top: 25px;
        line-height: 1.3;
    }
    
    /* Saint Image Tablet Fixes */
    .saint-container {
        max-width: 280px;
        max-height: 350px;
    }
    
    .saint-svg {
        max-width: 280px;
        max-height: 350px;
    }
    
    /* Zodiac Signs Tablet Fixes */
    .zodiac-container {
        max-width: 350px;
        max-height: 450px;
    }
    
    .zodiac-sign {
        font-size: 1.8rem;
    }
    
    .zodiac-svg {
        width: 28px;
        height: 28px;
    }
    
    /* Navigation Tablet Fixes */
    .nav-menu {
        justify-content: center;
        padding-left: 0;
        gap: 40px;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 12px 20px;
    }
    
    /* Astrologer Button Tablet Fixes */
    .astrologer-register-btn {
        display: block;
        margin: 15px 0;
        width: 100%;
    }
    
    .astrologer-register-btn a {
        max-width: 500px;
        margin: 0 auto;
        flex-direction: row;
        padding: 15px 25px;
        text-align: left;
        animation: buttonBlink 2s ease-in-out infinite;
    }
    
    .btn-title {
        font-size: 20px;
        margin-bottom: 0;
        margin-right: 15px;
        text-align: left;
    }
    
    .btn-subtitle {
        font-size: 16px;
        text-align: center;
        margin-right: 0;
    }
    
    /* Container Tablet Fixes */
    .container {
        padding: 0 30px;
    }
    
    /* Section Padding Tablet Fixes */
    .services-section,
    .consultation-section,
    .testimonials-section,
    .about-section,
    .cta-section {
        padding: 60px 0;
    }
    
    /* Services Grid Tablet Fixes */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Testimonials Grid Tablet Fixes */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Consultation Content Tablet Fixes */
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* About Content Tablet Fixes */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Stats Tablet Fixes */
    .stats {
        flex-direction: row;
        gap: 40px;
        justify-content: center;
    }
    
    /* CTA Buttons Tablet Fixes */
    .cta-buttons {
        flex-direction: row;
        gap: 25px;
    }
    
    /* Form Tablet Fixes */
    .contact-form {
        padding: 35px 30px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 15px;
        font-size: 16px;
    }
    
    /* Ribbon Section Tablet Fixes */
    .ribbon-section {
        padding: 12px 0;
    }
    
    .ribbon-list {
        gap: 25px;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .ribbon-list a {
        font-size: 17px;
        padding: 11px 22px;
        min-width: 130px;
        white-space: normal !important;
    }
    
    .ribbon-card {
        padding: 16px;
        gap: 12px;
        min-height: 100px;
    }
    
    .ribbon-card-img {
        width: 45%;
        height: 100%;
    }
    
    .ribbon-card-title {
        font-size: 1rem;
    }
    
    .ribbon-card-description {
        font-size: 0.85rem;
    }
    
    /* Section Headings Tablet Fixes */
    .services-section h2,
    .consultation-text h2,
    .testimonials-section h2,
    .about-text h2,
    .cta-section h2 {
        font-size: 2.2rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        display: none;
    }
    
    .pay-now-btn {
        font-size: 12px !important;
        padding: 12px 16px;
        min-width: 200px;
        max-width: 95%;
    }
    
    .saint-container {
        max-width: 175px;
        max-height: 210px;
    }
    
    .saint-svg {
        max-width: 175px;
        max-height: 210px;
    }
    
    .zodiac-container {
        max-width: 200px;
        max-height: 280px;
    }
    
    .zodiac-svg {
        width: 20px;
        height: 20px;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .ribbon-list {
        gap: 8px;
        flex-wrap: wrap !important;
    }
    
    .ribbon-list a {
        font-size: 11px;
        padding: 5px 10px;
        min-width: 100%;
        max-width: 100%;
    }
    
    .ribbon-card {
        padding: 10px;
        gap: 6px;
        min-height: 70px;
    }
    
    .ribbon-card-img {
        width: 45%;
        height: 100%;
    }
    
    .ribbon-card-title {
        font-size: 0.8rem;
    }
    
    .ribbon-card-description {
        font-size: 0.7rem;
    }
    
    .container {
        padding: 0 5px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .services-section h2,
    .consultation-text h2,
    .testimonials-section h2,
    .about-text h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Button Blinking Animation */
@keyframes buttonBlink {
    0% {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    }
    50% {
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
        transform: translateY(-1px);
    }
    100% {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    }
} 

/* ===== ASTROLOGER REGISTRATION PAGE STYLES ===== */

.reg-section {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
    padding: 60px 0;
    min-height: 100vh;
}

.reg-container {
    max-width: 1400px;
    margin: 0 auto;
    /*padding: 0 20px;*/
    box-sizing: border-box;
}

.reg-layout {
    display: grid !important;
    grid-template-columns: 65% 35% !important;
    gap: 10px !important;
    align-items: start !important;
    padding: 0 20px !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.reg-main {
    width: 100% !important;
    grid-column: 1 !important;
}

.reg-sidebar {
    background: #ffffff !important;
    border-radius: 15px 15px 15px 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    position: sticky !important;
    top: 05px !important;
    height: fit-content !important;
    width: 100% !important;
    grid-column: 2 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.reg-sidebar .reg-benefits-section {
    background: #f8f9fa !important;
    padding: 30px !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
    border: none !important;
    text-align: center !important;
}

.reg-sidebar .reg-benefits-section h3 {
    color: #2c3e50 !important;
    font-size: 1.3rem !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}

.reg-sidebar .reg-benefits-list {
    list-style: none !important;
    padding: 0 !important;
}

.reg-sidebar .reg-benefits-list li {
    padding: 10px 0 !important;
    color: #555 !important;
    position: relative !important;
    padding-left: 30px !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
}

.reg-sidebar .reg-benefits-list li:before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    color: #28a745 !important;
    font-weight: bold !important;
    font-size: 18px !important;
}

.reg-container-inner {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.reg-banner {
    width: 100%;
    min-height: 200px;
    height: auto;
    overflow: visible;
    position: relative;
    margin-bottom: 0;
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    text-align: center;
}

.reg-banner-image {
    width: 100%;
    /*max-width: 400px;*/
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reg-header {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.reg-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.reg-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.reg-form {
    padding: 40px;
}

.reg-form-group {
    margin-bottom: 25px;
}

.reg-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.reg-form-group input,
.reg-form-group select,
.reg-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.reg-form-group input:focus,
.reg-form-group select:focus,
.reg-form-group textarea:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

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

.reg-form-row .reg-form-group {
    margin-bottom: 0;
}

.reg-submit-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.reg-submit-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

/* Checkbox Styles */
.reg-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.reg-checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.reg-checkbox-item:hover {
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.15);
}

.reg-checkbox-item input[type="checkbox"] {
    display: none;
}

.reg-checkmark {
    width: 24px;
    height: 24px;
    border: 7px solid #ddd;
    border-radius: 4px;
    margin-right: 15px;
    position: relative;
    background: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.reg-checkbox-item input[type="checkbox"]:checked + .reg-checkmark {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-color: #f39c12;
    box-shadow: 0 2px 6px rgba(243, 156, 18, 0.3);
}

.reg-checkbox-item input[type="checkbox"]:checked + .reg-checkmark:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #007bff;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 123, 255, 0.3);
}

.reg-checkbox-item input[type="checkbox"]:checked ~ span:last-child {
    color: #2c3e50;
    font-weight: 600;
}

.reg-checkbox-item input[type="checkbox"]:checked {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
    border-color: #f39c12;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
}

.reg-checkbox-item:has(input[type="checkbox"]:checked) {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
    border-color: #f39c12;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
}

.reg-benefits-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.reg-benefits-section h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.reg-benefits-list {
    list-style: none;
    padding: 0;
}

.reg-benefits-list li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.reg-benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

.reg-required {
    color: #e74c3c;
}

.reg-file-upload {
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reg-file-upload:hover {
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.05);
}

.reg-file-upload input[type="file"] {
    display: none;
}

/* Top Astrologers Section Styles */
.top-astrologers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.top-astrologers-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.astrologer-slider-container {
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
}

.astrologer-slider {
    overflow: hidden;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.astrologer-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.astrologer-card {
    width: 280px;
    height: 570px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.astrologer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.astrologer-photo {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.astrologer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.astrologer-card:hover .astrologer-photo img {
    transform: scale(1.05);
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rating-star {
    color: #ffc107;
    font-size: 14px;
}

.rating-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.astrologer-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.astrologer-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.astrologer-experience {
    color: #28a745;
    font-size: 1.0rem;
    margin-bottom: 8px;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    max-height: 2.8em;
    line-height: 1.4;
}

.astrologer-specialization {
    color: #f39c12;
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    max-height: 2.8em;
}

.astrologer-stats {
    margin-bottom: 15px;
}

.consultation-count {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.languages-supported {
    background: #fff3e0;
    color: #d35400;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    max-height: 2.8em;
    line-height: 1.4;
}

.astrologer-fee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid #e9ecef;
}

.fee-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.fee-amount {
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
}

.book-consultation-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    margin-top: auto;
}

.book-consultation-btn:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
    color: white;
    text-decoration: none;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2c3e50;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: #f39c12;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: #f39c12;
    transform: scale(1.2);
}

.slider-dot.active {
    background: #f39c12;
    transform: scale(1.2);
}

/* Astrologer Search Page Styles */
.search-hero-section {
    background: linear-gradient(135deg, rgba(195, 1, 4, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%), url('./images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.search-hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.search-hero-section p {
    font-size: 1.2rem;
    color: white;
    opacity: 0.9;
}

.filters-section {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.filters-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

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

.filter-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.filter-group select,
.filter-group input {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #f39c12;
}

.apply-filters-btn {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.apply-filters-btn:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.clear-filters-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
}

.clear-filters-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

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

.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.results-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.results-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.astrologers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.astrologer-search-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.astrologer-search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.astrologer-search-card .astrologer-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.astrologer-search-card .astrologer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.astrologer-search-card:hover .astrologer-photo img {
    transform: scale(1.05);
}

.astrologer-search-card .astrologer-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.astrologer-search-card .astrologer-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.astrologer-search-card .astrologer-experience {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.astrologer-search-card .astrologer-specialization {
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 500;
}

.astrologer-search-card .astrologer-languages {
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 12px;
    font-style: italic;
}

.astrologer-search-card .astrologer-stats {
    margin-bottom: 15px;
}

.astrologer-search-card .consultation-count {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.astrologer-search-card .astrologer-fee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid #e9ecef;
}

.astrologer-search-card .fee-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.astrologer-search-card .fee-amount {
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
}

.astrologer-search-card .book-consultation-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    margin-top: auto;
}

.astrologer-search-card .book-consultation-btn:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    color: white;
    text-decoration: none;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.no-results p {
    color: #6c757d;
    margin-bottom: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-link:hover {
    background: #f39c12;
    color: white;
    border-color: #f39c12;
    text-decoration: none;
}

.page-link.active {
    background: #f39c12;
    color: white;
    border-color: #f39c12;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: white !important;
    padding: 60px 0 0 0 !important;
    margin-top: 80px !important;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
}

.footer-section h3 {
    color: #f39c12 !important;
    font-size: 1.5rem !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.footer-section h4 {
    color: #f39c12 !important;
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.footer-section p {
    color: #bdc3c7 !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    font-size: 0.95rem !important;
}

.social-media-icons {
    display: flex !important;
    gap: 15px !important;
    margin-top: 20px !important;
    flex-wrap: wrap;
}

.social-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    background: rgba(243, 156, 18, 0.2) !important;
    color: #f39c12 !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(243, 156, 18, 0.3) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.social-icon:hover {
    background: #f39c12 !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4) !important;
    text-decoration: none !important;
    border-color: #f39c12 !important;
}

.social-icon i {
    font-size: 18px !important;
    font-weight: 600 !important;
}

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

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

.footer-links a {
    color: #bdc3c7 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    display: inline-block !important;
    position: relative !important;
    font-size: 0.9rem !important;
    padding: 2px 0 !important;
}

.footer-links a:hover {
    color: #f39c12 !important;
    text-decoration: none !important;
    transform: translateX(5px) !important;
}

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    color: #f39c12;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.contact-info p {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 12px !important;
    color: #bdc3c7 !important;
    font-size: 0.9rem !important;
    padding: 5px 0 !important;
}

.contact-info i {
    color: #f39c12 !important;
    margin-right: 12px !important;
    width: 20px !important;
    text-align: center !important;
    font-size: 16px !important;
    background: rgba(243, 156, 18, 0.1) !important;
    padding: 8px !important;
    border-radius: 50% !important;
}

.footer-cta {
    margin-top: 20px;
}

.footer-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.2);
}

.footer-btn:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #f39c12;
    text-decoration: none;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .social-media-icons {
        justify-content: center;
    }
}

.more-astrologers-section {
    text-align: center;
    margin-top: 40px;
}

.more-astrologers-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.more-astrologers-btn:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Astrologer Slider */
@media (max-width: 1200px) {
    .astrologer-slider-container {
        padding: 0 50px;
        max-width: 1600px;
    }
    
    .astrologer-slider {
        max-width: 1200px;
    }
    
    .astrologer-card {
        width: 260px;
        height: 550px;
    }
    
    .astrologer-photo {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .astrologer-slider-container {
        padding: 0 40px;
        max-width: 1400px;
    }
    
    .astrologer-slider {
        max-width: 1000px;
    }
    
    .astrologer-card {
        width: 240px;
        height: 540px;
    }
    
    .astrologer-photo {
        height: 290px;
    }
    
    .top-astrologers-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .astrologer-slider-container {
        padding: 0 30px;
    }
    
    .astrologer-card {
        width: 220px;
        height: 530px;
    }
    
    .astrologer-photo {
        height: 280px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .top-astrologers-section h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .astrologer-slider-container {
        padding: 0 20px;
    }
    
    .astrologer-card {
        width: 200px;
        height: 520px;
    }
    
    .astrologer-photo {
        height: 270px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .top-astrologers-section h2 {
        font-size: 1.5rem;
    }
    
    .astrologer-info {
        padding: 15px;
    }
    
    .astrologer-name {
        font-size: 1.1rem;
    }
}

.reg-file-upload-text {
    color: #666;
    font-size: 16px;
}

.reg-file-upload-text strong {
    color: #f39c12;
}

/* Registration Page Responsive Design */
@media (max-width: 768px) {
    .reg-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    .reg-main {
        grid-column: 1 !important;
        order: 1 !important;
    }
    
    .reg-sidebar {
        grid-column: 1 !important;
        order: 2 !important;
        border-radius: 15px !important;
        padding: 0 !important;
    }
    
    .reg-sidebar .reg-benefits-section {
        padding: 20px !important;
        border-radius: 10px !important;
        margin: 0 !important;
    }
    
    .reg-sidebar .reg-benefits-section h3 {
        font-size: 1.1rem !important;
    }
    
    .reg-sidebar .reg-benefits-list li {
        font-size: 14px !important;
        padding: 8px 0 !important;
        padding-left: 25px !important;
    }
    
    .reg-sidebar .reg-benefits-list li:before {
        font-size: 16px !important;
    }
    
    .reg-header h1 {
        font-size: 2rem;
    }
    
    .reg-header p {
        font-size: 1rem;
    }
    
    .reg-form {
        padding: 30px 20px;
    }
    
    .reg-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reg-form-group {
        margin-bottom: 20px;
    }
    
    .reg-form-group label {
        font-size: 15px;
    }
    
    .reg-form-group input,
    .reg-form-group select,
    .reg-form-group textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    .reg-checkbox-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .reg-checkbox-item {
        padding: 12px 15px;
    }
    
    .reg-checkmark {
        width: 20px;
        height: 20px;
        margin-right: 12px;
    }
    
    .reg-checkbox-item input[type="checkbox"]:checked + .reg-checkmark:after {
        font-size: 18px;
    }
    
    .reg-submit-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .reg-banner {
        height: 200px;
        padding: 20px 30px 0 30px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .reg-banner {
        height: 240px !important;
        padding: 25px 30px 0 30px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .reg-banner-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .reg-layout {
        grid-template-columns: 60% 40% !important;
        gap: 30px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .reg-sidebar {
        order: 2 !important;
        width: 100% !important;
        grid-column: 2 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        max-width: 100% !important;
    }
    
    .reg-main {
        order: 1 !important;
        width: 100% !important;
        grid-column: 1 !important;
    }
    
    .reg-container-inner {
        width: 100% !important;
    }
    
    .reg-header {
        padding: 35px 25px !important;
    }
    
    .reg-header h1 {
        font-size: 2.2rem !important;
    }
    
    .reg-form {
        padding: 35px 25px !important;
    }
    
    .reg-checkbox-group {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 12px !important;
    }
    
    .reg-benefits-section {
        padding: 28px 25px !important;
        margin-bottom: 18px !important;
    }
}

@media (max-width: 480px) {
    .reg-section {
        padding: 40px 0;
    }
    
    .reg-layout {
        padding: 0 10px !important;
    }
    
    .reg-sidebar {
        border-radius: 10px !important;
    }
    
    .reg-sidebar .reg-benefits-section {
        padding: 15px !important;
        border-radius: 8px !important;
    }
    
    .reg-sidebar .reg-benefits-section h3 {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
    }
    
    .reg-sidebar .reg-benefits-list li {
        font-size: 13px !important;
        padding: 6px 0 !important;
        padding-left: 20px !important;
    }
    
    .reg-sidebar .reg-benefits-list li:before {
        font-size: 14px !important;
    }
    
    .reg-header {
        padding: 30px 20px;
    }
    
    .reg-header h1 {
        font-size: 1.8rem;
    }
    
    .reg-header p {
        font-size: 0.95rem;
    }
    
    .reg-form {
        padding: 25px 15px;
    }
    
    .reg-form-group {
        margin-bottom: 18px;
    }
    
    .reg-form-group label {
        font-size: 14px;
    }
    
    .reg-form-group input,
    .reg-form-group select,
    .reg-form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .reg-checkbox-item {
        padding: 10px 12px;
    }
    
    .reg-checkmark {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
    
    .reg-checkbox-item input[type="checkbox"]:checked + .reg-checkmark:after {
        font-size: 16px;
    }
    
    .reg-submit-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .reg-banner {
        height: 150px;
        padding: 15px 20px 0 20px;
    }
    
    .reg-banner {
        padding: 15px 15px 0 15px !important;
        height: 180px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .reg-banner-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .reg-layout {
        padding: 0 5px !important;
        gap: 15px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .reg-sidebar {
        order: 2 !important;
        margin-top: 15px !important;
        padding: 15px !important;
        border-radius: 8px !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        max-width: 100% !important;
    }
    
    .reg-main {
        order: 1 !important;
    }
    
    .reg-header {
        padding: 25px 15px !important;
    }
    
    .reg-header h1 {
        font-size: 1.8rem !important;
    }
    
    .reg-form {
        padding: 25px 15px !important;
    }
    
    .reg-checkbox-group {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    
    .reg-checkbox-item {
        padding: 10px 12px !important;
    }
    
    .reg-checkmark {
        width: 20px !important;
        height: 20px !important;
        margin-right: 10px !important;
    }
    
    .reg-checkbox-item input[type="checkbox"]:checked + .reg-checkmark:after {
        font-size: 16px !important;
    }
    
    .reg-benefits-section {
        padding: 15px 10px !important;
        margin-bottom: 0 !important;
    }
    
    .reg-sidebar .reg-benefits-section {
        padding: 15px 10px !important;
        margin-bottom: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
    }
    
    .reg-benefits-section h3 {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }
} 

.ribbon-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px !important;
    justify-items: center;
    align-items: stretch;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 900px) {
  .ribbon-list {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    justify-items: stretch;
  }
  .ribbon-card {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    min-height: 120px;
    padding: 16px 8px;
    gap: 10px;
    width: 100%;
    max-width: none;
    margin: 0 auto 0 auto;
  }
  .ribbon-card-img {
    width: 80px;
    min-width: 60px;
    max-width: 120px;
    height: 80px;
    object-fit: cover;
    margin: 0 auto 8px auto;
    display: block;
  }
  .ribbon-card-content {
    width: 100%;
    min-width: 0;
    height: auto;
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .ribbon-card-title {
    font-size: 1rem;
    min-height: 22px;
    justify-content: center;
    text-align: center;
  }
  .ribbon-card-description {
    font-size: 0.9rem;
    padding: 0;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .ribbon-list {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 0 2px !important;
  }
  .ribbon-card {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    min-height: 130px;
    padding: 18px 4px;
    gap: 8px;
    width: 100%;
    max-width: none;
    margin: 0 auto 0 auto;
  }
  .ribbon-card-img {
    width: 80px;
    min-width: 60px;
    max-width: 100px;
    height: 80px;
    object-fit: cover;
    margin: 0 auto 10px auto;
    display: block;
  }
  .ribbon-card-content {
    width: 100%;
    min-width: 0;
    height: auto;
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .ribbon-card-title {
    font-size: 0.95rem;
    min-height: 18px;
    justify-content: center;
    text-align: center;
  }
  .ribbon-card-description {
    font-size: 0.8rem;
    padding: 0;
    text-align: center;
    justify-content: center;
  }
  .ribbon-card-img {
    min-width: 60px;
  }
} 

/* Horoscope by Date of Birth Page Styles */
.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #333;
}

.feature-icon {
    font-size: 1.2rem;
    color: #f39c12;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Birth Chart Form Section */
.birth-chart-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin: 2rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.birth-chart-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.birth-chart-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f39c12;
    background: white;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Content Section Styles */
.content-section {
    padding: 4rem 0;
   /* background: white;*/
}

.main-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.main-content h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.main-content h3 {
    color: #34495e;
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem 0;
    border-left: 4px solid #f39c12;
    padding-left: 1rem;
}

.main-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
}

.main-content p {
    margin-bottom: 1.2rem;
    color: #555;
    font-size: 1.05rem;
}

.content-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-list li {
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1.05rem;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #f39c12;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box h4 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.8rem;
    color: #856404;
    font-size: 1.05rem;
}

/* Chart Components */
.chart-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.component-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
}

.component-item h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.component-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
}

.step-number {
    background: #f39c12;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #f39c12;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Analysis Types */
.analysis-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.analysis-type {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #dee2e6;
}

.analysis-type h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.analysis-type ul {
    margin: 0;
    padding-left: 1.5rem;
}

.analysis-type li {
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1rem;
}

/* Why Choose Us */
.why-choose-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.reason {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.reason h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.reason p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    margin: 2rem 0;
}

.faq-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #f39c12;
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h4 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-box .btn {
    background: white;
    color: #f39c12;
    font-weight: 600;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.cta-box .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .birth-chart-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .chart-components {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-types {
        grid-template-columns: 1fr;
    }
    
    .why-choose-us {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    .main-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-box {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .cta-box h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-features {
        gap: 0.6rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .birth-chart-form-container {
        padding: 1.5rem;
    }
    
    .main-content {
        padding: 0 1rem;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .component-item,
    .step,
    .benefit-card,
    .analysis-type,
    .reason,
    .faq-item {
        padding: 1.2rem;
    }
} 

/* TOC styles for content sidebar */
.toc-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}
.toc-title {
  margin: 0 0 12px 0;
  font-size: 1.2rem;
  color: #2c3e50;
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toc-link {
  display: block;
  padding: 10px 12px;
  background: #f8f9fa;
  border-radius: 10px;
  color: #34495e;
  text-decoration: none;
  border-left: 3px solid #f39c12;
  transition: background 0.2s ease, transform 0.1s ease;
}
.toc-link:hover {
  background: #eef2f7;
  transform: translateX(2px);
}
.toc-cta {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  border-radius: 15px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.toc-cta .btn {
  background: #fff;
  color: #e67e22;
} 

/* Global Typography Styles - Matching Template.php Design */
h2 {
  color: #2c3e50;
  font-size: 2rem;
  line-height: 1.3;
  margin: 2rem 0 1rem 0;
  font-weight: 800;
  scroll-margin-top: 90px;
  padding-left: 15px;
  padding-right: 15px;
}

h3 {
  color: #34495e;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 1.5rem 0 0.8rem 0;
  font-weight: 600;
  padding-left: 15px;
  padding-right: 15px;
}

p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.1rem 0;
  padding-left: 15px;
  padding-right: 15px;
}

/* Content Article Typography - Enhanced for template consistency */
.content-article {
  max-width: 900px;
  margin: 0 auto;
}

.content-article h2 {
  color: #2c3e50;
  font-size: 2rem;
  line-height: 1.3;
  margin: 2rem 0 1rem 0;
  font-weight: 800;
  scroll-margin-top: 90px; /* for anchored TOC links */
  padding-left: 15px;
  padding-right: 15px;
}

.content-article h3 {
  color: #34495e;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 1.5rem 0 0.8rem 0;
  font-weight: 600;
  padding-left: 15px;
  padding-right: 15px;
}

.content-article p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.1rem 0;
  padding-left: 15px;
  padding-right: 15px;
}

/* Admin Pages Typography */
.admin-container h2,
.admin-dashboard h2,
.admin-users h2,
.admin-order-details h2 {
  color: #2c3e50;
  font-size: 2rem;
  line-height: 1.3;
  margin: 2rem 0 1rem 0;
  font-weight: 800;
  padding-left: 15px;
  padding-right: 15px;
}

.admin-container p,
.admin-dashboard p,
.admin-users p,
.admin-order-details p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.1rem 0;
  padding-left: 15px;
  padding-right: 15px;
}

/* Order Pages Typography */
.order-container h2,
.order-success h2 {
  color: #2c3e50;
  font-size: 2rem;
  line-height: 1.3;
  margin: 2rem 0 1rem 0;
  font-weight: 800;
  padding-left: 15px;
  padding-right: 15px;
}

.order-container p,
.order-success p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.1rem 0;
  padding-left: 15px;
  padding-right: 15px;
}

/* Login Pages Typography */
.login-container h2,
.admin-login h2 {
  color: #2c3e50;
  font-size: 2rem;
  line-height: 1.3;
  margin: 2rem 0 1rem 0;
  font-weight: 800;
  padding-left: 15px;
  padding-right: 15px;
}

.login-container p,
.admin-login p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.1rem 0;
  padding-left: 15px;
  padding-right: 15px;
}

/* Registration Pages Typography */
.reg-container h2,
.astrologer-register h2 {
  color: #2c3e50;
  font-size: 2rem;
  line-height: 1.3;
  margin: 2rem 0 1rem 0;
  font-weight: 800;
  padding-left: 15px;
  padding-right: 15px;
}

.reg-container p,
.astrologer-register p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.1rem 0;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 768px) {
  /* Global Typography Responsive */
  h2 {
    font-size: 1.6rem;
    margin: 1.5rem 0 0.8rem 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  h3 {
    font-size: 1.2rem;
    margin: 1.2rem 0 0.6rem 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Content Article Responsive */
  .content-article h2 {
    font-size: 1.6rem;
    margin: 1.5rem 0 0.8rem 0;
  }
  .content-article h3 {
    font-size: 1.2rem;
    margin: 1.2rem 0 0.6rem 0;
  }
  .content-article p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Admin Pages Responsive */
  .admin-container h2,
  .admin-dashboard h2,
  .admin-users h2,
  .admin-order-details h2 {
    font-size: 1.6rem;
    margin: 1.5rem 0 0.8rem 0;
  }
  
  .admin-container p,
  .admin-dashboard p,
  .admin-users p,
  .admin-order-details p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Order Pages Responsive */
  .order-container h2,
  .order-success h2 {
    font-size: 1.6rem;
    margin: 1.5rem 0 0.8rem 0;
  }
  
  .order-container p,
  .order-success p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Login Pages Responsive */
  .login-container h2,
  .admin-login h2 {
    font-size: 1.6rem;
    margin: 1.5rem 0 0.8rem 0;
  }
  
  .login-container p,
  .admin-login p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Registration Pages Responsive */
  .reg-container h2,
  .astrologer-register h2 {
    font-size: 1.6rem;
    margin: 1.5rem 0 0.8rem 0;
  }
  
  .reg-container p,
  .astrologer-register p {
    font-size: 1rem;
    line-height: 1.7;
  }
} 

/* Scoped fix: Restore hero toggle styles isolated from global .content-section */
.hero-section .hero-content-toggle {
  position: relative;
  min-height: 200px;
}
.hero-section .hero-content-toggle .content-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
}
.hero-section .hero-content-toggle .content-section.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 900px) {
  .hero-section .hero-content-toggle {
    margin-bottom: 20px;
    margin-top: 50px;
  }
  .hero-section .hero-content-toggle .content-section {
    position: relative;
    opacity: 1;
    visibility: visible;
  }
} 

/* Ensure hero toggle panels never inherit global white background */
.hero-section .content-section,
.hero-section .content-section.active {
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* ===== CAPTCHA STYLES ===== */
.captcha-container {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef) !important;
    border: 2px solid #dee2e6 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.captcha-container:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #adb5bd !important;
}

.captcha-container span {
    background: white;
    padding: 8px 15px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #ced4da;
}

.captcha-container button {
    transition: all 0.3s ease;
}

.captcha-container button:hover {
    background: #5a6268 !important;
    transform: translateY(-1px);
}

#captcha_answer {
    transition: border-color 0.3s ease;
}

#captcha_answer:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* CAPTCHA responsive styles */
@media (max-width: 768px) {
    .captcha-container {
        padding: 12px !important;
    }
    
    .captcha-container span {
        font-size: 16px !important;
        padding: 6px 12px !important;
    }
    
    .captcha-container button {
        padding: 4px 8px !important;
        font-size: 11px !important;
    }
}

/* ===== ASTROLOGER PROFILE STYLES ===== */
.profile-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.profile-banner-content {
    position: relative;
    z-index: 2;
}

.profile-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.profile-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.profile-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.profile-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.profile-main {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-photo-section {
    flex-shrink: 0;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.profile-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255,255,255,0.3);
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.profile-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.profile-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.experience {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge.status {
    background: #28a745;
    color: white;
}

.consultation-fee {
    font-size: 1.1rem;
    opacity: 0.9;
}

.profile-details {
    padding: 40px;
}

.profile-section-block {
    margin-bottom: 35px;
}

.profile-section-block h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    padding-bottom: 8px;
    display: inline-block;
}

.profile-section-block p {
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
}

.specializations-list,
.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.specialization-tag,
.language-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.specialization-tag:hover,
.language-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.appointment-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px;
    border-top: 1px solid #dee2e6;
}

.appointment-section h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.appointment-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.appointment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.appointment-option {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.appointment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.appointment-option h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.appointment-option p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-book-appointment {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-book-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card,
.quick-actions,
.trust-badges {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-card h3,
.quick-actions h3,
.trust-badges h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    padding-bottom: 8px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: 600;
    color: #555;
}

.contact-value {
    color: #333;
    font-weight: 500;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.toc-cta {
    animation: backgroundFlip 1s ease-in-out infinite;
}

@keyframes backgroundFlip {
    0%, 50% {
        background: linear-gradient(135deg, #ff8c00, #ffa500); /* Orange gradient */
    }
    100% {
        background: linear-gradient(135deg, #28a745, #20c997); /* Green gradient */
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: rgb(3, 39, 183);
}

.btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #dee2e6;
}

.btn-secondary:hover {
    background: #e9ecef;
    color: #333;
    transform: translateY(-1px);
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.trust-list li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .profile-info h2 {
        font-size: 1.8rem;
    }
    
    .profile-badges {
        justify-content: center;
    }
    
    .profile-details {
        padding: 25px 20px;
    }
    
    .appointment-section {
        padding: 25px 20px;
    }
    
    .appointment-options {
        grid-template-columns: 1fr;
    }
    
    .profile-banner h1 {
        font-size: 2rem;
    }
    
    .profile-banner p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-container {
        padding: 0 15px;
    }
    
    .profile-header {
        padding: 20px 15px;
    }
    
    .profile-details {
        padding: 20px 15px;
    }
    
    .appointment-section {
        padding: 20px 15px;
    }
    
    .contact-card,
    .quick-actions,
    .trust-badges {
        padding: 20px 15px;
    }
}

/* ===== APPOINTMENT BOOKING STYLES ===== */
.appointment-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.appointment-banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.appointment-banner-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.appointment-form-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.appointment-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.appointment-main {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.appointment-form-card {
    padding: 40px;
}

.appointment-form-card h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

.error-message ul {
    margin: 10px 0 0 20px;
}

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

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

.appointment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.appointment-form .required {
    color: #dc3545;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.appointment-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit-appointment {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    width: 100%;
    margin-top: 20px;
}

.btn-submit-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.appointment-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.astrologer-info-card,
.consultation-info-card,
.booking-info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.astrologer-info-card h3,
.consultation-info-card h3,
.booking-info-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    padding-bottom: 8px;
}

.astrologer-name {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.astrologer-contact p {
    margin: 8px 0;
    color: #555;
    font-size: 0.95rem;
}

.consultation-types {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultation-type {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.consultation-type h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.consultation-type p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.booking-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-info-list li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.booking-info-list li:last-child {
    border-bottom: none;
}

/* Appointment Booking Responsive Design */
@media (max-width: 768px) {
    .appointment-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .appointment-form-card {
        padding: 25px 20px;
    }
    
    .appointment-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .appointment-banner-content h1 {
        font-size: 2rem;
    }
    
    .appointment-banner-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .appointment-container {
        padding: 0 15px;
    }
    
    .appointment-form-card {
        padding: 20px 15px;
    }
    
    .astrologer-info-card,
    .consultation-info-card,
    .booking-info-card {
        padding: 20px 15px;
    }
}

/* Responsive Centering for Indian Astrology Horoscope Page */

/* Center reg-container within reg-section */
.reg-section {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    padding: 60px 0 !important;
}

.reg-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.reg-layout {
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media screen and (max-width: 1024px) {
    /* Tablet View */
    .reg-container {
        max-width: 98% !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
    
    .reg-layout {
        display: grid !important;
        grid-template-columns: 60% 40% !important;
        gap: 20px !important;
        align-items: start !important;
    }
    
    .reg-main {
        width: 100% !important;
        grid-column: 1 !important;
    }
    
    .reg-sidebar {
        grid-column: 2 !important;
        position: sticky !important;
        top: 20px !important;
        height: fit-content !important;
    }
    
    .reg-banner {
        text-align: center !important;
    }
    
    .reg-banner-image {
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
    }
}

@media screen and (max-width: 768px) {
    /* Mobile View */
    .reg-container {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .reg-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 15px !important;
        width: 100% !important;
    }
    
    .reg-main {
        grid-column: 1 !important;
    }
    
    .reg-sidebar {
        grid-column: 1 !important;
        position: static !important;
        top: auto !important;
    }
    
    .reg-main {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
    }
    
    .reg-container-inner {
        text-align: center !important;
        padding: 20px 15px !important;
    }
    
    .reg-header {
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    .reg-header h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    .reg-header p {
        font-size: 1rem !important;
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 90% !important;
    }
    
    .content-article {
        text-align: left !important;
        padding: 0 10px !important;
    }
    
    .content-article h2 {
        font-size: 1.5rem !important;
        text-align: center !important;
        margin: 30px 0 20px 0 !important;
    }
    
    .content-article h3 {
        font-size: 1.2rem !important;
        text-align: center !important;
        margin: 25px 0 15px 0 !important;
    }
    
    .content-article p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        text-align: justify !important;
        margin-bottom: 15px !important;
    }
    
    .reg-banner {
        text-align: center !important;
        margin-bottom: 05px !important;
        padding: 15px 20px 303px 20px !important;
    }
    
    .reg-banner-image {
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        border-radius: 8px !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
    }
}

@media screen and (max-width: 480px) {
    /* Small Mobile View */
    .reg-container {
       padding: 0px 15px 0px 0px !important;
    }
    
    .reg-layout {
        padding: 0 10px !important;
    }
    
    .reg-container-inner {
        padding: 15px 10px !important;
    }
    
    .reg-header h1 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }
    
    .reg-header p {
        font-size: 0.9rem !important;
        max-width: 95% !important;
    }
    
    .content-article h2 {
        font-size: 1.4rem !important;
        margin: 25px 0 15px 0 !important;
    }
    
    .content-article h3 {
        font-size: 1.1rem !important;
        margin: 20px 0 12px 0 !important;
    }
    
    .content-article p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }
    
    .reg-banner-image {
        border-radius: 8px !important;
    }
}