/* ============================= */
/* ✅ BASE SETUP (Hamburger hidden by default) */
/* ============================= */
.hamburger {
  display: none; /* Hide by default, show only on mobile */
}

/* ============================= */
/* ✅ Responsive for Mobile + Tablet Devices */
/* ============================= */

@media (max-width: 768px) {
  .site-header {
    height: auto;
    padding: 10px 15px 10px 40px;
    position: sticky;   /* ✅ Fix applied */
    top: 0;             /* ✅ Sticky needs this */
    z-index: 999;
    background: #fff;
  }

  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo-section img {
    width: 140px;
    height: auto;
  }

  .hamburger {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: #212121;
  }

  /* ✅ Fix nav positioning without moving it out of container */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #eee;
    z-index: 999;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 10px 20px;
    margin: 0 auto;
  }

  .main-nav a {
    display: block;
    font-size: 16px;
    color: #212121;
    padding: 0;
    text-align: left;
  }
}

/* ============================= */
/* ✅ Extra Responsive Tweaks for Samsung Galaxy Mobiles (<= 412px) */
/* ============================= */
@media (max-width: 412px) {
  .main-nav a {
    font-size: 15px;
  }

  .footer-left p {
    font-size: 13px;
  }

  .footer-right a {
    font-size: 15px;
  }

  .logo-section img {
    width: 120px;
  }
}

/* ============================= */
/* ✅ HERO SECTION */
/* ============================= */

@media (max-width: 768px) {
  .hero-section {
    background: linear-gradient(to bottom, #c7c7c7 50%, #eac4d5 50%);
    padding: 40px 15px;
    height: 640px;
  }

  .hero-content {
    flex-direction: column;
    gap: 20px;
    margin-left: 0;
  }

  .hero-image-wrapper {
    width: 100%;
    border-width: 8px;
  }

  .hero-image-wrapper img {
    max-width: 100%;
  }

  .hero-text-box {
    margin-left: 0;
    padding: 25px 20px;
    width: 100%;
    max-width: 100%;
    border-width: 8px;
    min-height: 290px;
  }

  .hero-text-box h2 {
    font-size: 28px;
  }

  .link-text {
    justify-content: center;
    font-size: 13px;
  }

  .custom-arrow svg {
    width: 22px;
    height: 22px;
    margin-bottom: 0;
  }
}


/* ============================= */
/* ✅ OUR MISSION */
/* ============================= */

@media (max-width: 991px) {
  .mission-section {
    flex-direction: column;
    background: linear-gradient(to bottom, #c7c7c7 32%, #ffffff 10%);
    height: auto;
    padding: 30px 15px;
  }

  .mission-text, .mission-image {
    width: 100%;
    flex: unset;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .mission-text {
    padding: 20px 15px;
    margin: 0;
    margin-top: 30px;
    margin-left: 0;
    text-align: center;
  }

  .mission-text div {
    max-width: 100%;
  }

  .mission-text h2 {
    font-size: 24px;
    margin-top: 20px;
    text-align: left;
  }

  .mission-text h2::after {
    font-size: 14px;
    line-height: 24px;
  }

  .mission-text p {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }

  .mission-image img {
    position: static;
    margin: 0 auto;
    width: 90%;
    max-width: 360px;
    height: auto;
    display: block;
    border: 10px solid #809bce;
  }

 #comp-jjfohjez svg {
    top: 726px !important;
    left: 83px !important;
    width: 250px !important;
    z-index: 1 !important;
  }

#comp-jg254loz svg {
    position: absolute;
    top: 977px !important;
    left: 13px !important;
    width: 150px !important;
    z-index: 1 !important;
  }
}

/* ========== Responsive Fixes for Resolve Section ========== */
@media (max-width: 1200px) {
  .resolve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resolve-card p {
    width: auto;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin: 0 0 30px 0;
    text-align: center;
  }

  .resolve-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .resolve-card {
    padding: 20px;
  }

  .resolve-card h3 {
    font-size: 18px;
    margin: 20px 0 20px 0;
  }

  .resolve-card p {
    font-size: 15px;
    line-height: 22px;
    margin-left: 0;
    width: 100%;
  }

  .icon-box {
    width: 50px;
    height: 50px;
  }

  .icon-box svg {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .resolve-section {
    padding: 40px 15px;
  }

  .resolve-card p {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }
}


/* ===== Responsive Enhancements for Benefits Section ===== */
@media (max-width: 1024px) {
  .benefits-section {
    height: auto;
    flex-direction: column-reverse;
    padding: 40px 20px;
    background: linear-gradient(#c7c7c7 35%, #ffffff 10%);
  }

  .benefits-text, .benefits-image {
    flex: unset;
    width: 100%;
    height: auto;
  }

  .benefits-text {
    margin-top: 0;
    padding: 20px 15px;
    text-align: center;
  }

  .benefits-text div {
    max-width: 100%;
    margin: 0 auto;
  }

  .benefits-text h2 {
        margin-top: 55px;
        font-size: 22px;
        text-align: left;
  }

  .benefits-text h2::after {
    font-size: 13px;
    line-height: 24px;
  }

  .benefits-text p {
    font-size: 14px;
    line-height: 22px;
    width: auto;
    margin: 1rem 0;
    text-align: left;
  }

  .learn-more-btn {
    margin: 30px auto 0 auto;
    width: 160px;
    height: 44px;
    line-height: 44px;
    display: block;
  }

  .benefits-image img {
    max-width: 90%;
    margin: 1rem auto 0 auto;;
    display: block;
    height: auto;
    border-width: 12px;
  }

  .benefits-image img {
    position: relative;
    right: 0;
}

#comp-mbnmdsak svg {
position: absolute;
        top: 2934px !important;
        left: 262px !important;
        width: 90px !important;
        z-index: 2 !important;
        transform: rotate(200deg) !important;
}
}

@media (max-width: 480px) {
  .benefits-text h2 {
        margin-top: 55px;
        font-size: 22px;
        text-align: left;
  }

  .benefits-text h2::after {
    font-size: 12px;
    line-height: 20px;
  }

  .learn-more-btn {
    font-size: 13px;
    width: 140px;
    height: 40px;
    line-height: 40px;
  }

  #comp-mbnmdsak svg {
position: absolute;
        top: 2934px !important;
        left: 262px !important;
        width: 90px !important;
        z-index: 2 !important;
        transform: rotate(200deg) !important;
}
}


/* JOIN PU MATES */

/* TABLET RESPONSIVE (768px - 1024px) */
@media (max-width: 1024px) {
  .join-pu-section {
    padding: 40px 20px;
    height: auto;
    position: relative;
  }

  .join-pu-container {
    flex-direction: column-reverse;
    gap: 30px;
    width: 100% !important;
    height: auto;
  }

  .join-pu-text {
    margin-left: 0;
    padding: 20px 20px;
    align-items: center;
    text-align: center;
    margin-top: 0;
  }

  .join-pu-text h2 {
    font-size: 30px;
    margin-bottom: 20px !important;
  }

  .join-pu-text h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .join-pu-text p {
    width: 100%;
    max-width: 500px;
    font-size: 14px;
    line-height: 1.6;
  }

  .join-btn {
    margin-top: 20px;
    width: 140px;
    height: 42px;
    font-size: 14px;
    line-height: 42px;
    position: static;
  }

  .join-pu-image {
    justify-content: center;
    align-items: center;
  }

  .join-pu-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
  }

  .pumates {
    position: static;
    display: block;
    margin: 30px auto 0 auto;
    max-width: 300px;
    width: 100%;
    height: auto;
    transform: none;
  }
}


/* MOBILE RESPONSIVE (less than 768px) */
@media (max-width: 767px) {
  .join-pu-text h2 {
    font-size: 24px;
    margin-bottom: 15px !important;
  }

  .join-pu-text h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .join-pu-text p {
    font-size: 13px;
    line-height: 20px;
  }

  .join-btn {
    width: 130px;
    height: 40px;
    font-size: 13px;
    line-height: 40px;
  }

  .join-pu-image img {
    max-height: 320px;
  }

  .pumates {
    max-width: 240px;
  }
}


/* SUCCESS STORIES */

@media (max-width: 1024px) {
  .story {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 20px;
  }

  .success-stories-section {
    padding: 40px 20px;
}
  
  .story-content {
    margin-top: 0;
    padding: 20px;
    text-align: center;
  }

  .story-content h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .story-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .story-image img {
    max-width: 90%;
    height: auto;
  }

  .reverse {
    flex-direction: column;
  }

  .success-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .read-more {
    font-size: 14px;
  }

  .dots-container {
    position: relative;
    margin-top: 20px;
    transform: none;
    left: 0;
    justify-content: center;
    align-items: flex-end;
  }

  .stories-wrapper {
        position: relative;
        height: 802px;
        overflow: hidden;
        display: flex;
        justify-content: center;
}
}

@media (max-width: 576px) {
  .story-content h3 {
    font-size: 16px;
  }

  .story-content {
    padding: 15px;
  }

  .story-content p {
    font-size: 13px;
    line-height: 20px;
  }

  .success-title {
    font-size: 20px;
  }

  .story-image img {
    max-width: 100%;
  }

  .dots-container {
    gap: 8px;
    display: flex;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .stories-wrapper {
        position: relative;
        height: 802px;
        overflow: hidden;
        display: flex;
        justify-content: center;
}
}


/* TESTIMONIAL */

/* ========== RESPONSIVE TESTIMONIAL SECTION ========== */
@media (max-width: 1024px) {
  .testimonial-section {
    height: auto;
    padding: 40px 0;
    overflow-x: hidden;
  }

  .testimonial-wrapper {
    height: auto;
    padding: 0 30px;
  }

  .testimonial-heading {
    font-size: 28px;
    top: 50px;
    margin-bottom: 0;
  }

  .testimonial-card {
    display: none; /* Hide by default */
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 80px 30px;
    gap: 30px;
  }

  .testimonial-card.active {
    display: flex; /* Show only active one */
  }

  .client-info {
    flex: unset;
    text-align: center;
  }

  .client-info img {
    width: 280px;
    height: auto;
    border-width: 10px;
    position: static;
    margin: 0 auto 20px auto;
    transform: none;
    animation: none;
    opacity: 1;
  }

  .client-info h4,
  .client-info span {
    margin-left: 0;
    margin-top: 20px;
  }

  .testimonial-text {
    padding-top: 10px;
  }

  .testimonial-text p {
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    padding: 0 10px;
  }

  .testimonial-card:nth-of-type(4) .testimonial-text p {
    margin-top: 20px !important;
  }

  .testimonial-prev,
  .testimonial-next {
    top: unset;
    bottom: 30px;
    transform: none;
    background: transparent;
  }

  .testimonial-prev svg,
  .testimonial-next svg {
    width: 28px;
    height: 28px;
  }

  .testimonial-prev {
    left: 37px;
  }

  .testimonial-next {
    right: 37px;
  }
}

@media (max-width: 576px) {
  .testimonial-heading {
    font-size: 22px;
    top: 40px;
  }

  .testimonial-card {
    padding: 60px 20px;
  }

  .client-info img {
    width: 220px;
    height: auto;
    border-width: 8px;
  }

  .testimonial-text p {
    font-size: 13px;
    line-height: 22px;
  }

  .testimonial-prev svg,
  .testimonial-next svg {
    width: 24px;
    height: 24px;
  }

  .testimonial-prev,
  .testimonial-next {
    bottom: 20px;
  }
}



/* BLOG SECTION */
@media (max-width: 1024px) {
  .recent-blog-section {
    padding: 50px 30px;
  }

  .blog-title {
    font-size: 28px;
    text-align: center;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .blog-cards-wrapper {
    justify-content: center;
    gap: 20px;
  }

  .blog-card {
    width: 290px;
    height: auto;
  }

  .blog-card img.blog-img {
    height: 220px;
  }

  .blog-content h3 {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .recent-blog-section {
    padding: 40px 20px;
  }

  .blog-title {
    font-size: 24px;
    text-align: center;
  }

  .blog-cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    width: 90%;
    max-width: 400px;
  }

  .blog-card img.blog-img {
    height: 210px;
  }

  .blog-content h3 {
    font-size: 14px;
  }

  .blog-user {
    padding: 12px 16px 0;
  }

  .blog-user span {
    font-size: 11px;
  }

  .pagination {
    gap: 6px;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .recent-blog-section {
    padding: 30px 15px;
  }

  .blog-title {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .blog-card img.blog-img {
    height: 180px;
  }

  .blog-content {
    padding: 8px 15px 15px;
  }

  .blog-content h3 {
    font-size: 13px;
    line-height: 1.5;
  }

  .pagination button {
    padding: 4px 10px;
    font-size: 12px;
  }

  .pagination img {
    width: 16px;
    height: 16px;
  }
}


@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-left: 0;
  }

  .video-item {
    width: 100%;
    height: 532px;
    aspect-ratio: 9 / 16;
  }

  .follow-title {
    font-size: 22px;
    margin-left: 0;
    justify-content: center;
    text-align: center;
  }

  .video-overlay {
    height: 100%;
    top: 0;
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .follow-title {
    font-size: 20px;
    flex-direction: column;
    text-align: center;
    margin-left: 0;
    justify-content: center;
  }

  .video-item {
    width: 100%;
    height: 532px;
    aspect-ratio: 9 / 16;
  }

  .video-item::after {
    font-size: 13px;
    line-height: 20px;
    bottom: 343px;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .video-overlay {
    height: 100%;
    top: 0;
  }

  .video-modal-content {
    flex-direction: column;
    width: 95%;
    height: auto;
  }

  .modal-left,
  .modal-right {
    width: 100%;
    height: auto;
  }

  .modal-left img {
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  .modal-right {
    padding: 20px;
    gap: 10px;
  }

  .modal-header {
    font-size: 16px;
  }

  .modal-caption {
    font-size: 13px;
    line-height: 1.5;
  }

  .close-btn {
    top: 10px;
    right: 15px;
    font-size: 28px;
  }

  .video-item:nth-child(1)::after,
  .video-item:nth-child(2)::after,
  .video-item:nth-child(3)::after,
  .video-item:nth-child(4)::after {
    display: flex;
    top: 30%;
  }
}


/*
===================================
          PACKAGES PAGE 
===================================
*/

/* INTRO SECTION */
/* ===== Responsive: Tablet View (<= 992px) ===== */
@media (max-width: 992px) {
  .intro-container {
    flex-direction: column;
    height: auto;
    text-align: center;
    gap: 30px;
  }

  .left-text h2,
  .right-text h2 {
    text-align: center;
    font-size: 26px;
    line-height: 1.4;
  }

  .left-text p,
  .right-text p {
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ===== Responsive: Mobile View (<= 576px) ===== */
@media (max-width: 576px) {
  .intro-section {
    padding: 40px 15px;
  }

  .left-text h2,
  .right-text h2 {
    font-size: 22px;
  }

  .left-text p,
  .right-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* TABLE */

/* Existing styles remain same up to here... */

@media (max-width: 1024px) {
  .table-container {
    padding: 0 15px;
    margin-bottom: 80px;
  }

  .features-header th {
    font-size: 13px;
    padding: 10px 8px;
    min-width: 140px;
  }

  td {
    font-size: 12px;
    padding: 10px 8px;
  }

  .billing-row td:not(:first-child) {
    font-size: 12px;
  }

  .tab-header {
    font-size: 14px;
    padding: 10px 15px;
  }
}

@media (max-width: 768px) {
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  
  .tab-headers {
    flex-direction: column;
    min-width: 750px; /* match table min-width */
    width: max-content;
  }

  .tab-header {
    border-right: none;
    border-left: none;
    border-top: 1px solid #ccc;
    border-bottom: 3px solid #c7c7c7;
    text-align: left !important;
    white-space: nowrap;
    font-size: 14px;
    padding: 10px 12px;
  }

  .tab-header.active {
    border-bottom: 3px solid #000;
  }

  .features-header th {
    font-size: 11px;
    min-width: 120px;
  }

  td {
    font-size: 11px;
    padding: 8px 6px;
  }

  .billing-row td:not(:first-child) {
    font-size: 11px;
  }

  .gapping {
    min-width: 750px; /* match table min-width */
    width: max-content;
  }

  table {
    min-width: 750px; /* Ensures scroll on mobile */
  }

  .table-container {
    overflow-x: auto;
  }

  tbody tr {
    width: 192px;
    height: 55px;
  }
  
  /* Sticky table headers */
  .table-header {
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  /* Sticky first column */
  .first-children {
    position: sticky;
    left: 0;
    z-index: 5;
    background: #fff6f1 !important;
  }
  
  /* Sticky first header cell */
  .table-header th:first-child {
    position: sticky;
    left: 0;
    z-index: 15;
    background: #f58488 !important;
  }
  
  /* Scroll indicator */
  .first-children::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
  }
  
  /* Fix hover states */
  tbody tr.booking-row:hover td {
    background: white !important;
  }
}

@media (max-width: 480px) {
  .features-header th {
    font-size: 10px;
    padding: 6px;
    min-width: 100px;
  }

  td {
    font-size: 10px;
    padding: 6px;
  }

  .tab-header {
    font-size: 13px;
    padding: 8px;
  }

  tbody tr {
    width: 192px;
    height: 55px;
  }
  
  /* Adjust sticky elements for very small screens */
  .first-children {
    font-size: 13px !important;
  }
  
  .table-header th:first-child {
    font-size: 13px !important;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .btn-book-now {
        padding: 5px 20px; /* Reduced horizontal padding */
        line-height: 36px; /* Slightly reduced line height */
        font-size: 13px; /* Slightly smaller font */
        min-width: 120px; /* Ensure minimum tap target size */
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .btn-book-now {
        padding: 5px 15px; /* Further reduced padding */
        line-height: 32px; /* Smaller line height */
        font-size: 12px; /* Smaller font */
        min-width: 110px; /* Minimum width for small screens */
    }
}


/* PU MATES */
@media (max-width: 992px) {
  .pu-mate-grid {
    grid-template-columns: 1fr;
  }

  .pu-left-content {
    text-align: left;
  }

  .main-img {
    max-width: 90%;
  }

  .pu-left,
  .pu-right {
    padding: 30px 20px;
  }

  .pu-left-content h2 {
    font-size: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .curve-svg img {
    max-width: 300px;
  }

  .join-title {
    font-size: 26px;
  }

  .join-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .why-join-section {
    padding: 60px 20px 40px;
    margin-top: -100px;
  }

  .join-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .join-subtitle {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-box {
    padding: 10px;
  }

  .feature-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
  }

  .feature-icon img {
    width: 90px;
    height: 90px;
  }

  .feature-text {
    min-height: 0;
  }

  .feature-text h4 {
    font-size: 15px;
    margin-bottom: 20px;
    min-height: 0;
  }

  .feature-text p {
    font-size: 13px;
    line-height: 1.6;
    width: 100%;
    max-width: 300px;
  }

  .pu-left-content h2 {
    margin-top: 100px;
  }

  .inline-svg {
    position: relative;
    margin-top: 20px;
    display: block;
    transform: rotate(0);
    width: 80px;
    top: -473px;
    left: 234px;
  }

  .curve-svg {
    position: relative;
    top: -47px;
    right: 26%;
    width: 100%;
    text-align: center;
    z-index: 2;
    transform: rotate(-388deg);
  }
}



/* JOB APPLICATION */
@media (max-width: 992px) {
  .job-application-container {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .job-left {
    padding: 50px 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .job-left-content h2 {
    margin-bottom: 40px;
  }

  .divider,
  .job-left-content p {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .job-right {
    padding: 40px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .job-form {
    gap: 20px;
    width: 100%;
  }

  .job-form input,
  .job-form select,
  .date-field {
    width: 100%;
  }

  .job-form button {
    width: 100%;
  }
}

/* PLAN BENEFITS */


/* PLAN BENEFITS TABS - Responsive */
@media (max-width: 992px) {
  .tabs-container {
    padding: 15px;
  }

  .benefits-tabs .tab-nav-wrapper {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

  .benefits-tabs .nav-link {
    font-size: 13px;
    padding: 14px;
    margin-bottom: 0;
    border-radius: 8px;
  }

  .card-wrapper {
    flex-direction: column;
    padding: 0;
    gap: 20px;
  }

  .benefits-tabs .card {
    width: 100%;
    height: auto;
    padding: 25px;
  }

  .text-heading {
    font-size: 15px;
    line-height: 22px;
  }

  .text {
    width: 100%;
    font-size: 13px;
    line-height: 20px;
  }

  .tab-nav-wrapper button span {
    position: relative;
    left: 0;
}

}




@media (max-width: 992px) {
  .result-container {
    width: 100%;
    padding: 0 15px;
  }

  .result-card {
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }

  .results-section .row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .results-section .col-md-3,
  .results-section .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .result-text {
    margin-left: 0;
    text-align: left;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .results-section .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .result-card {
    width: 90%;
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 575.98px) {
  .results-title {
    font-size: 24px;
  }

  .result-card {
    padding: 16px;
    width: 100%;
  }

  .percent {
    font-size: 28px;
  }

  .result-heading {
    font-size: 14px;
  }

  .result-text {
    font-size: 13px;
    line-height: 1.5;
  }
}





@media (max-width: 768px) {
  /* HIDE SOCIAL ICONS ON MOBILE */
  .social-fixed-icons {
    display: none;
  }

  /* CHAT BUTTON: SMALLER AND SHIFTED */
  .chat-fixed-button {
    bottom: 64px;
    right: 15px;
    padding: 10px 12px;
    border-radius: 8px;
  }

  .chat-fixed-button a {
    font-size: 20px;
  }
}


/* FOOTER */

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 40px 20px 20px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 40px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-btn {
                width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                padding: 30px 15px 15px;
            }

            .footer-section h3 {
                font-size: 16px;
            }

            .newsletter {
                padding: 20px;
            }

            .social-links a {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }