.hero-banner-top{
    margin-top:48px;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    cursor: pointer;
}
.footer-section {
    padding-bottom: 0; /* mobile */
}
  .hero-space {
        margin-top:30px;
    }

.hero-title {
    font-size: 90px;
letter-spacing: -0.06em;
color: rgba(6, 27, 51, 0.04);
}
.section-heading {
    font-size: clamp(15px, 6vw, 33px);
    padding:0px 6px;
}
.image-frame {
    order:none;
}

.header-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Blog table styling */
.blog-card table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 30px 0 !important;
}

.blog-card table,
.blog-card table td,
.blog-card table th {
    border: 1px solid #64748b !important;
}

.blog-card table td,
.blog-card table th {
    padding: 18px 12px !important;
    font-size: 18px !important;
    vertical-align: middle !important;
}

.blog-card table tr:first-child td {
    font-size: 24px !important;
    font-weight: 700 !important;
    text-align: center !important;
    background-color: #ddd5d7;
}

@media (min-width: 992px) {
    .header-grid {
        grid-template-columns: auto auto auto;
    }
   
}

  @media (max-width: 768px) {
    
.hero-banner-top {
    margin-top: 33px;
}
     .footer-section {
        padding-bottom: 2rem;
    }
    .hero-title {
      font-size: 37px;
    }
 .image-frame {
        order:1;
    }
    .space-div {
        margin-top:30px;
    }
  }


.blog-article {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(7,35,63,.10);
}

.blog-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #061b33, #007a33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
    color: #6b7280;
    font-size: 14px;
}

.blog-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 30px;
}

.blog-content > p {
    background: #f5faf7;
    border: 1px solid #eee;
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 24px;
    color: #374151;
    line-height: 2;
}

.blog-card {
    background: #f5faf7;
    border: 1px solid #eee;
    border-radius: 28px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 14px 40px rgba(7,35,63,.08);
}

.blog-card h2 {
    font-size: 26px;
    font-weight: 900;
    color: #062746;
    margin-bottom: 20px;
}

.blog-card p,
.blog-card li {
    color: #374151;
    line-height: 2;
    font-size: 16px;
}

.blog-card p {
    margin-bottom: 16px;
}

.blog-card ul {
    margin: 18px 0 18px 25px;
    list-style: disc;
}

.blog-card a {
    color: #16a34a;
    font-weight: 800;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-article {
        padding: 20px;
        border-radius: 20px;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-main-img {
        height: 250px;
    }

    .blog-card {
        padding: 22px;
        border-radius: 22px;
    }

    .blog-card h2 {
        font-size: 22px;
    }
}
.rating-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.google-logo-text {
    font-size: 28px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.g-blue { color: #4285F4; }
.o-red { color: #EA4335; }
.o-yellow { color: #FBBC05; }
.l-green { color: #34A853; }
.e-red { color: #EA4335; }

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #FFC107;
    font-size: 20px;
}

.rating-text {
    color: #555;
    font-size: 15px;
    font-weight: 500;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 28px;
    margin: 0;
    color: #fff;
    background: linear-gradient(135deg, #25D366, #1EBE5D);
    border-radius: 24px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: linear-gradient(135deg, #1EBE5D, #169C4A);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
}