html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* stops horizontal scroll */
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

/*-------------------- navbar section--------------------------- */

/* ===== TOP RED BAR ===== */
.top-bar {
  background: #e60000;
  color: #fff;
  padding: 6px 0;
  font-size: 18px;
  font-weight: bold;
}

.top-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  /*padding: 0 1px;*/
}

/* Keep icons + text aligned */
.top-container span {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap; /* FIX: Prevent breaking */
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .top-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 5px;
  }
  .top-bar {
    font-size: 15px;
    line-height: 1;
  }

  .top-container span {
    font-size: 18px;
    white-space: nowrap; /* keep everything in single line */
  }
}

/* NAVBAR BASIC */
/* ===== MAIN NAVBAR ===== */
.nav-logo img {
  width: 220px;
  height: auto;
  display: block;
  margin-left: 110px;
}

.main-navbar {
  background: #000;
  padding: 10px 20px;
  position: relative;
  z-index: 10000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-right: 110px;
}

/* MENU LINKS */
.nav-links a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  padding: 8px 5px;
}
.nav-links a:hover {
  border-bottom: 3px solid #facc15;
  color: #facc15;
  text-shadow: 0 0 20px #facc15;
}
.dropbtn:hover {
  border-bottom: 3px solid #facc15;
  color: #facc15;
  text-shadow: 0 0 20px #facc15;
}

/* === DROPDOWN DESKTOP === */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;

  padding: 8px 5px;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #111;
  border: 1px solid #333;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease-in-out;
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 12px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #222;
}

.dropdown-content a:hover {
  background: #222;
  color: #facc15;
}

@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Hide toggle on desktop */
.menu-toggle {
  display: none;
}


/* === MOBILE NAV === */

@media (max-width: 768px) {
  /* 1️⃣ Hide top red bar on mobile */
  .top-bar {
    display: none;
  }

  /* 2️⃣ Main navbar background & border */
  .main-navbar {
    background:black;
    padding: 8px 10px;
    border-bottom: 2px solid red;
  }

  /* 3️⃣ Grid layout: phone | logo | menu */
  .nav-container {
    display: grid !important;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    padding: 5px 8px;
  }

  /* 4️⃣ Phone icon (LEFT) */
  .nav-container::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: #ffff;
    justify-self: start;
    
  }
  

  /* 5️⃣ Center logo perfectly */
  .nav-logo {
    justify-self: center;
    text-align: center;
  }

  .nav-logo img {
    width: auto;
    max-height: 38px;
    margin: 0 !important; /* REMOVE desktop margin */
  }

  /* 6️⃣ Hamburger menu (RIGHT) */
  .menu-toggle {
    display: block;
    justify-self: end;
    font-size: 26px;
    color: #fff;
  }

  /* 7️⃣ Mobile menu dropdown */
  .nav-links {
    display: none;
    flex-direction: column; /* STACK VERTICALLY */
    background: #000;
    padding: 20px 10px;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  /* Menu links style for mobile */
  .nav-links a {
    font-size: 18px;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #333;
  }

  .nav-links a:hover {
    color: #facc15;
    border-bottom: 1px solid #facc15;
  }

  .nav-links.active {
    display: flex !important;
    flex-direction: column; /* STACK VERTICALLY */
    gap: 15px; /* space between menu items */
  }

  /* 8️⃣ Dropdown inside mobile menu */
  .dropdown-content {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    border: none !important;
    box-shadow: none !important;
    min-width: unset !important;
    display: none; /* hidden by default */
  }

  .dropdown.open .dropdown-content {
    display: flex; /* vertical dropdown links */
    flex-direction: column;
  }
  
  
}

.call-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px; /* adjust size */
  height: 70px;
  z-index: 9999;
}

.call-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%; /* make it circular */
  cursor: pointer;
  animation: float 2s infinite ease-in-out;
}

/* ---------------------------------- */

/* Banner */
.contact-banner img {
  width: 100%;
  border-radius: 10px;
}



/* Additional Images Styling */

.astrology-img {
    width: 100%;
    max-width: 230px;
    margin: 20px 0;
    display: block;
    filter: drop-shadow(0 0 8px #c99cff);
}

.form-img {
    width: 100%;
    max-width: 110px;
    margin: 10px auto 20px auto;
    display: block;
    opacity: 0.7;
    filter: drop-shadow(0 0 6px #b487ff);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .astrology-img, .form-img {
        max-width: 100px;
        margin: 10px auto;
    }
}
/* ---- CONTACT SECTION ---- */

.contact-section {
    padding: 60px 20px;
    background: linear-gradient(85deg, #0a0f1f, black);
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 20px;
    opacity: 0.8;
}

.info-box {
    margin-bottom: 20px;
}

.info-box p {
  margin-top: 0;        /* remove space above text */
}

.info-box h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: orangered;
}

.social-icons a {
    color: #fff;
    margin-right: 15px;
    font-size: 25px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: yellow;
}

.contact-form {
    /*background: rgba(255, 255, 255, 0.05);*/
    background: black;
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    border:4px double yellow;
        margin-top: 25px;

}
.contact-form:hover{
    box-shadow: 0 0 15px yellow;
}


.contact-form h3 {
    margin-bottom: 15px;
    color: white;
    text-align: center;
    font-size:22px;
}

.input-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
   
}

.input-group label {
    margin-bottom: 5px;
    font-size: 14px;
    opacity: 0.8;
    color: white;
    
}

.input-group input,
.input-group textarea {
    padding: 12px;
    border: none;
    border-radius: 8px;
    outline: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 15px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #ddd;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #ffffff;
}

.input-group select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background-color: #2b2b2b;
  color: #ffffff;
  font-size: 15px;
  border: none;
  border-radius: 12px;
  outline: none;
  cursor: pointer;

  /* Remove default dropdown styling */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Custom dropdown arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 45px;
}

/* Placeholder color (for disabled option) */
.input-group select option[disabled] {
  color: #aaaaaa;
}

/* Focus effect – same as input field */
.input-group select:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

/* Dropdown options background */
.input-group select option {
  background-color: #2b2b2b;
  color: #ffffff;
}


.btn {
    padding: 12px 20px;
    background: yellow;
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn:hover {
    background: #c99cff;
}

.map-wrapper {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    
}

/* ----- RESPONSIVE ----- */

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .map-wrapper{
        border-right:5px ridge gold;
    }
}




/* FAQ Section */
.faq-section {
  padding: 40px 10%;
}

.faq-box {
  margin-bottom: 10px;
}

.faq-btn {
  width: 100%;
  padding: 15px;
  background: #fafafa;
}

/* banner section */
.container {
  background: url("images/new5.jpg") center/cover;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.blur-box {
 
 padding:15px;
  text-align: center;
}



/*footer*/
/* Footer CSS (paste into your stylesheet) */
.site-footer{
    background-color:black;
  color:#cfd8e3;
  padding:54px 18px 22px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  position:relative;
}

.footer-inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap:36px;
  align-items:start;
}

/* columns */
.site-footer .col h4{
  color:#fff;
  font-size:20px;
  letter-spacing:1px;
  margin-bottom:18px;
  position:relative;
  font-weight:700;
  text-transform:uppercase;
}

/* little yellow underline */
.site-footer .col h4::after{
  content:"";
  width:36px;
  height:3px;
  background:#ffd000;
  position:absolute;
  right:0;
  top:8px;
}

/* about */
.footer-logo{ 
    width:270px; 
    height:60px; 
    margin-bottom:18px; 
    display:block; 
    
}
.about-text{ color:rgba(255,255,255,0.85); line-height:1.8; font-size:15px; max-width:520px; }

/* lists */
.site-footer ul{ 
    list-style:none; 
    padding:0; 
    margin:0;
    }
.site-footer ul li{
    margin:14px 0;
    }
.site-footer a{ 
    color:rgba(255,255,255,0.85);
    text-decoration:none; 
    transition:color .16s;
    }
.site-footer a:hover{ 
    color:#ffd000; 
    
}

/* contact */
.contact-label{ 
    font-weight:700;
    margin-top:8px; 
    color:#fff; 
    
}
.contact-phone a{ 
    color:#ffd000;
    font-weight:700; 
    font-size:20px;
    text-decoration:none; 
    display:inline-block; 
    margin:6px 0; 
    
}
.contact-address{
    color:rgba(255,255,255,0.6); 
    line-height:1.7; 
    margin-top:8px; 
    
}

/* social buttons */
.social{ 
    margin-top:18px; 
    display:flex; 
    gap:12px; 
    align-items:center; 
    
}
.social-btn{
  width:44px;
  height:44px; 
  border-radius:50%;
  display:inline-flex;
  align-items:center; 
  justify-content:center;
  background:transparent; 
  color:#fff; 
  border:1px solid rgba(255,255,255,0.18);
  text-decoration:none;
  transition: all .18s;
}
.social-btn svg{
    width:18px; 
    height:18px; 
    display:block; 
    
}
.social-btn:hover{ 
    transform:translateY(-4px);
    border-color:#ffd000; 
    color:#ffd000; 
    box-shadow:0 6px 18px rgba(0,0,0,0.4);
    }

/*-------------- responsive----------- */
/*@media (max-width: 980px){*/
/*  .footer-inner{ */
/*      grid-template-columns: 1fr 1fr;*/
/*      gap:22px;*/
/*      }*/
/*  .site-footer .col h4::after{ */
/*      right:12px; */
      
/*  }*/
/*}      */

/*@media (max-width: 600px){*/
/*  .footer-inner{ */
/*      grid-template-columns: 1fr; */
      
/*  }*/
/*  .footer-logo{*/
/*      width:280px; */
      
/*  }*/
/*  .about-text{ */
/*      font-size:14px;*/
/*      }*/
/*  .footer-disclaimer{ */
/*      font-size:13px;*/
/*      padding:14px; */
      
/*  }*/
/*  .site-footer .col h4{ */
/*      text-align:left; */
      
/*  }*/
/*}*/

/* Mobile & Tablet */
@media (max-width: 980px) {

  /* 2-column footer layout */
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  /* Make about/header section full width */
  .footer-inner .about,
  .footer-inner .footer-about {
    grid-column: 1 / -1;
  }

  /* Hide Services section */
  .site-footer .services {
    display: none;
  }

  .site-footer .col h4 {
    text-align: left;
  }
  .footer-logo{ 
    width:300px; 
    height:60px; 
    margin-bottom:18px; 
    display:block; 
    margin-left: 20px;
}
}

/* Small Mobile Tweaks */
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .about-text {
    font-size: 14px;
    line-height: 1.6;
    text-align:center;
  }
}
