 * {
     margin: 0px;
     padding: 0px;
     box-sizing: border-box;
     font-family: Arial; 
 }

 body {
     background: #fff;
     font-family: Arial; 
     overflow-x: hidden;
 }

 html {
     background: #fff !important;
     height: 100%;
     font-family: Arial;
     scroll-behavior: smooth;
 }
 h2, h3 {
    font-weight: bold !important;
}
.position-relative{
    position: relative;
}
 #banner {
     background-color: #0f0f0f;
     color: white;
     padding: 7px 20px !important;
     font-family: Arial, sans-serif;
     font-size: 14px;
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 9999;
     transform: translateY(-100%);
     transition: transform 0.5s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
 }

 /* Hero Section */
 .hero {
     padding: 50px 0%;
     margin-top: 30px;
 }

 /* Hero Container (Mobile-first) */
 .hero-container {
     display: flex;
     text-align: left;
     align-items: center;
     justify-content: space-between;
     gap: 10px;
     max-width: 1200px;
     margin: 0 auto;
     flex-wrap: wrap;
 }

 /* Left Column */
 .hero-text {
     flex: 1;
     padding: 0px 20px;
     font-family: Arial;
 }

 .hero-text h1 {
     font-size: 2.4rem;
     font-weight: 600;
     line-height: 1em;
     margin-bottom: 15px;
     color: #0F0F0F;
 }

 .subheading {
     font-size: 1.4rem;
     line-height: 1.5em;
     font-weight: 300;
     color: #202020;
     margin-bottom: 20px;
 }

 .cta-button.cta-button-dark {
     display: inline-block;
     padding: 12px 24px;
     border: 1px solid #0F0F0F;
     border-radius: 999px;
     text-decoration: none;
     font-size: 1rem;
     color: #0F0F0F;
     font-weight: 500;
     text-align: center;
     width: 100%;
 }

 .offer-texties {
     font-size: 1rem;
     display: inline-block;
     margin: 0 10px;
     font-weight: 300;
     color: #202020;
 }

 .hero-button-container {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
 }

 /* Right Column */
 .hero-right {
     flex: 1;
     text-align: center;
     font-family: Arial;
 }

 #lazy-load-content {
     display: none;
 }
 
 /* Wrapper */
 .my-review-carousel-wrapper {
     position: relative;
     width: 100%;
     max-width: 440px;
     margin: 0 auto;
     padding: 0 30px;
     box-sizing: border-box;
     overflow: hidden;
 }

 /* Inner Container */
 .carousel-inner {
     padding: 20px 0;
     overflow: visible;
 }

 .carousel-wrapper {
     display: flex;
     transition: transform 0.5s ease-in-out;
     position: relative;
     z-index: 2;
 }

 .review-card {
     flex: 0 0 calc(100% - 40px);
     margin: 0 20px;
     background: #fff;
     padding: 20px;
     box-sizing: border-box;
     text-align: left;
     border-radius: 12px;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
 }

 /* Profile Picture */
 .profile-picture {
     width: 50px !important;
     height: 50px !important;
     border-radius: 50% !important;
     object-fit: cover !important;
     margin-right: 10px !important;
 }

 /* Review Header */
 .review-header {
     display: flex;
     align-items: center;
     margin-bottom: 10px;
 }

 .google-logo {
     width: 25px;
     height: auto;
     margin-left: auto;
 }

 .reviewer-name {
     font-weight: 500;
     font-size: 14px;
     color: #333;
 }

 .review-date {
     font-size: 12px;
     font-weight: 400;
     color: #aaa;
 }

 .review-stars {
     display: flex;
     margin-bottom: 10px;
 }

 .star {
     width: 20px;
     height: 20px;
 }

 .review-content {
     color: #333;
     font-weight: 400;
     font-size: 14px;
 }

 /* Arrows */
 .carousel-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     font-size: 24px;
     font-weight: 200;
     color: #ddd;
     cursor: pointer;
     user-select: none;
     opacity: 0.2;
     z-index: 1;
 }

 .left-arrow {
     left: 25px;
 }

 .right-arrow {
     right: 25px;
 }

 .carousel-arrow:hover {
     color: #ccc;
 }

 /* Progress Bar */
 .carousel-progress {
     width: 40%;
     max-width: 300px;
     margin: 5px auto;
     height: 2px;
     background: #e0e0e0;
     position: relative;
     border-radius: 2px;
     overflow: hidden;
 }

 .progress-slice {
     width: calc(100% / 3);
     height: 100%;
     background: #bbb;
     position: absolute;
     left: 0;
     transition: transform 0.3s ease-in-out;
 }

 .progress-active {
     width: calc(100% / 3);
     height: 100%;
     background: #888;
     position: absolute;
     left: 0;
     transition: transform 0.3s ease-in-out;
     pointer-events: none;
 }

 /* Rating Summary */
 .rating-summary {
     text-align: center;
     font-weight: 400;
     margin-top: 10px;
     font-size: 14px;
     color: #333;
     padding-right: 10px;
     padding-left: 10px;
 }

 .rating-summary .rating-source,
 .rating-summary .rating-score,
 .rating-summary .review-count {
     font-weight: 600;
 }
 

 #banner {
     background-color: #0f0f0f;
     color: white;
     padding: 5px 20px;
     font-family: Arial, sans-serif;
     font-size: 14px;
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 9999;
     transform: translateY(-100%);
     transition: transform 0.5s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
 }

 .blinking-dot {
     display: inline-block;
     width: 5px;
     height: 5px;
     background-color: red;
     border-radius: 50%;
     animation: smooth-blink 2.5s infinite;
 }

 @keyframes smooth-blink {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.2;
     }
 }

 /* Table Styles */
 .comparison-wrapper {
    font-family: 'Arial', sans-serif;
    padding: 0px;
    color: #0F0F0F;
    padding-bottom: 50px;
}


 .comparison-table {
     border: none;
     width: 100%;
     max-width: 600px;
     margin: 0px auto;
     border-collapse: separate;
     box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
     background-color: #fff;
     border-radius: 8px;
     overflow: hidden; 
     border-collapse: collapse;
 }

 .comparison-table th,
 .comparison-table td {
     padding: 15px 20px;
     text-align: center;
     border: none;
     font-size: 14px !important;
 }

 .comparison-table th {
     border-bottom: 2px solid #e0e0e0 !important;
 }

 .comparison-table tr:nth-child(even) {
     background-color: #f5f5f5;
 }

 .comparison-table tr:nth-child(odd) {
     background-color: #ffffff;
 }

 /* Resetting styles for the last child if needed */
 .comparison-table tr:last-child td {
     border-bottom: none !important;
 }

 .comparison-table td:first-child {
     text-align: left;
     font-weight: 400;
     color: #202020;
 }

 /* Minimalistic Icons */
 .icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 20px;
     height: 20px;
     border-radius: 50%;
     font-size: 12px;
     font-weight: bold;
     color: white;
     vertical-align: middle;
     margin-bottom: 1px;
 }

 /* Sleek Checkmark */
 .checkmark {
     background-color: #4CAF50;
     position: relative;
 }

 .checkmark::after {
     content: "";
     position: absolute;
     width: 5px;
     height: 10px;
     border: solid white;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
     margin-bottom: 2px;
 }

 /* Sleek Cross */
 .cross {
     background-color: #B22222;
     position: relative;
 }

 .cross::before,
 .cross::after {
     content: "";
     position: absolute;
     width: 12px;
     height: 2px;
     background-color: white;
     top: 50%;
     left: 50%;
 }

 .cross::before {
     transform: translate(-50%, -50%) rotate(45deg);
 }

 .cross::after {
     transform: translate(-50%, -50%) rotate(-45deg);
 }

 /* success story */
 .success-story-m-img{
    display: none;
 }
 .success-story {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     padding: 60px 20px;
     gap: 40px;
     background-color: transparent;
     background-image: linear-gradient(180deg, #F5F5F5 100%, #FFFFFF 100%);
 }

 .success-story .story-text p:first-of-type {
    margin-top: 60px;
}

 .story-text {
     flex: 1 1 400px;
     max-width: 540px;
 }

 .story-text h2 {
     font-size: 2.4rem;
     margin-bottom: 80px;
     text-align: center;
 }

 .story-text h2 .emoji {
     margin-right: 10px;
 }

 .story-text p {
     margin-bottom: 20px;
     font-size: 1.1rem;
     line-height: 1.6;
 }

 .story-text strong {
     font-weight: bold;
 }

 .cta-button.booking-btn { 
    background: #0f0f0f;
    width: max-content;
    color: #fff;
    padding: 15px 30px;
    border: 1px solid #0f0f0f;
    border-radius: 999px;
    font-size: 1rem;
    margin: auto;
    margin-top: 60px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
 }
 .cta-button.booking-btn:hover {  
     background-color: transparent;
     color: #0f0f0f; 
     border: 1px solid #0f0f0f;
 }

 .story-image {
     flex: 1 1 300px;
     max-width: 480px;
     text-align: center;
 }

 .story-image img {
     width: 100%;
     max-width: 480px;
 }

 .story-image .caption {
     margin-top: -10px;
     font-weight: bold;
     font-size: 1.5rem;
     text-align: right;
 }

 /* counter section */
 .counter-section {
     padding: 60px 20px;
     background-color: transparent;
     text-align: center;
 }

 .counter-container-wrapper {
     width: 100%;
     max-width: 1140px;
     margin: 0 auto;
 }

 .counter-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     /* gap: 40px; */
     margin: 40px 0;
 }
 .counter-container .counter{
    width: 33.33%;
    padding: 20px;
 }
 .counter h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 1.3rem;
 }

 .note {
     font-family: "Arial", Sans-serif;
     font-size: 16px;
     font-weight: 400;
     font-style: italic;
     text-decoration: none;
     line-height: 1.2em;
     letter-spacing: 0px;
     color: #424242;
 }

 /* Main container */
 .profile-pictures {
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 1px;
 }

 /* Profile pictures styling with slight overlap */
 .profile-pictures img {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     border: 3px solid #fff;
     margin-left: -11px;
 }

 /* First image should not have a negative margin */
 .profile-pictures img:first-child {
     margin-left: 0;
 }
 .endorsement {
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: Arial, sans-serif;
}

.stars {
    color: #ffcc00; /* gold color */
    font-size: 1.5rem;
}

.endorsement-text small {
    color: #555;
}

.endorsement-text strong {
    font-size: 1rem;
    color: #0f0f0f;
}
 #notification-container {
     position: fixed;
     bottom: 10px;
     left: -300px;
     background-color: rgba(0, 0, 0, 0.8);
     color: #ffffff;
     padding: 12px;
     border-radius: 5px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
     font-family: Arial, sans-serif;
     z-index: 30;
     transition: left 0.5s ease-in-out;
     max-width: 300px;
 }

 #notification-container.show {
     left: 5px;
 }

 #notification-container.hide {
     left: -400px;
 }

 #notification-container p {
     margin: 0;
 }

 #notification-text-1 {
     font-size: 12px;
     margin-bottom: 5px;
 }

 #notification-text-2 {
     font-size: 10px !important;
     opacity: 0.7;
 }

 .features-section {
     text-align: center;
     padding: 80px 25px 40px 25px;
     font-family: Arial, sans-serif;
 }

 .section-title {
     font-size: 2rem;
     margin-bottom: 40px;
 }

 .features-grid {
     display: flex;
     justify-content: center;
     gap: 15px;
     flex-wrap: wrap;
 }

 .feature-box {
     background: #F5F5F5;
     padding: 30px 20px 30px 20px;
     width: 350px; 
     text-align: center;
 }

 .feature-icon {
     width: 75px;
     margin-bottom: 20px;
 }

 .feature-box h3 {
     margin-bottom: 10px;
     font-size: 23px;
 }

 .feature-box hr {
     width: 30px;
     border: 1px solid #000;
     margin: 20px auto 20px;
 }

 .feature-box p {
     font-size: 0.95rem;
     color: #0f0f0f;
     line-height: 1.8;
 }

 /* footer */
 .site-footer {
     background-color: #0f0f0f;
     color: #fff;
     text-align: center;
     padding: 30px 5px;
     font-family: Arial, sans-serif;
     font-size: 0.9rem;
 }

 .social-icons {
     margin-bottom: 20px;
 }

 .social-icons a {
     margin: 0 5px;
     display: inline-block;
     text-decoration: none;
 }

 .social-icons i {

     font-size: 24px;
     filter: brightness(0) invert(1);
     /* make sure icons stay white */
 }

 .contact-info {
     margin-bottom: 20px;
 }

 .contact-info a {
     color: #fff;
     text-decoration: none;
     margin: 0 10px;
 }

 .contact-info a:hover {
     text-decoration: underline;
 }

 .copyright {
     font-size: 0.8rem;
     color: #ffffff;
 }

 .crm-offer {
     text-align: center;
     padding: 40px 20px;
     font-family: Arial, sans-serif;
     max-width: 100%;
 }

 .crm-offer h2 {
     font-size: 2.1rem;
     margin-bottom: 20px;
 }

 .crm-offer p {
     font-size: 1rem;
     color: #0f0f0f;
     max-width: 700px;
     margin: 10px auto;
     line-height: 1.6;
 }

 .crm-offer-image {
     margin-top: 2rem;
     height: auto;
     width: 100%;
     max-width: 1100px;
     border-radius: 20px 20px 20px 20px;
     box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.16);
 }

 /* story section */
 .story-section {
     background-color: transparent;
     background-image: linear-gradient(198deg, #F5F5F5 100%, #FFFFFF 100%);
     padding: 80px 20px;
     font-family: Arial, sans-serif;
 }

 .story-section .story-container {
     display: flex; 
     justify-content: center;
     gap: 40px;
     max-width: 1100px;
     margin: 0 auto;
     flex-wrap: wrap;
 }

 .story-section .story-image {
     flex: 1 1 300px;
     text-align: center;
 }

 .story-section .story-image img {
     width: 100%;
     max-width: 500px;
     border-radius: 15px;
 }

 .story-section .story-text {
     flex: 1 1 400px;
     color: #0f0f0f;
     font-size: 1rem;
     line-height: 1.6;
 }

 .story-section .story-text p {
     margin-bottom: 20px;
     font-size: 16px;
 }

 .story-section .story-text strong {
     font-weight: bold;
 }

 .story-section .signature {
     font-style: italic;
     text-align: center;
     margin-bottom: 0 !important;
 }
 .story-section .emoji{
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
    max-width: 100% !important;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .story-section .story-container {
         flex-direction: column;
         text-align: center;
     }

     .story-section .story-text {
         text-align: left;
     }
 }

 .faq-section {
     max-width: 700px;
     margin: 50px auto;
     font-family: Arial, sans-serif;
     text-align: center;
     padding: 20px;
 }

 .cta-button.cta-button.cta-button-bg-dark {
     background: #0f0f0f;
     width: max-content;
     color: #fff;
     padding: 15px 30px;
     border: 1px solid #0f0f0f;
     border-radius: 999px;
     font-size: 1rem;
     margin: auto;
     margin-bottom: 40px;
     cursor: pointer;
     display: block;
     text-decoration: none;
     transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
 }
 .cta-button.cta-button.cta-button-bg-dark:hover {
     background: transparent; 
     color: #0f0f0f;
     border: 1px solid #0f0f0f;
 }

 .faq-item {
     border-bottom: 1px solid #ccc;
     text-align: left;
     padding: 20px 0;
 }

 .faq-question {
    cursor: pointer;
    position: relative;
    font-size: 1rem;
    padding-left: 45px;
}

 .faq-question::after {
    content: "\ea4e"; /* Unicode value for the icon */
    font-family: 'remixicon'; /* Use Remix Icon font */
     position: absolute;
     font-size: 22px !important;
     left: 0;
     transition: transform 0.3s ease;
     vertical-align: middle;
     margin-top: -3px;
 }

 .faq-question.active::after {
     transform: rotate(-180deg);
 }
.faq-item.active{
    border-bottom: 1px solid #0f0f0f;
}
.faq-answer {
    display: none;
    color: #0F0F0F;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 45px;
    padding-right: 35px;
}

 .faq-answer p {
     margin: 0;
     font-size: 16px;
     font-weight: 400;
     font-family: 'Arial', sans-serif;
     line-height: 1.6;
 }

 @media (max-width: 600px) {
     .faq-section {
         padding: 10px;
     }

     .faq-question {
         font-size: 0.95rem;
     }

     .cta-button {
         width: 100%;
     }
 }

 .spots-section {
     background-color: #0f0f0f;
     color: #fff;
     text-align: center;
     padding: 80px 20px;
     font-family: Arial, sans-serif;
 }

 #taken-count {
    font-size: 1.9rem;
}

 .spots-taken {
     font-size: 1.2rem;
     display: block;
     margin-bottom: 10px;
 }

 .progress-bar {
     width: 300px;
     height: 6px;
     background-color: #4ea052;
     margin: 0 auto 20px;
     border-radius: 3px;
     overflow: hidden;
 }

 .progress-fill {
     height: 100%;
     background-color: #d33c3c;
     width: 0%;
     transition: width 0.3s ease-out;
 }

 .spots-info p {
     margin: 20px 0;
     font-size: 1rem;
 }

 .cta-button.spot-btn {
     background: transparent;
     color: #fff;
     border: 1px solid #fff;
     padding: 12px 30px;
     border-radius: 999px;
     font-size: 1rem;
     cursor: pointer;
     margin: auto;
     margin-bottom: 15px;
     margin-top: 50px;
     display: block;
     width: max-content;
     text-decoration: none;
     transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
 }

 .cta-button:hover {
     background: #fff;
     color: #0f0f0f;
 }

 .check-text {
     font-size: 0.9rem;
     color: #ffffff;
 }

 /* Responsive */
 @media (max-width: 400px) {
     .progress-bar {
         width: 90%;
     }
 }
 .projects-section {
    text-align: center;
    padding: 10px 10px;
    font-family: Arial, sans-serif;
}

.projects-section h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
}

.swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.swiper {
    padding-bottom: 40px; /* space for pagination */
}
.slider-container{
    max-width: 1100px;
    margin: 0 auto;
}
.iframe-container{
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: -40px;
    z-index: 999999;
}
.swiper-pagination-bullet-active{
    background: #0f0f0f !important;
}
.swiper-pagination-bullet {
    width: 6px;
    height: 6px;

}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 18px;
    color: hsla(0, 0%, 93%, .9);
}
.slider-container{
    padding: 20px;
}
.swiper-button-next{
    font-weight: 800;
    right: -5px;
    top: 46%;
}
.swiper-button-prev{
    font-weight: 800;
    left: -5px;
    top: 46%;
}
.swiper-slide img {
    width: 330px;
    height: 330px; 
}