body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0px;
    padding: 0px;
}

  /* Marquee Styling */
  .marquee-container {
    background: #f58634;
    color: white;
    font-weight: bold;
    padding: 5px 0px;
    
    font-size: 14px;
    text-align: center;
}
.navbar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.navbar-nav .nav-item {
    display: inline-block;
    position: relative;
    margin: 0 15px;
}
.navbar-nav .nav-link {
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    display: block;
}
.navbar-nav .nav-item:hover .dropdown {
    display: block;
}
.dropdown {
    display: none;
    position: absolute !important;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-width: 256px;
    top: 35px;
    left: -100px;
    z-index: 0;
    border-radius: 5px;
    overflow: hidden;
}
.dropdown li {
    display: block;
}
.dropdown li a {
    color: #007bff;
    padding: 12px 15px;
    display: block;
    text-align: left;
    transition: background 0.3s ease-in-out;
    text-decoration: none;
}
.dropdown li a:hover {
    background: #e3f2fd;
}
.hero {
    background: url('images/name-change-ad-banner.gif') no-repeat  center/contain; /* Full image display */
    background-color: #D2F1FF;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

  
.phone-link {
    display: inline-block;
    padding: 10px 20px;
    color: #fff !important;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ec4899, #facc15); /* pink to yellow */
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    transition: background 0.5s ease, transform 0.3s ease;
  }
  
  .phone-link:hover {
    background: linear-gradient(90deg, #facc15, #ec4899); /* reverse gradient */
    transform: scale(1.05);
  }
  
  /* Pulse animation */
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 rgba(236, 72, 153, 0.7);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 0 10px rgba(236, 72, 153, 0.7);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 rgba(236, 72, 153, 0.7);
    }
  }
.search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    margin: 20px auto;
    border-radius: 10px;
    column-gap: 150px;
}

.search p {
    margin: 10px 0;
    font-size: 18px;
}

.search a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}


.state-section {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.5s, box-shadow 0.3s;
}

.state-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.state-header {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #007bff;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
    margin-bottom: 15px;
}

.city-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background-color: #1167B1;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
}

.city-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d80);
    transform: scale(1.05);
}



 /* How to book process start  */
 .process-container {
    margin: 50px auto; 
}
.process-heading {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.step-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 22%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.step-box:hover {
    transform: translateY(-5px);
    background: #599ae0;
    color: #fff;
}

.step-box img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.step-box h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.step-box p {
    font-size: 14px;
    color: #666;
}

.step-box:hover p {
    color: #fff;
}

/* Arrows */
.arrow {
    font-size: 30px;
    color: #007bff;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero {
        height: 80px; /* Reduce height for smaller screens */
        font-size: 20px; /* Decrease font size for readability */
        padding: 15px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .navbar-toggler-icon{
        background-color: white;
    }
    .step-box {
        width: 90%;
        margin-bottom: 20px;
    }

    .arrow {
        display: none;
    }
}
 /* How to book process End */

/* Why Choose Us start  */
.counter-section {
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: black;
}

.counter-heading {
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-size: 28px;
}
.counter-heading a{
    text-decoration: none;
}

.counters-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.counter-box {
    width: 22%;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: lightgray;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.counter-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.counter-box i {
    font-size: 50px;
    margin-bottom: 10px;
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    transition: color 0.3s ease-in-out;
}

.counter-box h2 {
    font-size: 35px;
    font-weight: bold;
    margin: 10px 0;
}

.counter-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.counter-box p{
    font-size: 16px;
}

@media (max-width: 768px) {
    .counters-container {
        flex-direction: column;
        align-items: center;
    }

    .counter-box {
        width: 80%;
    }
}


.name-change-list {
  padding: 0px ;
}
.name-change-list ul {
    list-style: none;
    padding: 0;
}
.name-change-list li {
    background: #f4f4f4;
    padding: 7px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.name-change-list li b {
    color: #101111;
    margin-right: 10px;
}
.name-change-list li::before {
    content: "✔"; 
    color: #203ec4;
    font-weight: bold;
    margin-right: 10px;
}
/* Why Choose Us End */
 /* Frequently Asked Questions Start */
 .faq-container {
    padding: 20px;
    border-radius: 8px;
   
}
.faq-container h3{
    padding-top: 25px;
}
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.question {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 5px;
}
.question:hover {
    background: #f0f0f0;
}
.faq-answer {
    display: none;
    padding: 10px;
    color: #444;
}
.arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.arrow.rotate {
    transform: rotate(180deg);
}
.open .arrow {
    transform: rotate(180deg);
}
.faq-answer {
    display: none;
}
.faq-answer.active {
    display: block;
}
@media (max-width: 768px) {
    .faq-container {
        padding: 0px;
    }
    .faq-container h3{
        font-size: 20px;
    }
}

/* Frequently Asked Questions End  */

/* Footer section start */
.footer {
    background: #222;
    color: #fff;
    padding: 40px 20px;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.footer-container a{
    text-decoration: none;
    color: white;
}
.footer h3 {
    margin-bottom: 15px;
    color: #f58634;
}
.footer p, .footer ul {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 8px;
}
.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}
.footer ul li a:hover {
    color: #f58634;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    text-decoration: none;
    transition: 0.3s;
}
.social-icons a:hover {
    background: #f58634;
}
.social-icons img {
    width: 18px;
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-size: 13px;
    color: #bbb;
}
.footer-bottom a{
    color: white;
    text-decoration: none;
    font-size: 15px;
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}
/* Footer section End */
/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .city-btn {
        font-size: 14px;
        padding: 10px;
    }
    .search {
        flex-direction: column;
        padding: 0px;
        margin: 0px;
    }
    .search p {
        margin: 5px 0px;
    }
    .search .para{
        font-size: 14px;
    }
    .search p:nth-of-type(2) {
        display: none; /* Hides the second <p> tag on mobile */
    }
}


/* Newspaper.php css Start */

.main-div {
    max-width: 1260px;
    margin: 0 auto; /* Centers the div */
}
.city-name{
    background: grey;
    padding: 10px 18px;
    color: white;
}
.main-div .btn {
    display: block;
    margin: 0 auto;
}
.main-div .search {
    display: flex;
    justify-content: space-between; /* Creates space between the elements */
    gap: 20px; /* Adds spacing between the divs */
}

.search > div {
    flex: 1; /* Ensures both divs take equal width */
    max-width: 48%; /* Optional: Limits width to half the container */
}
.main-div .para{
    color: #007bff;
}
.main-div .btn{
    background-color: #007bff;
    color: white;
    margin: 10px auto;
    width: auto;
}
.main-div .btn:hover{
    background-color: #003d80;
    color: white;
}
.newspaper-combo {
    width: 100%;
}
.newspaper-combo table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }

  .newspaper-combo 
  td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
  }

  .newspaper-combo th {
    background: #007bff;
    color: white;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
  }

  .newspaper-combo .rate {
    font-weight: bold;
    font-size: 20px;
  }

  .newspaper-combo  .logo {
    width: 110px;
    height: auto;
    display: inline-block;
    margin: 5px;
  }

  .newspaper-combo .logos {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background-color: #f8f9fa;
    margin: 5px auto;
    width: fit-content;
  }

  .name-change-list-newspaper {
    list-style: none;
    padding: 10px;
    text-align: justify;
   
}

.name-change-list-newspaper li {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 5px solid #0073e6;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.name-change-list-newspaper li b {
    color: #0056b3;
    font-size: 18px;
}

.name-change-list-newspaper p {
    margin: 10px 0 0;
    color: #333;
    font-size: 16px;
}

.cta {
    font-weight: bold;
    color: #d9534f;
    text-align: center;
}


  /* Make the table responsive on small screens */
@media (max-width: 768px) {
    .search > div {
        flex: 1; /* Ensures both divs take equal width */
        max-width: 100%; /* Optional: Limits width to half the container */
    }
    .newspaper-combo {
      width: 100%;
      overflow-x: auto;
    }
  
    .newspaper-combo table {
      display: block;
      width: max-content; /* Ensures table doesn't shrink */
      min-width: 100%;
      overflow-x: auto;
      white-space: nowrap;
    }
  
    .newspaper-combo th,
    .newspaper-combo td {
      font-size: 14px;
      padding: 8px;
      text-align: center;
    }
  
    .newspaper-combo .rate {
      font-size: 16px;
    }
  
    .newspaper-combo .logo {
      width: 80px; /* Reduce logo size on smaller screens */
    }
  
    .newspaper-combo .logos {
      flex-direction: column;
    }
  
    .newspaper-combo .btn {
      width: 100%;
      padding: 12px;
      font-size: 16px;
    }
  }
  
  /* Further adjustments for very small screens */
  @media (max-width: 480px) {
    .newspaper-combo {
      overflow-x: auto;
    }
  
    .newspaper-combo table {
      display: block;
      width: max-content;
      min-width: 100%;
    }
  
    .newspaper-combo th,
    .newspaper-combo td {
      font-size: 12px;
      padding: 6px;
    }
  
    .newspaper-combo .logo {
      width: 60px;
    }
  
    .newspaper-combo .logos {
      padding: 5px;
    }
  
    .newspaper-combo .btn {
      font-size: 14px;
      padding: 10px;
    }
  }
  
/* Newspaper.php css End */


/* Compose_ads.php CSS Start */

.compose_ad form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.compose_ad label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}
.compose_ad label span {
    color: red;
}
.compose_ad .flex-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}
.compose_ad input, select, .payment {
    /* margin-top: 20px !important; */
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.compose_ad input[type="radio"] {
    width: auto;
    margin-right: 5px;
}
.compose_ad button {
    background-color: #28a745;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.compose_ad button:hover {
    background-color: #218838;
}
.compose_ad #husbandContainer {
    display: none;
}
.compose_ad form h6{
    color: #3851cb;
    margin: 3px 0px;
}
.compose_ad {
    display: flex;
    max-width: 1000px;
    margin: auto;
    gap: 20px;
}
.compose_ad .form-container {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.compose_ad .selected-newspapers {
    width: 35%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.compose_ad .news{
    border: 1px solid red;
    padding: 0px 15px;
}

@media(max-width: 786px) {
    .compose_ad{
        display: block;
    }
    .compose_ad .selected-newspapers{
        width: auto;
    }

    .compose_ad .form-container{
        padding: 0px;
    }
}
/* Compose_ads.php CSS End */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    animation: pulse-animation 1.5s infinite; /* Faster pulse */
    transition: transform 0.3s ease;
  }
  
  .whatsapp-button:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-button img {
    width: 30px;
    height: 30px;
  }
  
  /* Pulse animation */
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
      box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  /* Hide on devices smaller than 768px (mobile) */
@media (max-width: 767px) {
    .whatsapp-button {
      display: none !important;
    }
  }
  
  
  .mobile-contact-buttons {
    display: none; /* hidden by default, only shown on small screens */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    justify-content: space-evenly;
    padding: 10px 0;
  }
  
  .mobile-contact-buttons a {
    flex: 1;
    margin: 0 5px;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
  }
  
  .contact-btn {
    background-color: #007bff;
  }
  
  .whatsapp-btn {
    background-color: #25D366;
  }
  
  /* Show only on small devices */
  @media (min-width: 768px) {
    .mobile-contact-buttons {
      display: none !important;
    }

   
  }
  