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 15px;
}


/* 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: 15px;
        
    }
    .top-bar {
  
  font-size: 15px;
  line-height:1;
  
}

    .top-container span {
        font-size: 14px;
        white-space: nowrap;   /* keep everything in single line */
    }
  
    
}  



/* NAVBAR BASIC */
/* ===== MAIN NAVBAR ===== */
.nav-logo img {
    width: 220px;
    height: auto;
    display: block;
    margin-left:125px;
   
}

.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:125px;
}

/* 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;
    font-weight: 500;
    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);
        
    }
    
    
  
}

/* === MOBILE NAV === */
.menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
}

/* MOBILE DESIGN FIX */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;

    }
    
    .nav-logo img {
    margin-left:25px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
        padding: 20px 0;
        text-align: center;
        z-index: 9999;
        position: absolute;
        top: 100%;
        left: 0;
    }

    /* Show menu when active */
    .nav-links.active {
        display: flex !important;
    }

    /* Mobile dropdown */
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        display: none;
        background: #111;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

}


/*-------------------- navbar section */

/* ===== TOP RED BAR ===== */
.top-bar {
  background: #e60000;
  color: #fff;
  padding: 6px 0;
  font-size: 18px;
  font-weight: bold;
}

.top-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}


/* 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: 15px;
        
    }
    .top-bar {
  
  font-size: 15px;
  line-height:1;
  
}

    .top-container span {
        font-size: 14px;
        white-space: nowrap;   /* keep everything in single line */
    }
  
    
}  


/* NAVBAR BASIC */
/* ===== MAIN NAVBAR ===== */
.nav-logo img {
    width: 220px;
    height: auto;
    display: block;
    margin-left:125px;
   
}

.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:125px;
}

/* 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;
    font-weight: 500;
    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);
        
    }
    
}

/* === MOBILE NAV === */
.menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
}

/* MOBILE DESIGN FIX */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;

    }
    
    .nav-logo img {
    margin-left:25px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
        padding: 20px 0;
        text-align: center;
        z-index: 9999;
        position: absolute;
        top: 100%;
        left: 0;
    }

    /* Show menu when active */
    .nav-links.active {
        display: flex !important;
    }

    /* Mobile dropdown */
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        display: none;
        background: #111;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

}
/*-------------------------------------------------------------*/


/* ---------------------------------- */





/* Banner */
.hero-banner {
    background: url("images/banner8.png") center/cover no-repeat;
    padding: 120px 20px;
    text-align: left;
    color: black;
}
.hero-banner h1 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 40px orangered;
}

/* Breadcrumb */
.breadcrumb {
    padding: 12px 40px;
    background: #f5f5f5;
    font-size: 14px;
}
.breadcrumb a { 
    color: #da8f00;
 }

/* Main Layout */
.main-container {
    display: flex;
    gap: 40px;
    padding: 40px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Left Section */
.left-section {
    width: 65%;
}
.left-section img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 15px orangered;
}
.left-section h2,
.left-section h3 {
    color: white;
    margin-top: 20px;
          background: linear-gradient(30deg, red,yellow);

}
.left-section ul {
    padding-left: 20px;
}

/* Right Form */
.right-form {
    width: 30%;
}
.right-form h2 {
    color: #222;
    text-align: center;
}
.right-form form {
    background: #dbad00;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.right-form input,
.right-form textarea {
    width: 93%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-bottom: 12px;
}
.right-form button {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 5px;
    cursor: pointer;
}
.right-form button:hover{
    background-color: orangered;
}

/* Contact Box */
.contact-box {
    background: black;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Sidebar */
.sidebar {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
}
.sidebar h3 {
    margin-bottom: 10px;
}
.sidebar ul {
    list-style: none;
    padding: 0;
}
.sidebar li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

/* Bottom Grid */
.bottom-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    padding: 10px;
     border-left: 4px ridge white;
    border-right: 4px ridge white;
    border-bottom: 5px ridge white;
    border-top: 5px ridge white;
    background: linear-gradient(30deg, white,yellow);
     border-radius: 10px;
    
}
.bottom-grid .box1 {
    background: url("images/EvilSpiritRemoval.jpg");
    padding: 30px 10px;
    text-align: center;
    color: #fff;
    border-radius: 25px;
                 border: 4px ridge white;
                  box-shadow: 0 5px 10px black;

}
.bottom-grid .box2 {
    background: url("images/BadLuckRemoval.jpg");
    padding: 30px 10px;
    text-align: center;
    color: #fff;
    border-radius: 25px;
                 border: 4px ridge white;
                  box-shadow: 0 5px 10px black;

}
.bottom-grid .box3 {
    background: url("images/Removing\ Witchcraft.jpg");
    padding: 30px 10px;
    text-align: center;
    color: #fff;
    border-radius: 25px;
                 border: 4px ridge white;
                  box-shadow: 0 5px 10px black;

}
.bottom-grid .box4 {
    background: url("images/financial.jpg");
    padding: 30px 10px;
    text-align: center;
    color: #fff;
    border-radius: 25px;
                 border: 4px ridge white;
                  box-shadow: 0 5px 10px black;

}
.bottom-grid .box5 {
    background: url("images/Voodoo.jpg");
    padding: 30px 10px;
    text-align: center;
    color: #fff;
    border-radius: 25px;
                 border: 4px ridge white;
                  box-shadow: 0 5px 10px black;

}
.bottom-grid .box6 {
    background: url("images/r-1.jpg");
    padding: 30px 10px;
    text-align: center;
    color: #fff;
    border-radius: 25px;
                border: 4px ridge white;
                 box-shadow: 0 5px 10px black;

}

/* -------------------------
   RESPONSIVE
--------------------------*/
@media (max-width: 900px) {
    .main-container {
        flex-direction: column;
    }
    .left-section, .right-form {
        width: 100%;
    }
    .bottom-grid {
        grid-template-columns: repeat(2, 1fr);
         margin-right: 30px;
        margin-left:30px;
    }
}

@media (max-width: 600px) {
    .hero-banner h1 {
        font-size: 28px;
    }
    .bottom-grid {
        /*grid-template-columns: 1fr;*/
    }
}


/*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:192px; 
    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;
  }
}
