.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    overflow-x: hidden;
    position: relative;
}

.offer-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    scroll-snap-align: start;
}

.promo-card {
    background: linear-gradient(to right, #0066b3, #0a2885);
    color: white;
}

.offer-badge {
    display: inline-block;
    background-color: #0a2885;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.offer-card h3 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.offer-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.offer-link {
    color: #0066b3;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-badge {
    background-color: white;
    color: #0066b3;
}

.promo-card p {
    color: rgba(255, 255, 255, 0.9);
}

.yellow-text {
    color: #fdcb4e;
}
section.blog-section{
    padding:5rem 0;
}
@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
    }
    
    .offers-controls {
        display: none;
    }
}

@media (max-width: 767px) {
    .offers-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 0.5rem;
        margin: 0 -0.5rem;
        position: relative;
    }
    
    .offer-card {
        flex: 0 0 85%;
        margin-right: 1rem;
    }
    
    .offers-controls, .offers-dots, .offers-dot, .offers-arrow, .offers-prev, .offers-next {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .offers-arrow {
        display: none !important;
    }
}

.blog-section .section-subtitle{
    text-align: center;
}
.blog-section .blog-btn{
    text-align: center;
    padding-top: 30px;
}
.page-header {
    background: linear-gradient(to right, #0066b3, #0a2885);
    color: white;
    padding: 60px 0;
    text-align: center;
  }
  
  .page-header h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
  }
  
  .blogs-section {
    padding: 60px 0;
    background-color: #f9fafb;
  }
  
  .blogs-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  @media (min-width: 992px) {
    .blogs-container {
      grid-template-columns: 3fr 1fr;
    }
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  @media (min-width: 768px) {
    .blog-grid {
      grid-template-columns: repeat(3,1fr);
    }
  }
  
  .blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
  }
  
  .blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  
  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .blog-card:hover .blog-image img {
    transform: scale(1.05);
  }
  
  .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 102, 179, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
  }
  
  .blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .blog-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
  }
  
  .blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }
  
  .blog-date {
    font-size: 13px;
    color: #888;
  }
  
  .blog-read-more {
    color: #0066b3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s;
  }
  
  .blog-read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
  }
  
  .blog-read-more:hover {
    color: #0a2885;
  }
  
  .blog-read-more:hover i {
    transform: translateX(3px);
  }
  
  .blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .sidebar-widget h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }
  
  .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .category-list li {
    margin-bottom: 10px;
  }
  
  .category-list a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    transition: all 0.3s;
  }
  
  .category-list a:hover {
    color: #0066b3;
  }
  
  .category-count {
    background: #f0f0f0;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 12px;
    color: #666;
  }
  
  .popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .popular-post-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .popular-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .popular-post-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
  }
  
  .popular-post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .popular-post-content h4 a:hover {
    color: #0066b3;
  }
  
  .popular-post-content .post-date {
    font-size: 12px;
    color: #888;
  }
  
  .search-form {
    display: flex;
  }
  
  .search-input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
  }
  
  .search-input:focus {
    outline: none;
    border-color: #0066b3;
  }
  
  .search-btn {
    background: linear-gradient(to right, #0066b3, #0a2885);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  
  .search-btn:hover {
    opacity: 0.9;
  }
  
  .pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
  }
  
  .pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .pagination a:hover, .pagination a.active {
    background: #0066b3;
    color: white;
  }
  
  /* benfits */
  .benefits-section {
    background: white;
    padding: 60px 0;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .benefit-card {
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top: 3px solid #0066b3;
    text-align: left;
    background-color: #fff;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e6f0ff, #d6e9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066b3;
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .mobile-preview {
    max-width: 350px;
    margin: 0 auto;
    display: none;
  }
  
  @media (min-width: 992px) {
    .mobile-preview {
      display: block;
    }
  }
  
  .flag-icon {
    width: 24px;
    margin-right: 10px;
    vertical-align: middle;
  }
  
  .phone-input {
    display: flex;
    align-items: center;
  }
  
  .phone-input .country-code {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    font-weight: 500;
    color: #333;
    border-right: none;
  }
  
  .phone-input .phone-number {
    flex-grow: 1;
    border-radius: 0 8px 8px 0;
  }
  
  .verification-note {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
  }