@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #ffffff;
    /* match your site's background */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-preloader-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.dot {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    border-radius: 10px;
    background-color: #b3d4fc;
    animation: pulse 1.5s infinite ease-in-out;
}

.dot:last-child {
    margin-right: 0;
}

.dot:nth-child(1) {
    animation-delay: -0.3s;
}

.dot:nth-child(2) {
    animation-delay: -0.1s;
}

.dot:nth-child(3) {
    animation-delay: 0.1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        background-color: #b3d4fc;
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }

    50% {
        transform: scale(1.2);
        background-color: #6793fb;
        box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
    }

    100% {
        transform: scale(0.8);
        background-color: #b3d4fc;
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }
}

.navbar {
    position: sticky;
    top: 0;
    background-color: #F1EAFF;
    padding: 1rem;
    z-index: 1000;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    max-width: 250px;
    height: auto;
    display: block;
}

.navbar-toggler {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.toggler-icon {
    width: 30px;
    height: 3px;
    background-color: #000;
    display: block;
    position: relative;
}

.toggler-icon::after,
.toggler-icon::before {
    content: '';
    width: 30px;
    height: 3px;
    background-color: #000;
    position: absolute;
    left: 0;
}

.toggler-icon::before {
    top: -8px;
}

.toggler-icon::after {
    top: 8px;
}

.navbar-menu {
    display: flex;
    flex-direction: row;
}

.navbar-nav {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    padding: 0.5rem 1rem;
    color: #000;
    transition: background 0.2s;
}

.nav-link:hover {
    background-color: #ddd;
    border-radius: 5px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    flex-direction: column;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #000;
    display: block;
}

.dropdown-item:hover {
    background-color: #eee;
}

/* Show dropdown on toggle */
.dropdown.show .dropdown-menu {
    display: flex;
}

.content {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
}

h1, h2 {
    margin-bottom: 20px;
    text-align: left;
}

p{
    max-width: 80%;
}

.container {
    display: flex; /* This was missing */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container img {
    max-width: 80%; /* Ensure image doesn't overflow */
    height: auto;
}

.bullet-points{
    line-height: 1.8rem;
    max-width: 80%;
}

.card-wrapper{
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px;
}

.card{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 25px; 
    transition:transform 0.3s;
    border: 1px solid #F7374F;
}

a{
    color: #F7374F;
}

.cta-button {
  display: inline-block;
  background-color: #F7374F;
  color: white;
  padding: 12px 24px;
  margin-top: 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #fb001d;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 20px;
    max-width: 80%;
}

.agency-list {
  list-style-type: disc;
  margin-left: 20px;
  line-height: 1.8;
}

.cta-wrapper {
  margin-top: 30px;
}

.site-footer {
    background: #111;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-column {
    flex: 1 1 250px;
    min-width: 220px;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-menu,
.contact-info {
    list-style: none;
    padding: 0;
}

.footer-menu li,
.contact-info li {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-menu a,
.contact-info a {
    color: #ddd;
    text-decoration: none;
}

.footer-menu a:hover,
.contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    color: #fff;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #FFD700;
}

.service-ticker {
    background-color: #222;
    overflow: hidden;
    margin-top: 30px;
    padding: 10px 0;
}

.ticker {
    white-space: nowrap;
    display: inline-block;
    animation: scroll-left 20s linear infinite;
}

.ticker span a {
    color: #FFD700;
    margin: 0 15px;
    text-decoration: none;
}

@keyframes scroll-left {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid #333;
}

/* Responsive (mobile) */
@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #ddd;
    }

    p{
        max-width: 100%;
    }

    .container img {
        max-width: 100%; /* Ensure image doesn't overflow */
        height: 100px;
    }

    .faq-item{
        padding: 10px;
        max-width: 100%;
    }
}