/*==========================================
  STARWEBX - Main Stylesheet
  Author: StarwebX Team
  Description: Professional business website
  Version: 1.0
==========================================*/

/*==========================================
  CSS VARIABLES & THEME
==========================================*/
:root {
    /* Primary Colors */
    --primary-color: #003cff;
    --primary-dark: #0031d1;
    --primary-light: #2555FF;
    --accent-color: #FF2E00;
    --accent-secondary: #01D2A1;
    
    /* Light Theme Colors */
    --bg-color: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --border-color: #e5e5e5;
    --card-bg: #ffffff;
    --shadow-color: rgba(0, 60, 255, 0.1);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-color: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #2a2a2a;
    --card-bg: #161616;
    --shadow-color: rgba(255, 255, 255, 0.05);
}

/*==========================================
  RESET & BASE STYLES
==========================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition-slow);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

/*==========================================
  UTILITY CLASSES
==========================================*/
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

.highlight {
    color: var(--primary-color);
}

.mt-4 {
    margin-top: 2rem;
}

/*==========================================
  PRELOADER
==========================================*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: var(--transition-slow);
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/*==========================================
  BACK TO TOP BUTTON
==========================================*/
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px var(--shadow-color);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/*==========================================
  HEADER & NAVIGATION
==========================================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header.sticky {
    box-shadow: 0 5px 30px var(--shadow-color);
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.logo-text {
    color: var(--text-primary);
}

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

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(180deg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/*==========================================
  HERO SECTION
==========================================*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: 20%;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-secondary);
    top: 50%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(180deg); }
}

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

.hero-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 60, 255, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-img-wrapper {
    position: relative;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    animation: cardFloat 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary-color);
}

.card-1 {
    top: 20%;
    left: -20px;
}

.card-2 {
    top: 50%;
    right: -30px;
    animation-delay: -1.5s;
}

.card-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: -3s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/*==========================================
  BUTTONS
==========================================*/
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 60, 255, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 60, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-block {
    width: 100%;
}

/*==========================================
  SECTION HEADERS
==========================================*/
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 60, 255, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/*==========================================
  ABOUT SECTION
==========================================*/
.about {
    background: var(--bg-secondary);
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.experience-box {
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 60, 255, 0.4);
}

.experience-box h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
}

.experience-box p {
    font-size: 14px;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 24px;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

/*==========================================
  SERVICES SECTION
==========================================*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px var(--shadow-color);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 60, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/*==========================================
  PORTFOLIO SECTION
==========================================*/
.portfolio {
    background: var(--bg-secondary);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

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

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 60, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info {
    text-align: center;
    color: #fff;
    padding: 30px;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-info p {
    font-size: 14px;
    margin-bottom: 20px;
}

.portfolio-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/*==========================================
  TEAM SECTION
==========================================*/
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px var(--shadow-color);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 20px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.team-social a:hover {
    background: var(--primary-dark);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: var(--text-secondary);
}

/*==========================================
  TESTIMONIALS SECTION
==========================================*/
.testimonials {
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.testimonial-rating {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/*==========================================
   PRICING SECTION STYLES (Final)
==========================================*/

/*==========================================
   PRICING SECTION (Dark Mode Fixed)
==========================================*/

.pricing-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* --- Card Box Style --- */
.price-card {
    background: var(--card-bg); /* Ab ye theme ke hisab se change hoga (Dark/Light) */
    border: 1px solid var(--border-color); /* Border bhi theme ke hisab se */
    border-radius: 12px;
    padding: 35px 25px;
    width: 320px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 15px;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
    border-color: var(--primary-color);
}

/* --- Popular Card (Middle) --- */
.price-card.popular-card {
    border: 2px solid var(--primary-color);
    background: var(--bg-secondary); /* Light me greyish, Dark me Dark grey */
    transform: scale(1.05);
}

/* Dark Mode Specific Fix for Popular Card Background */
[data-theme="dark"] .price-card.popular-card {
    background: rgba(255, 255, 255, 0.05); /* Dark mode me thoda sa alag tint */
}

/* --- Text Typography (Variables Use kiye) --- */
.plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary); /* Auto-adjust text color */
    text-align: center;
}

.price-area {
    margin-bottom: 20px;
    text-align: center;
}

.price-area .amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary); /* Auto-adjust text color */
}

.price-area .currency {
    font-size: 20px;
    font-weight: 600;
    vertical-align: top;
    margin-right: 2px;
    color: var(--text-primary);
}

.price-area .duration {
    font-size: 14px;
    color: var(--text-secondary);
}

/* --- Buttons --- */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-radius: 6px;
    margin-bottom: 25px;
}

/* --- Badges --- */
.badge-pop {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/*==========================================
   FEATURE LIST (High Contrast & Icons)
==========================================*/

.feature-list {
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
}

.feature-list li {
    padding: 12px 0;
    color: var(--text-primary); /* Highlighted text (Black in Light, White in Dark) */
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px dashed var(--border-color);
}

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

/* Icons */
.feature-list i {
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

/* Check Icon */
.feature-list li i.fa-check {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 60, 255, 0.2);
}

/* Cross Icon */
.feature-list li.disabled i.fa-times {
    background: var(--bg-secondary); /* Adapts to theme */
    color: var(--text-secondary);
}

/* Disabled Text */
.feature-list li.disabled {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .price-card.popular-card {
        transform: scale(1);
    }
}
/*==========================================
  FOOTER
==========================================*/
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding: 80px 0 40px;
}

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

.footer-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

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

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-newsletter {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
}

.footer-newsletter button {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
}

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

.footer-bottom-links a {
    color: var(--text-secondary);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}
/* --- View More Functionality --- */

/* Jo members chupe honge unke liye class */
.hidden-member {
    display: none; /* Initially gayab rahenge */
}

/* Button ko center karne ke liye container */
.view-more-btn-container {
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

/* Button style (Agar btn-primary already hai to ye optional hai) */
.view-more-btn-container .btn {
    min-width: 150px;
}
/* ================= UNIVERSE THEME CSS ================= */

/* 1. Main Background */
#universe-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -999; /* Sab ke peeche */
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%); /* Deep Space */
    overflow: hidden;
}

/* 2. Stars (Taare) */
.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.3; transform: scale(0.8); }
}

/* 3. Shooting Star (Tuta Taara) */
.shooting-star {
    position: absolute;
    width: 4px; height: 4px;
    background: #fff; border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1), 0 0 0 8px rgba(255,255,255,0.1), 0 0 20px rgba(255,255,255,1);
    animation: shoot 3s linear infinite;
    opacity: 0;
}
.shooting-star::before {
    content: ''; position: absolute; top: 50%; transform: translateY(-50%);
    width: 200px; height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}

@keyframes shoot {
    0% { transform: rotate(315deg) translateX(0); opacity: 1; }
    70% { opacity: 1; }
    100% { transform: rotate(315deg) translateX(-1000px); opacity: 0; }
}

/* 4. Background Transparent Karna (Zaroori) */
/* Agar ye nahi karoge to sections ka white background stars ko chupa dega */
section, footer {
    background-color: transparent !important;
}

/* Cards ko Glass Effect Dena */
.service-card, .portfolio-item, .team-card, .price-card, .leader-card, .testimonial-card {
    background: rgba(255, 255, 255, 0.1) !important; /* Halka Transparent */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}