 


        :root {
            --sun-size: 80px;
            --mercury-size: 12px;
            --venus-size: 18px;
            --earth-size: 20px;
            --mars-size: 16px;
            --jupiter-size: 45px;
            --saturn-size: 40px;
            --uranus-size: 30px;
            --neptune-size: 29px;
            --primary: #ff7700;
            --secondary: #3a0863;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Philosopher', sans-serif;
            color: #ffffff;
            background: #5b1a05;
            overflow-x: hidden;
        }
        
         .gallery-item img {
    transition: transform 0.3s ease;
  }
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  .overlay {
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .gallery-item:hover .overlay {
    opacity: 1;
  }
  
  
.text-justify {
  text-align: justify;
}

  
  /* Heading typewriter */
.typewriter-heading {
  overflow: hidden;
  border-right: .15em solid orange;
  white-space: nowrap;
  animation: typing 3s steps(30, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange }
}

/* Telugu font */
.telugu-font {
  font-family: 'Ramaraju', serif;
  line-height: 1.8;
}

/* List hidden initially */
.typewriter-list li {
  opacity: 0;
  display: flex;
  align-items: center;
}
.typewriter-list li i {
  margin-right: 8px;
  color: #ffc107; /* yellow star */
  opacity: 0;
}
  
  /* Chat button  Styles */
  .chat-buttons {
position: fixed;
bottom: 20px;
right: 20px;
display: flex;
flex-direction: column;
gap: 10px;
z-index: 999;
}
.chat-buttons a {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 1.4rem;
box-shadow: 0 4px 8px rgba(0,0,0,.2);
text-decoration: none;
}
.whatsapp-btn { background-color: #25D366; }
.chat-btn { background-color: #007bff; }



        /* Top Bar Styles */
        /* Top Bar */
        .top-bar {
            background-color: var(--secondary);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .social-icons-top {
            display: flex;
        }
        
        .social-icons-top a {
            color: white;
            margin-left: 15px;
            font-size: 16px;
        }
        
        /* Header Styles */
        .navbar {
            background: #fff;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--secondary) !important;
        }
        
        .navbar-brand span {
            color: var(--primary);
        }
        
        .nav-link {
            color: #333 !important;
            margin: 0 10px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        /* Hero Section */
        .hero-section {
            height: 100vh;
            background: radial-gradient(ellipse at center, #0D324D 0%, #000000 70%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
                radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
                radial-gradient(1px 1px at 90px 40px, #fff, rgba(0,0,0,0)),
                radial-gradient(1px 1px at 130px 80px, #fff, rgba(0,0,0,0)),
                radial-gradient(2px 2px at 160px 30px, #ddd, rgba(0,0,0,0));
            background-repeat: repeat;
            background-size: 200px 200px;
            animation: twinkle 20s linear infinite;
        }
        
        .solar-system {
            position: relative;
            width: 800px;
            height: 800px;
            margin: 0 auto;
        }
        
        .sun {
            position: absolute;
            top: 50%;
            left: 50%;
            width: var(--sun-size);
            height: var(--sun-size);
            border-radius: 50%;
            background: radial-gradient(circle, #ff3838 0%, #ff0000 40%, #c23636 100%);
            box-shadow: 0 0 50px #ff3838, 0 0 100px #ff0000, 0 0 150px #c23636;
            transform: translate(-50%, -50%);
            z-index: 10;
        }
        
        .orbit {
            position: absolute;
            top: 50%;
            left: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }
        
        .planet {
            position: absolute;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }
        
        .mercury-orbit {
            width: 140px;
            height: 140px;
        }
        
        .mercury {
            width: var(--mercury-size);
            height: var(--mercury-size);
            background: #9c9c9c;
            box-shadow: inset 0 0 10px #2c2c2c, 0 0 5px #9c9c9c;
            top: 50%;
            left: 50%;
            animation: orbit 3s linear infinite;
        }
        
        .venus-orbit {
            width: 200px;
            height: 200px;
        }
        
        .venus {
            width: var(--venus-size);
            height: var(--venus-size);
            background: #e6c229;
            box-shadow: inset 0 0 10px #8c6910, 0 0 5px #e6c229;
            top: 50%;
            left: 50%;
            animation: orbit 7s linear infinite;
        }
        
        .earth-orbit {
            width: 280px;
            height: 280px;
        }
        
        .earth {
            width: var(--earth-size);
            height: var(--earth-size);
            background: #2a7fff;
            box-shadow: inset 0 0 10px #004a9b, 0 0 5px #2a7fff;
            top: 50%;
            left: 50%;
            animation: orbit 12s linear infinite;
        }
        
        .mars-orbit {
            width: 350px;
            height: 350px;
        }
        
        .mars {
            width: var(--mars-size);
            height: var(--mars-size);
            background: #c1440e;
            box-shadow: inset 0 0 10px #5c2000, 0 0 5px #c1440e;
            top: 50%;
            left: 50%;
            animation: orbit 20s linear infinite;
        }
        
        .jupiter-orbit {
            width: 450px;
            height: 450px;
        }
        
        .jupiter {
            width: var(--jupiter-size);
            height: var(--jupiter-size);
            background: #d8ca9d;
            box-shadow: inset 0 0 15px #8e7c3a, 0 0 5px #d8ca9d;
            top: 50%;
            left: 50%;
            animation: orbit 30s linear infinite;
        }
        
        .saturn-orbit {
            width: 560px;
            height: 560px;
        }
        
        .saturn {
            width: var(--saturn-size);
            height: var(--saturn-size);
            background: #e3be65;
            box-shadow: inset 0 0 15px #8c6e1d, 0 0 5px #e3be65;
            top: 50%;
            left: 50%;
            animation: orbit 45s linear infinite;
        }
        
        .saturn-ring {
            position: absolute;
            width: calc(var(--saturn-size) * 1.8);
            height: calc(var(--saturn-size) * 0.5);
            background: linear-gradient(90deg, transparent, rgba(210, 180, 140, 0.7), transparent);
            border-radius: 50%;
            transform: translate(-50%, -50%) rotateX(75deg);
            top: 50%;
            left: 50%;
        }
        
        .uranus-orbit {
            width: 650px;
            height: 650px;
        }
        
        .uranus {
            width: var(--uranus-size);
            height: var(--uranus-size);
            background: #a3c7d6;
            box-shadow: inset 0 0 10px #4f7b8a, 0 0 5px #a3c7d6;
            top: 50%;
            left: 50%;
            animation: orbit 60s linear infinite;
        }
        
        .neptune-orbit {
            width: 750px;
            height: 750px;
        }
        
        .neptune {
            width: var(--neptune-size);
            height: var(--neptune-size);
            background: #3454df;
            box-shadow: inset 0 0 10px #0a1a6b, 0 0 5px #3454df;
            top: 50%;
            left: 50%;
            animation: orbit 90s linear infinite;
        }
        
        @keyframes orbit {
            0% {
                transform: translate(-50%, -50%) rotate(0deg) translateX(calc(var(--orbit-radius) / 2)) rotate(0deg);
            }
            100% {
                transform: translate(-50%, -50%) rotate(360deg) translateX(calc(var(--orbit-radius) / 2)) rotate(-360deg);
            }
        }
        
        @keyframes twinkle {
            0% {
                opacity: 0.7;
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0.7;
            }
        }
        
        .about-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
  }

  /* Subtle pattern overlay */
  .about-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
    opacity: 0.2;
    pointer-events: none;
  }

  .about-section .container {
    position: relative;
    z-index: 1;
  }
        
        .guruji-section {
            margin-top: 40px;
            padding: 30px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .guruji-title {
            font-weight: 700;
            font-size: 2.5rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
        }
        
        .guruji-content {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #ffffff;
        }
        
        .hero-content {
            position: absolute;
            bottom: 20%;
            text-align: center;
            width: 100%;
            z-index: 20;
        }
        
       .hero-content h1 {
            font-weight: 700;
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 0 0 10px rgba(0, 195, 255, 0.7);
            margin-bottom: 1rem;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            color: #a8e6ff;
        }
        
        
        
 
  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
  }
  .service-img {
    transition: transform 0.5s ease;
  }
  .service-card:hover .service-img {
    transform: scale(1.1);
  }

  /* Modern Button Styles */
  .btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
  }

  .btn-call {
    background: linear-gradient(45deg, #007bff, #0056d2);
  }
  .btn-call:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
  }

  .btn-chat {
    background: linear-gradient(45deg, #25d366, #128c7e);
  }
  .btn-chat:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  }
        
       .btn-explore {
            background: linear-gradient(45deg, var(--primary), #ff5500);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 0 15px rgba(255, 119, 0, 0.6);
            transition: all 0.3s ease;
        }
        
        .btn-explore:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(255, 119, 0, 0.9);
            color: white;
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
        }
        
         /* Section Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-weight: 700;
            color: #ffcc00;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
        }
        
        .section-text {
            font-size: 1.2rem;
            max-width: 900px;
            margin: 0 auto 2rem;
            color: #000;
        }
        
        
        .service-box {
            background: #fff;
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            line-height: 70px;
            background: rgba(255, 119, 0, 0.1);
            border-radius: 50%;
            margin: 0 auto 20px;
            font-size: 30px;
            color: var(--primary);
        }
        .service-box h4 {
            color:#db2f0b;
        }
        .service-box p {
            color:#000000;
        }
        
        
        
        
        .problem-list {
            list-style: none;
            padding: 0;
        }
        
        .problem-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
            font-size: 18px;
        }
        
        .problem-list li:last-child {
            border-bottom: none;
        }
        
        .problem-list li i {
            color: var(--primary);
            margin-right: 10px;
        }
        
        .consultation-box {
            background: linear-gradient(45deg, var(--secondary), #5a1a9c);
            color: white;
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .astrologer-img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .astrologer-img img {
            transition: all 0.5s ease;
        }
        
        .astrologer-img:hover img {
            transform: scale(1.05);
        }
        
        .video-wrapper {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .full-width-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
          /* Testimonials */
        .testimonial-card {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            height: 100%;
            color: var(--text-color);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding-left: 30px;
        }
        
        .testimonial-text:before {
            content: """;
            position: absolute;
            left: 0;
            top: -20px;
            font-size: 60px;
            color: var(--primary);
            font-family: Arial, sans-serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        /* FAQ */
        .accordion-button {
            font-weight: 600;
            padding: 20px;
            font-size: 18px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(255, 119, 0, 0.1);
            color: var(--primary);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }
        
        /* Contact */
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-info i {
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            background: rgba(255, 119, 0, 0.1);
            color: var(--primary);
            border-radius: 50%;
            font-size: 20px;
            margin-right: 15px;
        }
        
        .form-control {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #eee;
            margin-bottom: 20px;
        }
        
        .form-control:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        
         /* Footer */
        footer {
            background: #1a0400;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            color: #ffcc00;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ffcc00;
            padding-left: 5px;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .solar-system {
                width: 600px;
                height: 600px;
            }
            
            :root {
                --sun-size: 60px;
                --mercury-size: 10px;
                --venus-size: 15px;
                --earth-size: 16px;
                --mars-size: 13px;
                --jupiter-size: 35px;
                --saturn-size: 32px;
                --uranus-size: 24px;
                --neptune-size: 23px;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
             
            .guruji-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .solar-system {
                width: 400px;
                height: 400px;
            }
            
            :root {
                --sun-size: 40px;
                --mercury-size: 8px;
                --venus-size: 12px;
                --earth-size: 13px;
                --mars-size: 10px;
                --jupiter-size: 25px;
                --saturn-size: 22px;
                --uranus-size: 18px;
                --neptune-size: 17px;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
                padding: 0 20px;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
             .guruji-title {
                font-size: 1.8rem;
            }
            
            .guruji-content {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .solar-system {
                width: 320px;
                height: 320px;
            }
            
            :root {
                --sun-size: 30px;
                --mercury-size: 6px;
                --venus-size: 9px;
                --earth-size: 10px;
                --mars-size: 8px;
                --jupiter-size: 18px;
                --saturn-size: 16px;
                --uranus-size: 13px;
                --neptune-size: 12px;
            }
            
            .hero-content h1 {
                font-size: 1.8rem;
            }
             .guruji-section {
                padding: 20px;
            }
        }
        
        
        /* ---- Your CSS Ends Here ---- */
