* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}
:root {
  scroll-behavior: smooth;
  --bg-color: whitesmoke;
  --text-color: #111;
  --surface-color: #ffffff;
  --section-muted: #f9f9f9;
  --card-color: #ffffff;
  --border-color: #dddddd;
  --footer-bg: #111111;
  --footer-text: #ffffff;
  --mobile-menu-bg: #ffd000;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff9800;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}
.btn:hover {
  background: #e88800;
}
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}
header {
  /* background-color: white; */
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.3s;
}

header.scrolled {
  top: 15px;
  padding: 0 20px;
}

header.scrolled .navbar {
  border-radius: 12px;
  background: linear-gradient(90deg, #ff8c00, #ffd700);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--surface-color);
  padding: 20px 60px;

  transition: 0.3s;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
}

/* menu icon */

.menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
.theme-toggle {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #ff9800;
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover {
  background: #e88800;
}

/* hero  */
.hero {
  height: 80vh;

  padding: 70px;
  background-image: url("./images/slider-img-2.webp");
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;

  background-color: #333;
}
.hero h1 {
  font-size: 66px;
  color: white;
  margin-bottom: 15px;
}
.hero p {
  font-size: 20px;
  color: white;
  max-width: 600px;
  text-align: center;
}



.chat-btn {
  background: black;
  color: white;

  padding: 12px 30px;

  border: none;
  border-radius: 25px;

  font-size: 16px;
  cursor: pointer;
}
.chat-link {
  color: whitesmoke;
  text-decoration: none;
}
.service-link {
  color: inherit;
  text-decoration: none;
}

.hero-services {
  display: flex;
  justify-content: center;

  gap: 25px;

  margin-top: 30px;
}

.hero-services .service-card {
  width: 220px;

  background: #eee;

  padding: 30px;

  text-align: center;

  border-radius: 10px;
  transition: all 0.5s;
  cursor: pointer;
}
.hero-services .service-card:hover {
  transform: scale(1.1);
  background-color: #fff176;
}

.hero-services .service-card i {
  font-size: 28px;

  color: white;

  background: #ff6fa3;

  padding: 15px;

  border-radius: 50%;

  margin-bottom: 15px;
}
.social-card {
  padding: 20px;
}

.social-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  justify-items: center;
}

.social-grid i {
  font-size: 24px;

  background: #ff6fa3;

  padding: 15px;

  border-radius: 50%;

  color: black;

  cursor: pointer;

  transition: 0.3s;
}

.social-grid i:hover {
  background: black;
  color: white;
}

.services {
  padding: 80px 10%;
  background: var(--section-muted);
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}
.services {
  padding: 60px 20px;
  background: #f7f7f7;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
}

.service-card p {
  padding: 0 15px 20px;
  color: #555;
  font-size: 14px;
}
.about {
  padding: 80px 10%;

  background: linear-gradient(90deg, #ffd400, #fff176);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-img img {
  width: 350px;
  border-radius: 12px;
}

.about-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-top: 25px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 16px;
}

.feature i {
  color: #ff9800;
  font-size: 20px;
}

.why-astrology {
  padding: 80px 10%;
  background: var(--section-muted);
  text-align: center;
}

.why-astrology h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.why-astrology p {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
  margin-bottom: 15px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.why-card {
  background: var(--card-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.why-card i {
  font-size: 30px;
  color: #ff9800;
  margin-bottom: 15px;
}

.why-card:hover {
  transform: translateY(-8px);
}

.faq {
  padding: 80px 10%;
 background-color: #ffd000;
}

.faq h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}

.faq-question {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  line-height: 1.6;
}

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);

  padding: 60px 10% 20px;
}

.footer-container {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col p {
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--footer-text);
}

.footer-col ul li a:hover {
  color: #ff9800;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: var(--footer-text);
  font-size: 18px;

  margin-right: 12px;

  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff9800;
}

.footer-bottom {
  text-align: center;

  border-top: 1px solid #333;

  margin-top: 30px;
  padding-top: 15px;

  font-size: 14px;
}
.contact{

padding:80px 10%;
background:var(--section-muted);

/* background-color: whitesmoke; */
}

.contact-container{

display:grid;

grid-template-columns:1fr 1fr 1fr;

gap:40px;

align-items:start;

}

/* contact info */

.info-box{

display:flex;

gap:15px;

margin-bottom:20px;

}

.info-box i{

font-size:20px;

background:#ff9800;

color:white;

padding:12px;

border-radius:50%;

}

/* map */

.contact-map iframe{

border-radius:10px;

box-shadow:0 5px 15px rgba(0,0,0,0.1);

}

/* social */

.contact-social h3{

margin-bottom:20px;

}

.social-links{

display:flex;

gap:15px;

}

.social-links a{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

background:#ff9800;

color:white;

border-radius:50%;

font-size:20px;

transition:0.3s;

}

.social-links a:hover{

background:black;

}


.contact-float{

position:fixed;

bottom:25px;
right:25px;

z-index:999;

}

.contact-btn{

width:60px;
height:60px;

background:#ff9800;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:24px;

color:white;

cursor:pointer;

box-shadow:0 5px 15px rgba(0,0,0,0.3);

}

.contact-options{

display:flex;
flex-direction:column;

gap:10px;

margin-bottom:10px;

opacity:0;
pointer-events:none;

transition:0.3s;

}

.contact-options a{

width:50px;
height:50px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

color:white;

font-size:20px;

}

.call{
background:#2196f3;
}

.whatsapp{
background:#25d366;
}

/* active state */

.contact-float.active .contact-options{

opacity:1;
pointer-events:auto;

}
body.dark-theme {
  --bg-color: #0f172a;
  --text-color: #f1f5f9;
  --surface-color: #1e293b;
  --section-muted: #111827;
  --card-color: #1f2937;
  --border-color: #334155;
  --footer-bg: #020617;
  --footer-text: #e2e8f0;
  --mobile-menu-bg: #1f2937;
}
body.dark-theme .hero {
  background: linear-gradient(90deg, #0f172a, #1e293b);
}
body.dark-theme .hero-container {
  background: linear-gradient(90deg, #1f2937, #334155);
}
body.dark-theme .hero-right h1,
body.dark-theme .hero-right h3 {
  color: #f8fafc;
}
body.dark-theme .about {
  background: linear-gradient(90deg, #111827, #1f2937);
}
body.dark-theme .hero-services .service-card {
  background: #1f2937;
}
body.dark-theme .hero-services .service-card:hover {
  background: #334155;
}
body.dark-theme .social-grid i:hover,
body.dark-theme .social-links a:hover {
  background: #475569;
  color: #ffffff;
}
body.dark-theme .contact-map iframe,
body.dark-theme .why-card,
body.dark-theme .services .service-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
/* responsive */

@media (max-width: 1024px) {
  .navbar {
    padding: 18px 28px;
  }

  .hero {
    padding: 120px 24px 40px;
  }

  .hero-container {
    width: 100%;
    min-height: 320px;
    padding: 30px;
  }

  .hero-left img {
    width: 300px;
  }

  .hero-right h1 {
    font-size: 34px;
  }

  .hero-services {
    width: 100%;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-services .service-card {
    width: calc(50% - 8px);
    min-width: 220px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-container {
    gap: 30px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr 1fr;
  }

  .contact-social {
    grid-column: span 2;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header.scrolled {
    top: 8px;
    padding: 0 10px;
  }

  .navbar {
    padding: 16px;
  }

  .logo {
    font-size: 20px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    background: var(--mobile-menu-bg);
    flex-direction: column;
    text-align: center;
    gap: 16px;
    transition: 0.3s;
    padding: 20px;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    padding: 110px 16px 30px;
    margin-top: 0;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    gap: 20px;
  }

  .hero-left img {
    position: static;
    width: min(100%, 260px);
    display: block;
    margin: 0 auto;
  }

  .hero-right h3 {
    font-size: 18px;
  }

  .hero-right h1 {
    font-size: 30px;
    margin: 10px 0;
  }

  .chat-btn {
    padding: 10px 24px;
  }

  .hero-services {
    gap: 12px;
  }

  .hero-services .service-card {
    width: 100%;
    min-width: 0;
    padding: 20px;
  }

  .hero-services .service-card:hover {
    transform: none;
  }

  .social-grid {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }

  .services {
    padding: 60px 16px;
  }

  .section-title,
  .about-content h2,
  .why-astrology h2,
  .faq h2 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .services .service-card {
    padding: 22px 14px;
  }

  .about {
    padding: 60px 16px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    width: min(100%, 320px);
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature {
    justify-content: center;
  }

  .why-astrology,
  .faq,
  .contact {
    padding: 60px 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-question {
    font-size: 16px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-social {
    grid-column: auto;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .footer {
    padding: 50px 16px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-right h1 {
    font-size: 24px;
  }

  .hero-right h3 {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    font-size: 12px;
  }

  .contact-float {
    left: 25px;
  }
}



.contact-banner{
background:#1c1515;
color:white;
padding:50px 20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
text-align:center;
}

.banner-box h3{
color:#ff3b3b;
margin-bottom:15px;
}

.banner-box p{
margin:6px 0;
}

.phone{
color:#ffcc00;
font-size:20px;
font-weight:bold;
}

.banner-social{
margin-top:15px;
}

.banner-social a{
display:inline-block;
margin:5px;
font-size:22px;
background:#333;
padding:10px;
border-radius:6px;
color:white;
transition:.3s;
}

.banner-social a:hover{
background:#ff3b3b;
}

.note{
font-size:14px;
margin-top:15px;
color:#ddd;
}