body {
    font-family: 'Montserrat' !important;
}

body.home {
    background-color: #f5f5f5;
}

footer {
    background-color: #1b0529 !important;
}
footer a { 
    transition: color 0.3s;
    color: inherit; 
} 
footer a:hover {
    color: #ff9900;
}
footer li {
    margin-top: 10px;
}

footer .footer-social {
    width: 34px !important;
    height: 34px !important;
}

section {
    margin-bottom: 0;
    padding-top: 80px;
    padding-bottom: 80px;
}

section {
    background: inherit;
    box-shadow: none;
}

html {
    scroll-behavior: smooth;
    background-color: white;
    margin-top: 0 !important;
    overflow-x: hidden;
    width: 100vw;
}

header {
    /* background-color: rgba(40, 9, 60, 0.5) !important; June version */
    height: 70px; /* Set header height to 70px */
    padding: 0; /* Remove extra padding */
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure header is on top */
    transition: background-color 0.3s;
    display: flex;
    align-items: center; /* Center items vertically */
    mix-blend-mode: normal;
}

header.solid {
    /* background-color: rgba(40, 9, 60, 1) !important; June version */
	background-color: #fff !important;
}

header .logo {
    max-width: 150px;
    width: 150px;
    min-width: 150px;
    height: auto;
    display: block;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center; /* Center items vertically */
    height: 100%; /* Ensure nav takes full height of header */
}

header nav ul li {
    display: inline;
}

header ul li a {
    color: #000000;
/* 	color: #ffffff; June version */
    text-decoration: none;
    font-size: 16px; /* Increased font size */
    font-weight: 500;
    font-family: 'Montserrat';
    margin-left: 0;
    margin-right: 0;
}

header .btn-login {
    background-color: rgba(40, 9, 60, 1); /* Same color as header with 100% opacity */
	color: #6d3cf7;
    border: 2px solid #6d3cf7;
/*     color: white;
    border: 2px solid white; June version */
    border-radius: 50px; /* Round border */
    padding: 7px 30px;
    margin-right: 10px;
    min-width: 110px;
}

.btn-login {
    background-color: transparent !important;
    color: white;
    border: 2px solid white;
    border-radius: 50px; /* Round border */
    padding: 7px 30px;
    margin-right: 10px;
}

header .btn-register {
	background-color: #6d3cf7;
    color: #ffffff;
    border: 2px solid #6d3cf7;
/*     background-color: white;
    color: rgba(40, 9, 60, 1); Same color as header
    border: none; June version */
    padding: 7px 30px;
    margin-right: 10px;
    min-width: 170px;
}

header .btn-link {
	color: #000;
/*     color: white; June version */
    text-decoration: none;
    font-size: 14px;
    border: none;
    background: none;
    padding: 0;
/*     margin-left: 10px; */
}

/* Disable hover and active states for buttons */
header .btn-link:hover,
header .btn-link:active {
    background-color: inherit;
    color: #000;
/* 	color: white; June version */
    border-color: inherit;
}

header .btn-login:hover,
header .btn-login:active {
    text-decoration: none;
    color: #6d3cf7;
/* 	color: white; June version */
}

@media (max-width: 768px) {
    .cell.custom-mobile-col {
        flex: 0 0 50%; /* Equal to col-sm-6 */
        max-width: 50%;
    }
}

#about-section {
/*     background-image: radial-gradient(circle at center,rgba(240,242,245,1) 0%,rgba(240,242,245,0) 100%); June version */
}

#share-section {
    background-color: #ffffff;
    margin-top: 0 !important;
}
#spheres-of-use {
    background-color: #f0f2f5;
}
#new-section {
    margin-bottom: 0 !important;
    width: 100%;
    background: url('./static/assets/Section_3_SVG.svg') no-repeat center / cover;
    margin-left: 0;
    margin-right: 0;
    color: white;
}

#new-section .cell {
    color: black;
}

#spheres-of-use .grid-layout, .about-section .grid-layout {
    display: grid;
    grid-template-columns: 25% 75%; /* Text takes 25%, carousel takes 75% */
    gap: 20px; /* Space between the two columns */
    align-items: center; /* Vertically align content */
}

#spheres-of-use .text-content, .about-section .text-content {
    padding: 10px;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

#spheres-of-use .carousel, .about-section .carousel {
    overflow: hidden; /* Prevent overflow issues */
}

#spheres-of-use .slick-carousel, .about-section .slick-carousel {
    display: flex; /* Ensures slides are inline-flex (Slick may handle this itself) */
}

#spheres-of-use .slide-item h4, .about-section .slide-item h4 {
    padding-top: 10px;
    font-size: 20px;
    font-weight: 200;
    color: #28093c;
}

#tariffs-section {
    background-color: rgba(40, 9, 60, 1);
}

#tariffs-section h1 {
    color: white;
    text-align: center;
}

#tariffs-section .cell {
    min-width: 23rem;
    color: #28093c;
}

#tariffs-section .cell div.d-flex {
    padding: 2rem !important;
}

#tariffs-section .cell .tariff-text-div {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#tariffs-section .cell div.tariff-text-div:last-of-type {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #000;  /* Add a solid black line */
    padding-bottom: 20px;           /* Add some spacing below the line */
    margin-bottom: 10px;  
    border-radius: 0;
}

#faq-section {
    background-color: #f0f2f5;
}

#faq-section .faq-container {
    max-width: 60rem;
    margin: 0 auto;
}

#front-page-top #top-slick.slick-carousel {
    width: 100% !important; 
    max-width: 300px !important; /* Prevents width growth */
    height: 350px; /* Matches max-height */
    max-height: 350px;
    margin-right: -30px;
    overflow: hidden;
    opacity: 1;
}

#front-page-top #top-slick .slide-item {
    text-align: start;
    padding: 15px 15px 15px 60px;
    /* background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 25%, #28093c 100%); */
    border: 1px solid #ddd;
    font-size: 16px;
    color: white;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 15px;
}

@media (max-width: 299px) {
    #front-page-top #top-slick.slick-carousel {
        max-width: 240px !important; /* Just in case for rare tiny screens */
        padding-left: 20px !important;
    }
}

#spheres-of-use #middle-slick.slick-carousel {
    display: block;
    width: 85%;
    overflow: hidden; /* Hide excess content */
    margin: 0 auto; /* Center the carousel */
}

#spheres-of-use #middle-slick .slick-track {
    display: flex;
    width: auto; /* Don't force a specific width */
}

#spheres-of-use #middle-slick .slide-item {
    padding: 10px;
    color: white;
    height: 500px; /* Set the height of the slide */
    overflow: hidden; /* Prevent the image from overflowing */
}

#spheres-of-use #middle-slick .slide-item img {
    width: 100%; /* Make the image width 100% of the parent */
    height: 70%; /* Make the image height 100% of the parent */
    object-fit: cover; /* Ensure the image covers the container while maintaining aspect ratio */
    display: block; /* Prevent any space below the image */
    border-radius: 20px;
}

#spheres-of-use #middle-slick .slide-item h4 {
    min-height: 88px;
}

@media (max-width: 768px) {
    #spheres-of-use #middle-slick .slide-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: space-between;
        height: auto;
    }

    #spheres-of-use #middle-slick .slide-item h4 {
        min-height: auto;
        max-height: none;
        overflow: visible;
        white-space: normal;
        line-height: 1.4;
        padding: 0.5rem 0;
        width: auto;
    }

    #spheres-of-use #middle-slick .slide-item a.image-anchor {
        width: 80%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #spheres-of-use #middle-slick .slide-item img {
        height: auto;
        width: auto;
    }
}

#center-slider.slick-carousel {
    display: block;
    width: 100%;
    overflow: hidden;
    margin: 0 auto; /* Center the carousel */
}

#center-slider .slick-track {
    display: flex;
    width: auto; /* Don't force a specific width */
}

#center-slider .slide-item {
    padding: 10px;
    overflow: hidden; /* Prevent the image from overflowing */
}

#center-slider .slide-item img {
    width: 100%; /* Make the image width 100% of the parent */
    object-fit: cover; /* Ensure the image covers the container while maintaining aspect ratio */
    display: block; /* Prevent any space below the image */
    border-radius: 20px;
}

/* Wordpress's class */
.wp-block-heading.new-section-heading {
    padding-top: 10rem !important;
}

.faq-answer.hidden {
    display: none;
}

.faq-answer {
    display: block;
    font-size: 17px !important;
    font: caption;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.faq-answer.visible {
    max-height: 500px;
    opacity: 1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
}

.big-icon {
    font-size: 1.5rem; /* Adjust as needed for the icon size */
    font-weight: 700;
}

.faq-question:hover {
    cursor: pointer;
}
.faq-item {
    border-bottom: 1px solid #000;
}

.h-100 {
    height: 100% !important;
}

#mvoter .bordered-columns {
    display: flex;
    margin-top: 4rem;
}

#mvoter .bordered-columns .wp-block-column {
    position: relative;
    padding: 0 10px; /* Add padding for spacing */
}

#mvoter .bordered-columns .wp-block-column:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    height: 80%; /* Adjust height as needed */
    width: 1px;
    background-color: #ccc; /* Color of the vertical line */
    top: 10%; /* Centers the line vertically */
}

#mvoter .heading-input-label-gutena {
    display: none;
}

#mvoter input.gutena-forms-field {
    color: rgb(14, 14, 14);
  border: 0px solid rgb(0, 0, 0);
  background-color: rgb(241, 244, 247);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  height: 48px;
  margin-left: 5% !important;
  width: 90%;
  min-width: 90%;
}

#mvoter .gutena-forms-field-error-msg {
    padding-left: 5%;
    margin-bottom: 0;
    margin-top: -1%;
}

#mvoter .form-div {
    flex-basis: 60%;
}

#mvoter .flex-basis-1 {
    flex-basis: -moz-available;
}

#mvoter .gutena-forms-text-field, #mvoter .gutena-forms-email-field {
    border: none;
    margin-top: 15px;
}

#mvoter .checkmark {
    background-color: transparent;
}

/* Checkbox container styling */
#mvoter .wp-block-gutena-forms .gutena-forms-field.checkbox-field .checkbox-container,
#mvoter .wp-block-gutena-forms .gutena-forms-field.optin-field .checkbox-container {
    cursor: pointer;
    display: block;
    padding-left: 25px; /* Space for the checkbox */
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Checkbox (hidden default checkbox input for styling) */
#mvoter input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom checkbox (square box) */
#mvoter .checkbox-container .checkmark {
    position: absolute;
    top: 10px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Checkmark shown when checkbox is checked */
#mvoter .checkbox-container input:checked ~ .checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}


#mvoter .checkmark::after {
    border: solid #000;
    border-width: 0 2px 2px 0;
    content: "";
    height: 8px;
    left: 6px;
    position: absolute;
    top: 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 3px;
    
}

#mvoter div.gutena-forms-submit-buttons {
    margin-top: 0 !important;
}

#mvoter .gutena-forms-contact-form {
    padding-top: 0 !important;
}

#mvoter .box-shadow {
    box-shadow: 4px 4px 15px 0px rgba(29,29,29,0.2);
}

.faq-posts {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.faq-post {
    padding: 10px 0; /* Add padding to the top and bottom of each post */
    border-bottom: 1px solid #ddd; /* Add a horizontal line between posts */
}

.faq-post:first-child {
    border-top: 1px solid #ddd;
}

.faq-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0; /* Remove default margins to avoid extra space */
    padding: 10px 0; /* Top and bottom padding for titles */
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 24px; /* Increased icon size */
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    min-width: 24px;
}

.faq-post.open .faq-icon {
    transform: rotate(45deg); /* Rotate the icon when the post is open */
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 10px;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#mvoter .child-align-end.child-d-flex {
    display: flex;
    align-items: end;
}
  
#careers .main-bg {
    background-color: #28093c;
}

#faq-page .faq-posts {
    margin-top: 4rem;
}

#faq-page .faq-post {
    padding: 10px 0; /* Add padding to the top and bottom of each post */
    border-bottom: 1px solid #ddd; /* Add a horizontal line between posts */
}

#faq-page .faq-post:first-child {
    border-top: 1px solid #ddd;
}

#faq-page .faq-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0; /* Remove default margins to avoid extra space */
    padding: 10px 0; /* Top and bottom padding for titles */
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#faq-page .faq-icon {
    font-size: 24px; /* Increased icon size */
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    min-width: 24px;
}

#faq-page .faq-post.open .faq-icon {
    transform: rotate(45deg); /* Rotate the icon when the post is open */
}

#faq-page .faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 10px;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#services-cards .card {
	border-radius: 30px;
}

.mvoter-top-div {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background-image: linear-gradient(0.125turn,rgba(43,0,206,1) 0%,rgba(86,39,166,1) 0%,rgba(29,115,184,1) 100%);
}

.mvoter-top-nested-div {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between !important;
    align-items: center;
}

.mvoter-background-white-heading {
    margin-top: 25px;
    padding: 7px 12px;
    border-width: 0px;
    border-radius: 12px;
    background-color: #ffffff;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}

.mvoter-button {
    color: white !important;
    text-decoration: none !important;
    cursor: default;
}

.mvoter-button a {
    color: white !important;
    text-decoration: none !important;
    cursor: default;
}

.mvoter-button:hover {
    color: white !important;
    text-decoration: none !important;
    cursor: default;
}

.mvoter-button:hover a {
    color: white !important;
    text-decoration: none !important;
    cursor: default;
}

.video-modal {
    display: flex; /* Keep it flex for centering */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    
    opacity: 0;
    transform: translateY(50px); /* Start slightly below */
    pointer-events: none; /* Prevent interaction when hidden */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.video-modal figure {
    display: flex; /* Keep it flex for centering */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    
    opacity: 0;
    transform: translateY(50px); /* Start slightly below */
    pointer-events: none; /* Prevent interaction when hidden */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.video-modal .wp-block-cover {
    display: flex;
    width: 80%;
    max-width: 800px;
    padding: 20px;
    background: white; /* Ensure it's visible */
    border-radius: 8px;
}

.video-modal iframe {
    width: 640px !important;
    height: 360px !important;
}

.video-modal.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.video-modal.active figure {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.video-modal .wp-block-embed {
    width: 100%;
}

.open-video-modal {
    
}

.play-button {
    z-index: 1000;
    width: 82px;
    height: 82px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    cursor: pointer;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}

.play-button:hover {
    width: 90px;
    height: 90px;
}


.pink-immediate-button button {
    font-weight: 600;
    font-size: 14px;
    background-color: #ba46a8;
    color: white;
    text-decoration: none;
}

.pink-button a {
    font-weight: 600;
    font-size: 14px;
    background-color: #ba46a8;
    color: white;
    text-decoration: none;
}

.half-width {
    width: 50%;
}

.card-img {
	height: auto;
}

.contact-section {
    padding: 4rem 1rem;
    background-color: #f3f4f6;
}
  
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
  
.contact-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
  
.contact-title {
    font-size: 2.625rem;
    font-weight: 700;
    color: #6b21a8;
    margin-bottom: 1.5rem;
}
  
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
  
.contact-field {
    text-align: left;
}
  
.contact-label {
    display: block;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
  
.contact-input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    color: #4a5568;
}
  
.full-width {
    grid-column: span 2;
}
  
.contact-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5%;
}
  
.contact-checkbox-input {
    margin-right: 0.5rem;
}
  
.contact-checkbox-label {
    color: #4a5568;
}
  
.contact-privacy-text {
    color: #718096;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
  
.contact-button {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #ec4899, #fb923c);
    color: white;
    font-weight: bold;
    padding: 1rem 1.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    text-align: center;
    transition: opacity 0.3s ease;
}
  
.contact-button:hover {
    opacity: 0.9;
}

.z-index-0 {
    z-index: 0 !important;
}
  
@media (min-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .contact-button {
      width: auto;
      margin: 0 auto;
    }

    .map-container {
        height: 287px;
    }

    .map-iframe {
        height: 337px;
        width: 586px;
    }

    #services-cards {
        display: flex !important;
    }

    #services-carousel {
        display: none !important;
    }
}

.border-radius-24 img{
    border-radius: 24px
}

.cell div {
    border-radius: 15px;
    background-color: white;
}

#new-section .cell div {
    border-radius: 20px 20px 10px 10px !important;
    position: relative;
}

#new-section .cell div::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(0.25turn, rgba(43, 0, 206, 1) 0%, rgba(186, 70, 168, 1) 50%, rgba(255, 159, 34, 1) 100%);
    border-radius: 0 0 15px 15px;
}

#tariffs-section .cell .rounded-24 {
    border-radius: 24px;
}

.centered {
    max-width: 30rem; /* Sets the maximum width for better readability */
    margin: 0 auto;   /* Centers the paragraph block horizontally */
    text-align: center; /* Centers the text inside the paragraph */
}

.fs-10 {
    font-size: 10px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-21 {
    font-size: 21px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-25 {
    font-size: 25px !important;
}

.fs-26 {
    font-size: 26px !important;
}

.fs-28 {
    font-size: 28px !important;
}

.fs-30 {
    font-size: 30px !important;
}

.fs-35 {
    font-size: 35px !important;
}

.fs-36 {
    font-size: 36px !important;
}

.fs-40 {
    font-size: 40px !important;
}

.fs-42 {
    font-size: 42px !important;
}

.fs-44 {
    font-size: 44px !important;
}

.fs-56 {
    font-size: 56px !important;
}

@media (max-width: 480px) { /* Adjust for phones */
    .fs-16 { font-size: clamp(12px, 1.5vw, 16px) !important; }
    .fs-18 { font-size: clamp(12px, 1.7vw, 18px); }
    .fs-22 { font-size: clamp(12px, 2vw, 22px); }
    .fs-24 { font-size: clamp(12px, 2.2vw, 24px); }
    .fs-25 { font-size: clamp(12.5px, 2.3vw, 25px); }
    .fs-26 { font-size: clamp(14px, 2.4vw, 26px); }
    .fs-28 { font-size: clamp(20px, 2.5vw, 28px) !important; }
    /* .fs-30 { font-size: clamp(15px, 2.6vw, 30px); } */
    .fs-35 { font-size: clamp(17.5px, 3vw, 35px); }
    .fs-36 { font-size: clamp(18px, 3.2vw, 36px); }
    .fs-40 { font-size: clamp(30px, 3.5vw, 40px) !important; }
    .fs-42 { font-size: clamp(21px, 3.7vw, 42px); }
    .fs-44 { font-size: clamp(22px, 3.8vw, 44px); }
    .fs-56 { font-size: clamp(28px, 5vw, 56px); }    
    #tariffs-section .cell {
        min-width: 16rem;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .qr-svg {
        width: 60% !important;
    }
    .phone-svg {
        width: 100% !important;
    }
    .main-heading {
        font-size: 25px !important;
        line-height: 35px !important;
    }
    footer .logo {
        width: 50%;
    }
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.lh-26-px {
    line-height: 26px !important;
}

.lh-1-2 {
    line-height: 1.2 !important;
}

.lh-1-5 {
    line-height: 1.5 !important;
}

.lh-1-2-3 {
    line-height: 1.23 !important;
}

.purple {
    color: #28093c !important;
}

.blue {
    color: #2b00ce !important;
}

.black {
    color: #000 !important;
}

.white {
    color: white !important;
}

.background-white {
    background-color: white !important;
}

.white-a a {
    color: white !important;
}

.orange {
    color: #f06847 !important;
}

.light-gray {
    background-color: #f5f5f5 !important;
}

.text-opaque {
    opacity: 0.3;
    color: white;
}

.text-end {
    text-align: end !important;
}

.wp-block-buttons.mt-0 {
    margin-top: 0px !important;
}

.wp-block-buttons.mb-0 {
    margin-bottom: 0px !important;
}

.author-details .mb-0 {
    margin-bottom: 0px !important;
}

.author-avatar {
    width: 30px; 
    height: 30px;
}

.ml-5-percent {
    margin-left: 5% !important;
}

.ml-10-px {
    margin-left: 10px !important;
}

.mr-10-px {
    margin-right: 10px !important;
}

.mt-8-px {
    margin-top: 8px !important;  
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-50-px {
    margin-top: 50px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-150-px {
    margin-top: 150px !important;
}

.mt-minus-120-px { 
    margin-top: -120px;
}

.mt-1-rem {
    margin-top: 1rem !important;
}

.wp-block-buttons.mt-1-rem {
    margin-top: 1rem !important;
}

.mt-12-rem {
    margin-top: 12rem !important;
}

.mt-default {
    margin-top: 8rem !important;
}

.mb-1-rem {
    margin-bottom: 1rem !important;
}

.wp-block-buttons.mb-1-rem {
    margin-bottom: 1rem !important;
}

.mb-3-rem {
    margin-bottom: 3rem !important;
}

.mb-4-rem {
    margin-bottom: 4rem !important;
}

.mb-5-rem {
    margin-bottom: 5rem !important;
}

.mb-10-rem {
    margin-bottom: 10rem !important;
}

.mb-100-px {
    margin-bottom: 100px !important;
}

.mt-category {
    margin-top: 10rem !important;
}

.mt-header {
    margin-top: 70px;
}

.mb-category {
    margin-bottom: 2rem;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.enterprise-tariff-div {
    padding-top: 45px;
    padding-bottom: 35px;
}

.tariff-button-padding {
    padding: 15px 70px !important;
}

.pl-5-percent {
    padding-left: 5% !important;
}

.pl-10-percent {
    padding-left: 10% !important;
}

.pt-category {
    padding-top: 10rem !important;
}

.pb-100-px {
    padding-bottom: 100px !important;;
}

.pb-category {
    padding-bottom: 5rem; 
}

.mb-header {
    margin-bottom: 70px;
}

.mobile-image {
    background-position: center; 
    height: 50vh; 
    margin: 0 auto;
}

.pt-70-px {
    padding-top: 70px !important;
}

.pt-5-rem {
    padding-top: 5rem;
}

.pt-section {
    padding-top: 5rem;
}

.heading-font-responsive {
    font-size: clamp(30px, 5vw, 52px) !important;
}

.wp-block-buttons {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.button-wp-no-decoration a {
    text-decoration: none !important;
}

.button-wp-no-decoration:hover a {
    text-decoration: none !important;
}

.no-decoration {
    text-decoration: none !important;
}

.inherit-color {
    color: inherit;;
}

.no-decoration:hover {
    text-decoration: none !important;
}

.inherit-color:hover {
    color: inherit;;
}

.align-center-first > :first-child {
    align-self: center;
}

.cell img {
    transition: transform 1.2s ease; /* Adds smooth transition */
}

.cell:hover img {
    transform: scale(1.2); /* Scales image by 10% when hovering */
}

.cell {
    min-width: 225px;
    padding-bottom: 0.5rem;
}

.categories-bg-color {
    background-color: #efefef;
}

#category-posts p {
    margin-bottom: 0px;
}

.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.custom-header .back-btn {
    position: absolute;
    left: 15px;
}
.custom-header h1 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
.content-container {
    margin-top: 80px; /* Add margin to push content below the fixed header */
}

.questionaire-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.5rem;
    padding: 16px;
}

@media (max-width: 768px) {
    .questionaire-post-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile/tablet */
    }
}
  
@media (max-width: 280px) {
    .questionaire-post-grid {
        grid-template-columns: 1fr; /* 1 column on very small screens */
    }
}

.similar-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.5rem;
    padding: 16px 0;
}

.questionaire-post-cell {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.similar-post-cell {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.questionaire-post-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.similar-post-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.questionaire-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.questionaire-post-data {
    padding: 16px 16px 16px 0;
    flex: 1; /* text area grows if needed */
}

.similar-post-data {
    padding: 16px 16px 16px 0;
    flex: 1; /* text area grows if needed */
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 16px; /* Spacing between cells */
    row-gap: 5rem;
    padding: 16px;
}

.post-cell {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.post-image {
    width: 100%;
    height: 45%; 
    overflow: hidden;
    position: relative;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire div */
}

.post-data {
    padding: 16px;
}

.post-date {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #888;
}

.child-categories {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically if needed */
    flex-wrap: wrap; /* Wrap to new row if necessary */
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 20px 0;
    gap: 5px;
    max-width: 55%;
    margin-left: auto;
    margin-right: auto;
}

.child-categories li {
    margin: 5px 5px; /* Add spacing between items */
    color: #2e064d;
    font-weight: 400;
    border: 1px solid #2e064d;
    border-radius: 40px;
    font-size: 14px;
}

.child-categories li a {
    color: #2e064d;
    padding: 6px 18px 6px !important; /* Force padding */
    border-radius: 40px;
    display: inline-block; /* Ensures padding is respected */
}

.child-categories li a.active {
    color: white;
    background-color: #2e064d;
    font-weight: bold;
}

.crop-image img {
    margin-top: -15%;
    width: 272px; /* Keep the fixed width */
    height: 400px; /* Adjust the height as needed */
    object-fit: cover; /* Ensures the image fills the area and is cropped */
    object-position: center; /* Centers the crop */
    clip-path: inset(25% 0 25% 0); /* Crops 15% from the top and bottom */
}

.gradient {
    background: linear-gradient(0.25turn, rgba(43, 0, 206, 1) 0%, rgba(186, 70, 168, 1) 50%, rgba(255, 159, 34, 1) 100%);
    -webkit-background-clip: text; /* For Safari and Chrome */
    -webkit-text-fill-color: transparent; /* Makes the text transparent to show the background */
    display: inline-block; /* Ensures the gradient applies only to the text */
}

.gradient-border {
    border-radius: 8px;
    background: linear-gradient(to bottom, rgba(43, 0, 206, 1) 0%, rgba(186, 70, 168, 1) 50%, rgba(255, 159, 34, 1) 100%);
    background-clip: padding-box;
    padding: 10px;
}

.gradient-border::after {
    position: absolute;
    top: 1px; bottom: 1px;
    left: 1px; right: 1px;
    background: white;
    content: '';
    z-index: -1;
    border-radius: 8px;
}

.btn-more {
    background-color: transparent;
	color: #6d3cf7;
    border: 2px solid #6d3cf7;
    border-radius: 50px;
    padding: 15px 40px;
    min-width: 300px;
    margin-right: 10px;
    font-weight: 600;
}

.btn-more:hover {
    color: #6d3cf7;
}

.btn-start {
    position: relative;
    background-color: transparent;
    background-image: linear-gradient(0.25turn, rgba(43, 0, 206, 1) 0%, rgba(186, 70, 168, 1) 50%, rgba(255, 159, 34, 1) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    margin-right: 10px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden; /* Prevent pseudo-element overflow */
    z-index: 1;
    transition: color 0.4s ease-in-out; /* Only text color transitions */
}

.btn-start::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(0.25turn, rgba(255, 159, 34, 1) 0%, rgba(255, 159, 34, 1) 50%, rgba(255, 159, 34, 1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Gradual appearance */
    z-index: -1; /* Place it below the button content */
    border-radius: 50px;
}

.btn-start:hover::before {
    opacity: 1; /* Fully visible on hover */
}

.btn-start:hover {
    color: white; /* Ensure text remains white */
}

.btn-start a {
    background-color: transparent;
    padding: 0 !important;
}

.btn-start a:hover {
    color:inherit;
    text-decoration: none;
}

/* remove */
.btn-register {
	background-color: #6d3cf7;
    color: #ffffff;
/*     background-color: white;
    color: rgba(40, 9, 60, 1); June version */
    border: none;
    padding: 10px 40px; /* Adjust padding for better shape */
    margin-right: 10px;
    border-radius: 50px; /* Makes button edges round */
    cursor: pointer; /* Adds pointer cursor on hover */
}

.btn-white-to-gradient a {
    position: relative; /* Required for layering */
    background-color: white;
    color: #2b00ce;
    border: none;
    padding: 10px 40px; /* Adjust padding for better shape */
    margin-right: 10px;
    border-radius: 50px; /* Makes button edges round */
    cursor: pointer; /* Adds pointer cursor on hover */
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    overflow: hidden; /* Ensures pseudo-element stays within button boundaries */
    transition: color 0.3s ease, background-color 0.3s ease; /* Transition for text and background colors */
    z-index: 1; /* Keeps the text above the pseudo-element */
}

.btn-white-to-gradient a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0.25turn, rgba(43, 0, 206, 1) 0%, rgba(186, 70, 168, 1) 50%, rgba(255, 159, 34, 1) 100%);
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease; /* Transition for opacity */
    z-index: -1; /* Ensures the gradient stays behind the text */
}

.btn-white-to-gradient a:hover {
    color: white;
}

.btn-white-to-gradient a:hover::before {
    opacity: 1; /* Show the gradient on hover */
}

.btn-purple-to-gradient a {
    position: relative; /* Required for layering */
    background-color: #28093c;;
    color: white;
    border: none;
    padding: 10px 80px; /* Adjust padding for better shape */
    margin-right: 10px;
    border-radius: 50px; /* Makes button edges round */
    cursor: pointer; /* Adds pointer cursor on hover */
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    overflow: hidden; /* Ensures pseudo-element stays within button boundaries */
    transition: color 0.3s ease, background-color 0.3s ease; /* Transition for text and background colors */
    z-index: 1; /* Keeps the text above the pseudo-element */
}

.btn-purple-to-gradient a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0.25turn, rgba(43, 0, 206, 1) 0%, rgba(186, 70, 168, 1) 50%, rgba(255, 159, 34, 1) 100%);
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease; /* Transition for opacity */
    z-index: -1; /* Ensures the gradient stays behind the text */
}

.btn-purple-to-gradient a:hover {
    color: white;
}

.btn-purple-to-gradient a:hover::before {
    opacity: 1; /* Show the gradient on hover */
}


.btn-start-white {
    position: relative; /* Required for layering */
    background-color: white;
    color: rgba(40, 9, 60, 1); /* Same color as header */
    border: none;
    padding: 10px 40px; /* Adjust padding for better shape */
    margin-right: 10px;
    border-radius: 50px; /* Makes button edges round */
    cursor: pointer; /* Adds pointer cursor on hover */
    transition: color 0.3s ease, background-color 0.3s ease;
    overflow: hidden; /* Ensures pseudo-element stays within button boundaries */
    z-index: 1; /* Keeps the button content above the pseudo-element */
}

.btn-start-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0.25turn, rgba(43, 0, 206, 1) 0%, rgba(186, 70, 168, 1) 50%, rgba(255, 159, 34, 1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1; /* Places the gradient below the button's text */
}

.btn-start-white:hover::before {
    opacity: 1;
}

.btn-start-white:hover {
    color: white !important;
    background-color: transparent; /* Allows the gradient to be visible */
}

.btn-transparent-to-orange {
    background-color: transparent !important;
    color: #2b00ce;
    border: 2px solid #2b00ce;
    border-radius: 50px; /* Round border */
    padding: 7px 30px;
    margin-right: 10px;
    transition: background-color 0.2s ease-in-out,color 0.2s ease-in-out,border-color 0.2s ease-in-out;
}

.btn-transparent-to-orange:hover {
    color: #fe9e23;
    border: 2px solid #fe9e23;
}

#price .btn-transparent-to-orange{
    padding: 12px 30px;
}

.div-btn-transparent-to-white a {
    color: #ffffff;
    background-color: transparent;
    padding: 10px 50px; /* Adjust padding for better shape */
    margin-right: 10px;
    border-radius: 50px; /* Makes button edges round */
    cursor: pointer; /* Adds pointer cursor on hover */
    line-height: 1.55;
    font-weight: 600;
    font-size: 14px;
    border-width: 1px;
    border-radius: 30px;
    background-position: center center;
    border-color: #ffffff;
    border-style: solid;
    transition: background-color 0.2s ease-in-out,color 0.2s ease-in-out,border-color 0.2s ease-in-out;
}

.div-btn-transparent-to-white a:hover {
    color: blue !important;
    background-color: white;
    text-decoration: none;
}

.btn-transparent-to-white {
    color: #ffffff;
    background-color: transparent;
    padding: 10px 50px; /* Adjust padding for better shape */
    margin-right: 10px;
    margin-bottom: 15px;
    border-radius: 50px; /* Makes button edges round */
    cursor: pointer; /* Adds pointer cursor on hover */
    line-height: 1.55;
    font-weight: 500;
    border-width: 1px;
    border-radius: 30px;
    background-position: center center;
    border-color: #ffffff;
    border-style: solid;
    transition: background-color 0.2s ease-in-out,color 0.2s ease-in-out,border-color 0.2s ease-in-out;
}

.btn-transparent-to-white:hover {
    color: orange !important;
    background-color: white;
}

.text-gradient{
    background: linear-gradient(0.25turn, rgba(43, 0, 206, 1) 0%, rgba(186, 70, 168, 1) 50%, rgba(255, 159, 34, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
}

/* Default (Small screens) */
.map-container {
    height: 273px;
    overflow: hidden;
    margin-bottom: 90px;
}

.map-iframe {
    height: 323px;
    width: 297px;
}

/* Large screens (lg: 1158x400) */
@media (min-width: 1024px) {
    .map-container {
        height: 400px;
    }

    .map-iframe {
        height: 450px;
        width: 1158px;
    }
}

.nav-link:hover {
    color: #fff;
}

/* June version */
.row-cols-sm-2 .card {
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.row-cols-sm-2 .card:hover {
    transform: scale(1.1);
}
/*  */

.main-banner {
    background-image: url('./static/assets/banner_05.png'); /* Set the banner image */
    background-size: cover; /* Cover the container while maintaining aspect ratio */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent background repetition */
}

.relative {
    position: relative;
    width: 100%;
    height: auto; /* Dynamically adjusts height */
    min-height: 400px; /* Set a minimum height for the banner */
    padding-top: 50px;
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
}

.position-relative {
    position: relative;
}

.flex-column {
    flex-direction: column;
}

.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1000; /* Ensure banner is behind other elements */
}

.banner-img {
    display: block; 
    height: 100%;
    min-width: 100%
}

.sphere-of-use-image {
    background-size: cover;
    position: absolute;
    width: 50% !important;
    height: 100%;
    right: 0;
    top: 0;
}

.sphere-of-use-purple-background {
    background-color: #28093b;
}

.phone-svg {
    width: 280px; /* 2.5 times bigger than the original 100px */
    height: auto;
}

.qr-svg {
    position: absolute;
    top: 100px; /* Adjust as needed */
    right: 90px; /* Position on the right side of the container */
    width: 200px; /* 2.5 times bigger than the original 100px */
    height: auto;
    z-index: 1000; /* Ensure QR code is on top */
}

.text-start {
    text-align: start;
}

#center-slider .slick-prev,
#center-slider .slick-next {
    background: linear-gradient(0.25turn, rgba(43,0,206,1) 0%, rgba(186,70,168,1) 50%, rgba(255,159,34,1) 100%);
    color: black;
    border: none;
    border-radius: 50%;
    outline: none;
    position: absolute;
    top: 45%;
    width: 50px;
    height: 50px;
    z-index: 1;
    transform: translateY(-50%);
}

#center-slider .slick-prev::before,
#center-slider .slick-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0.25turn, rgba(43,0,206,1) 0%, rgba(186,70,168,1) 50%, rgba(255,159,34,1) 100%);
    border-radius: 50%;
    z-index: -1;
}
#center-slider .slick-prev::after,
#center-slider .slick-next::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 46px;
    height: 46px;
    background: white;
    border-radius: 50%;
    z-index: 1;
}

#center-slider .slick-next svg,
#center-slider .slick-prev svg {
    z-index: 5;
    position: relative;
}

#center-slider .slick-prev {
    left: 10px;
}

#center-slider .slick-next {
    right: 10px;
}

#spheres-of-use .slick-prev,
#spheres-of-use .slick-next {
    background: none; /* Remove background */
    border: none; /* Remove borders */
    color: transparent; /* Make the text transparent */
    outline: none; /* Remove outline */
    font-size: 0; /* Remove any font-size */
}

/* Custom previous button */
#spheres-of-use .slick-prev {
    background: url('./static/assets/slick-prev.svg') no-repeat center center;
    background-size: contain; /* Ensure the image fits the button */
    width: 40px; /* Set the width of the button */
    height: 40px; /* Set the height of the button */
    position: absolute; /* Position buttons outside the carousel */
    left: 10px; /* Move the prev button to the left */
    top: 43%; /* Vertically center the button */
    transform: translateY(-50%); /* Adjust to center it properly */
    z-index: 1; /* Ensure the button is above other elements */
}

/* Custom next button */
#spheres-of-use .slick-next {
    background: url('./static/assets/slick-next.svg') no-repeat center center;
    background-size: contain; /* Ensure the image fits the button */
    width: 40px; /* Set the width of the button */
    height: 40px; /* Set the height of the button */
    position: absolute; /* Position buttons outside the carousel */
    right: 10px; /* Move the next button to the right */
    top: 43%; /* Vertically center the button */
    transform: translateY(-50%); /* Adjust to center it properly */
    z-index: 1; /* Ensure the button is above other elements */
}

/* Remove the text content */
#spheres-of-use .slick-prev:before,
#spheres-of-use .slick-next:before {
    content: ''; /* Remove default text */
}

#particles-js {
    padding-top: 5em;
    padding-bottom: 5em;
}

#particles-js canvas{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.main-heading{
    color: #ffffff;
    font-size: 50px;
    font-family: 'Montserrat';
    line-height: 70px;
    font-weight: 700;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}

.main-second-heading {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Montserrat';
    line-height: 30px;
    font-weight: 500;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}

.main-heading-div{
    width: 50%;
    margin-top: 100px;
    margin-bottom: 100px;
    padding-right: 50px;
}

.mh-15-rem {
    min-height: 15rem !important;
}

.mh-190 {
    min-height: 190px;
}

.min-h-90-vh {
    min-height: 90vh !important;
}

.w-auto {
    width: auto !important;
}

.w-30-px {
    width: 30px !important;
}

.h-30-px {
    height: 30px !important;
}

.h-auto {
    height: auto !important;
}

.h-12-rem {
    height: 12rem !important;
}

.h-25-rem {
    height: 25rem;
}

.h-27-rem {
    height: 27rem;
}

.h-28-rem {
    height: 28rem;
}

.small-page-margin-top {
    margin-top: 10rem;
}

.text-align-justify {
    text-align: justify !important;
}

.r-0 {
    right: 0;
}

.government-iframe {
    z-index: 1;
}

.government-iframe .wp-block-cover__inner-container {
    position: relative;
    top: 95px;
}

.sphere-of-use-iframe {
    z-index: 1;
}

.sphere-of-use-iframe .wp-block-cover__inner-container {
    position: relative;
    top: 95px;
}

.main-div{
    position: relative;
    z-index: 1; /* Ensure content appears above the background image */
    color: white; /* Set text color to contrast with the banner */
    text-align: left; /* Center-align the text */
    padding: 20px;
}

.custom-border {
    position: relative;
    padding: 10px 0px; /* Adjust padding as needed */
    padding-bottom: 30px;
}
  
.custom-border::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 10%;
    height: 4px; /* Border height */
    background-color: #2b00ce !important; /* Border color */
}

.custom-heading-border {
    position: relative;
    padding: 10px 0px; /* Adjust padding as needed */
    padding-bottom: 30px;
}

.custom-heading-border::after {
    content: "";
    position: absolute;
    bottom: 0; /* Position at the very bottom */
    left: 0;
    width: 20%;
    height: 4px; /* Border height */
    background: linear-gradient(0.25turn, rgba(43,0,206,1) 0%, rgba(186,70,168,1) 50%, rgba(255,159,34,1) 100%);
}

.w-30 {
    width: 30% !important;
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

.w-100-px {
    width: 100px;
}

.w-560-px {
    width: 560px;
}

.h-560-px {
    height: 560px;
}

.w-760-px {
    width: 760px;
}

.h-100-px {
    height: 100px;
}

.h-760-px {
    height: 760px;
}

.h-30-rem {
    height: 30rem;
}

.r-0 {
    right: 0;
}

.min-width-270 {
    min-width: 270px !important;
}

.w-360-px {
    width: 360px;
}

.mw-70 {
    max-width: 70px;
}

.mw-100-px {
    max-width: 100px;
}

.mw-47-rem {
    max-width: 47rem !important;
}

.image-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100% !important;
}

.sphere-of-use-image-mobile {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 80%;
    position: absolute;
    top: 17%;
    left: 0;
}

.iframe-overlay {
    position: relative;
    z-index: 2;
    border-radius: 25px;
    margin-top: 5px;
    margin-left: -2px;
    width: 250px;
    height: 96%;
}

.review-item {
    position: relative;
    border: 0px solid #d3d3d3;
    border-radius: 50px 50px 50px 0px;
}

.review-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 0;
    height: 0;
    border-top: 50px solid white; 
    border-right: 50px solid transparent;			
}

@media (max-width: 991px) {
    .mobile-space-between {
        justify-content: space-between !important;
    }

    .justify-content-center.mobile-space-between {
        justify-content: space-between !important;
    }

    .desktop-nav,
    .d-lg-flex {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        width: 40px;
        height: 40px;
        position: relative;
    }
    
    /* Create three lines */
    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
        content: "";
        width: 30px;
        height: 3px;
		background-color: #000;
/*         background-color: white; June version */
        position: absolute;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    /* Position top and bottom bars */
    .menu-toggle::before {
        top: 10px;  /* Move top bar upwards */
    }
    
    .menu-toggle::after {
        bottom: 10px;  /* Move bottom bar downwards */
    }
    
    /* Middle bar */
    .menu-toggle span {
		background-color: #000;
/*         background-color: white; June version */
    }
    
    /* Transform into 'X' */
    .menu-toggle.toggled span {
        opacity: 0; /* Hide the middle bar */
    }
    
    .menu-toggle.toggled::before {
        top: 20px;  /* Move to center */
        transform: rotate(45deg);
    }
    
    .menu-toggle.toggled::after {
        top: 20px;  /* Move to center */
        transform: rotate(-45deg);
    }
    

    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        margin-left: 10px; /* Add space on the left */
    }

    /* Mobile menu (hidden by default) */
    .menu {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
        overflow: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease;
        width: 100%;
		background-color: rgba(255, 255, 255, 0.9);
/*         background-color: rgba(40, 9, 60, 0.9); June version */
        position: absolute;
        top: 70px; /* Position below the header */
        left: 0;
        padding: 10px 0;
    }

    .menu.active {
        opacity: 1;
        transform: scaleY(1);
    }

    .menu ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .menu ul li {
        padding: 5px 20px;
        text-align: center;
    }

    .menu ul li a {
		color: #000;
/*         color: white; June version */
    }

    .menu .pt-header-section {
        padding-top: 5rem;
    }

    .w-login-mobile {
        width: 25%;
    }

    .w-register-mobile {
/*         width: 35%; */
    }

    #front-page-top #top-slick.slick-carousel {
        margin-right: 10px;
    }


    .mobile-justify-content-center {
        justify-content: center !important;
    }

    .sphere-of-use-image {
        position: static; /* Remove absolute positioning */
        width: 100% !important;
        height: auto;
    }

    .image-container {
        position: relative; /* Make it normal on mobile */
        top: unset;
        transform: none;
        width: 100%;
        height: 700px !important;
    }

    .iframe-overlay {
        width: 340px;
        transform: scale(0.875, 1);
        height: 630px;
    }

    .main-div {
        flex-direction: column;
        text-align: center;
    }

    .main-heading-div {
        width: 100%;
        margin-bottom: 30px;
    }

    .w-100-mobile {
        width: 100% !important;
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }

    .menu {
        display: none !important;
    }

    .iframe-overlay {
        width: 330px;
        transform: scale(0.775, 0.95);
    }
}

@media (max-width: 768px) {
    .footer-social {
        max-width: 30px; /* Smaller icons on mobile */
    }
    .social-icon {
        flex: 1 1 20%;
        text-align: center;
        padding: 4px; /* Small padding on mobile */
    }

    #services-cards {
        display: none !important;
    }

    #services-carousel {
        display: block !important;
    }

    .mobile-full-width {
        width: 100%;
    }

    .mobile-flex-column {
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    .footer-social {
        max-width: 40px; /* Slightly larger icons on desktop */
    }
    .social-icon {
        padding: 10px; /* Bigger padding on desktop */
    }
    #front-page-top #top-slick .slide-item {
        min-width: 300px !important;;
    }

    .mt-0-desktop {
        margin-top: 0 !important;
    }

    #front-page .desktop-right-border-line {
        position: relative;
    }
    
    #front-page .desktop-right-border-line::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 115%;
        right: -65%;
        height: 3px;
        background-color: gray;
        transform: translateY(-50%);
        z-index: 0;
    }
}


@media (max-width: 768px) {

    .cell.custom-mobile-col {
        flex: 0 0 50%; /* Equal to col-sm-6 */
        max-width: 50%;
    }

    #about-section h1 {
/*         font-size: 48px; Smaller font size for header
        font-weight: 500; Lighter font weight for header */
    }
    
    #about-section p {
        font-size: 14px; /* Smaller font size for paragraph */
    }
    
    /* Adjust image size for mobile screens */
    #about-section img {
/*         max-width: 80px; Smaller images */
    }

    /* Adjust font size and weight for service titles */
    #about-section .cell h2 {
        font-size: 16px; /* Smaller font size for service titles */
        font-weight: normal; /* Lighter font weight for service titles */
    }

    #about-section .p-4 {
        padding: 0.5rem !important;
    }

    #front-page-top #top-slick.slick-carousel {
        width: 100%;
        max-width: 100vh;
    }

    #front-page-top #top-slick .slick-track {
        max-width: 100% !important; /* Prevents expansion */
        overflow: hidden;
    }
    

    #spheres-of-use #middle-slick.slick-carousel {
        width: 100%;
    }

    #spheres-of-use .grid-layout {
        display: flex; /* Change to flexbox */
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center-align items */
        gap: 20px; /* Add spacing between elements */
    }

    #spheres-of-use .text-content {
        order: 1; /* Heading comes first */
        text-align: center; /* Center-align heading */
        width: 100%; /* Make sure it spans the full width */
    }

    #spheres-of-use .carousel {
        order: 2; /* Slick carousel in the middle */
        width: 100%; /* Make it responsive */
    }

    #spheres-of-use .slide-item {
        height: auto; /* Adjust height as needed */
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers all items */
        gap: 16px;
    }

    #spheres-of-use .slide-item h4 {
        text-align: center; /* Aligns text content to the left */
        width: 75%; /* Sets the heading width to 75% of the parent */
    }

    #spheres-of-use .button-container {
        order: 3; /* Button at the bottom */
        text-align: center; /* Center-align button */
    }

    #spheres-of-use .carousel img {
        width: 75%; /* Ensure the image adjusts to the container's width */
        height: auto; /* Automatically adjust height to maintain aspect ratio */
        object-fit: contain; /* Ensure the entire image fits within its container */
    }

    .carousel-and-images {
        width: 100%;
        margin-top: 20px;
    }

    .phone-svg, .qr-svg {
        margin-bottom: 10px;
    }

    .mobile-row-vertical {
        flex-direction: column;
        align-items: center;
    }

    .mobile-row-vertical :nth-child(1) {
        order: 2;
    }
    .mobile-row-vertical :nth-child(2) {
        order: 1;
    }

    .text-end {
        text-align: end !important;
    }

    .cell {
        padding-bottom: 15px;
        min-width: 175px;
    }

    .cell-row {
        margin-top: 0 !important;
    }

    .cell {
        padding-right: 5px;
    padding-left: 5px;
    }

    .contest-form-phone-input-div #phone {
        width: 100% !important;
    }

    header, header.solid {
/*         background-color: rgb(0, 0, 0) !important; June version */
    }

    #front-page .wp-block-group.is-layout-grid {
        display: flex !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }

    /* All items inside that should scroll horizontally */
    #front-page .wp-block-group.is-layout-grid .review-item {
        flex: 0 0 100%;
        scroll-snap-align: start;
        box-sizing: border-box;
    }

    #front-page .wp-block-group.is-layout-grid::-webkit-scrollbar {
        display: none;
    }

    #front-page .wp-block-group.is-layout-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    #front-page .wp-block-group__inner-container.wp-block-group-is-layout-constrained {
        display: contents;
    }

    #review-slider .slick-prev {
        left: -30px !important;
    }
    
    #review-slider .slick-next {
        right: -30px !important;
    }

    .mobile-vertical {
        flex-direction: column;
    }

        /* Target any inner WP group that was set to 50% width */
    .mobile-vertical .wp-block-group[style*="flexSize"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .mobile-text-center {
        text-align: center !important;
    }

    #front-page .mobile-text-center {
        text-align: center !important;
    }

    #front-page .mobile-center {
        align-items: center;
    }

    #front-page .mobile-ml-0 {
        margin-left: 0 !important;
    }

    #front-page .mobile-mr-0 {
        margin-right: 0 !important;
    }

    #front-page .mobile-order-1 {
        order: 1;
    }

    #front-page .mobile-order-2 {
        order: 2;
    }

    #front-page .desktop-right-border-line {
        position: relative;
    }
    
    #front-page .desktop-right-border-line::before {
        content: "";
        position: absolute;
        top: 205%;
        bottom: -130%;
        right: 55%;
        width: 3px;
        background-color: gray;
        z-index: 0;
    } 

    .wp-block-buttons {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .wp-block-buttons .wp-block-button__link {
        font-size: 1rem !important;
    }

    .form-modal {
        margin-top: 15% !important;
    }

    .custom-modal-content {
        padding: 1px 20px 20px 20px !important;
    }

    img.qr-image {
        width: 200px !important;
        height: 200px !important;
    }

    img.qr-star-behind {
        top: -60px;
        right: -110px;
        height: 200px !important;
    }

    img.qr-fire-front {
        bottom: -55px;
        left: -105px;
        height: 170px !important;
        width: auto !important;
    }


    #integration-slider .slick-prev {
        left: -30px !important;
    }

    #integration-slider .slick-next {
        right: -10px !important;
        padding: 0 !important;
    }

    #review-slider .slick-next {
        right: -10px !important;
        padding: 0 !important;
    }

    .custom-rocket-block {
        padding-top: 0 !important;
        padding-right: var(--wp--preset--spacing--40) !important;
        padding-left: var(--wp--preset--spacing--40) !important;
    }
    
    .custom-rocket-ineer-block {
        padding-right: var(--wp--preset--spacing--80) !important;
        padding-left: var(--wp--preset--spacing--80) !important;
    }

    #block-img-25 .wp-block-columns img {
        width: 25%;
        height: auto;
        margin: 0 auto;
    }

    .mobile-text-center,
    .mobile-text-center .wp-block-column,
    .mobile-text-center .wp-block-group,
    .mobile-text-center .wp-block-heading,
    .mobile-text-center p {
        text-align: center !important;
    }

    .mobile-center,
    .mobile-center .wp-block-column,
    .mobile-center .wp-block-group,
    .mobile-center .wp-block-heading,
    .mobile-center p {
        align-items: center !important;
    }

    .sphere-of-use-image-mobile {
        top: 0;
        height: 100%;
    }

    .child-img-ignore-max-width img {
        max-width: 100% !important;
    }

    .spheres-slider .slick-prev {
        left: -3px !important;
    }
    
    .spheres-slider .slick-next {
        right: -3px !important;
    }

    .mobile-mx-40-px {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }    

    .mobile-pr-0 {
        padding-right: 0px !important;
    }
}

#front-page .wp-block-group.is-layout-grid {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    overflow: visible;
    height: fit-content;
}

#front-page .wp-block-group__inner-container.is-layout-constrained {
    min-height: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

#review-slider .review-item {
    background: #fff;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

#review-slider .slick-prev,
#review-slider .slick-next {
    background: none;
    border: none;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

#review-slider .slick-prev {
    left: -60px;
}

#review-slider .slick-next {
    right: -60px;
}

#review-slider .slick-dots {
    bottom: -30px;
}

#review-slider .slick-dots li button:before {
    font-size: 12px;
    color: #9b51e0;
}

#review-slider .slick-slide {
    margin: 0 20px;
    justify-content: space-between;
    display: flex !important;
    flex-direction: column;
    height: auto !important;
}

#review-slider .slick-track {
    display: flex;
    justify-content: center;
}

/* Allow full-width and wide blocks to break out */
#front-page .alignwide {
    justify-content: space-around;
    max-width: 1200px;
}

#front-page .alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.qr-wrapper {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.qr-image {
    display: block;
    position: relative;
    z-index: 2;
    width: 225px;
    height: 225px;
}

.qr-star-behind {
    position: absolute;
    top: -74px;
    right: -100px;
    z-index: 1;
    height: 200px;
}

.qr-fire-front {
    position: absolute;
    bottom: -80px;
    left: -115px;
    z-index: 3;
    height: 200px;
}


#integration-slider .slick-prev,
#integration-slider .slick-next {
    background: none;
    border: none;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

#integration-slider .slick-prev {
    left: -60px;
}

#integration-slider .slick-next {
    right: -60px;
}

#integration .slick-dots {
    bottom: -30px;
}

#integration .slick-dots li button:before {
    font-size: 12px;
    color: #9b51e0;
}

#integration .slick-slide {
    margin: 0 20px;
}

.spheres-slider {
    overflow: hidden; /* prevents horizontal scrollbar */
}

.spheres-slider .sphere-item {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.spheres-slider .sphere-item h4 {
    font-weight: 600;
}

.spheres-slider .slick-slide {
    margin: 0 20px; /* horizontal gap */
}
  
/* compensate so track doesn't overflow */
.spheres-slider .slick-list {
    margin: 0 -20px; 
}
  
.spheres-slider .slick-prev,
.spheres-slider .slick-next {
    background: none;
    border: none;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.superqr-grid .slick-prev,
.superqr-grid .slick-next {
    background: none;
    border: none;
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: -5%;
    right: 40%;
    transform: translateY(-50%);
    z-index: 1;
    transform: rotate(90deg);
}

.spheres-slider .slick-prev {
    left: -60px;
}

.spheres-slider .slick-next {
    right: -100px;
}

.custom-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);

    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.custom-modal.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Modal content */
.custom-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.custom-modal.active .custom-modal-content {
    transform: translateY(0);
}

/* Close button */
.custom-modal-close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.custom-modal-close:hover {
    color: red;
}

.form-modal {
    margin-top: 5%;
}

#default-page.container .alignfull {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: 100vw;
}

#default-page .justify-content-stretch {
    display: flex;
    align-items: stretch; /* columns match tallest in that row */
}

#front-page .justify-content-stretch {
    display: flex;
    align-items: stretch; /* columns match tallest in that row */
}

/* Make cards fill the column height */
#default-page .justify-content-stretch > .wp-block-group {
    flex: 1; /* equal width */
    display: flex;
}

#default-page .justify-content-stretch > .wp-block-group > .wp-block-group {
    flex: 1; /* make the white card stretch */
    display: flex;
}


@media (max-width: 767.98px) {
    #price .slick-slide-inner {
      display: flex !important;
      flex-direction: row !important;
      align-items: flex-end !important;
    }
  
    #price .slick-slide-inner > div {
      flex: 1;
    }
  
    #price .slick-slide-inner > div:first-child {
      margin-top: auto; /* pushes content to bottom */
      margin-bottom: 0 !important;
    }
}
  
#price {
    padding-top: 1px;
}
#price .slider div {
    text-align: center;
    width: 100%;
}

#price .static-column {
    min-width: 250px;
    position: sticky;
    left: 0;
    z-index: 10; /* Ensure it stays on top */
    font-size: 16px !important;
    font-weight: 500 !important;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
    align-self: flex-end;
}

@media (max-width: 768px) {
    #price .static-column {
        min-width: 150px;
        align-self: center;
    }
    #price .static-column .row, #price .slider .row {
        font-size: 14px !important;
    }

    #price .pricing-table-container {
        padding-right: 0px;
    }

    #price .mobile-mh-10-rem {
        min-height: 10rem !important;
    }

    /* .mobile-mt-9-rem {
        margin-top: 9rem !important;
    } */

    #price .slick-prev, #price .slick-next {
        top: 95px !important;
    }

    #price .slider .row {
        padding-right: 0 !important;
    }
    
    #price .btn-transparent-to-orange {
        margin-right: 0 !important;
    }

    #price .btn-start {
        margin-right: 0 !important;
    }
}

/* Flex alignment to ensure consistent height */
#price .static-column .row,
#price .slider .row {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 2.5rem;
    white-space: nowrap;
}

/* Allow text wrapping in the first column */
#price .static-column .row {
    white-space: normal !important; /* Allow text to break into multiple lines */
    overflow-wrap: break-word !important; /* Ensures long words break properly */
    word-break: break-word !important; /* Add this for additional browser support */
    align-items: center !important;
    padding-left: 15px;
}


/* If you prefer grid over flex */
#price .static-column,
#price .slider {
    display: grid;
    grid-template-rows: repeat(auto-fill, minmax(3rem, auto)); /* Ensures rows grow with content */
    gap: 0; /* Ensures no unwanted extra spacing */
}

#price .static-column .row,
#price .slider .row {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Adds "..." if text overflows */
}

#price .static-column .row,
#price .slider .row {
    min-height: 3.5rem; /* Ensures a baseline height */
    height: 3.5rem;
    line-height: 1.15;
    align-items: center;
    padding-right: 0.5rem;
}

#price .row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* Ensure equal column heights for parent container */
#price .pricing-table-container {
    display: flex;
    align-items: stretch;
    background-color: transparent;
    padding-left: 0 !important;
}

#price .slider {
    overflow-x: hidden; /* Enable horizontal scrolling */
    display: flex;
    gap: 10px; /* Optional: spacing between slider items */
    font-size: 16px !important;
    font-weight: 500 !important;
}

#price .slick-list {
padding-left: 0 !important;
margin-left: 0 !important;
height: fit-content !important;
}

#price .slick-slide {
    height: fit-content !important;
}

#price .slick-slider {
    border-radius: 0 0 24px 0;
}

#price .slick-prev, #price .slick-next {
    background-color: #8e44ad;
    color: #fff;
    border: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    opacity: 1 !important; /* Ensure visibility */
    display: block !important; /* Ensure always displayed */
    z-index: 10; /* Higher than most elements */
}

#price .slick-prev:focus, #price .slick-next:focus {
    background-color: #6c3483; /* Change color on focus for clarity */
    outline: none;
}

#price .slick-prev[aria-hidden="true"],#price .slick-next[aria-hidden="true"] {
    opacity: 0.5;
    pointer-events: none;
}

#price .slick-next:focus, #price .slick-next:hover, #price .slick-prev:focus, #price .slick-prev:hover {
    color: #fff; /* Ensure text color stays */
    background-color: #6c3483; /* Hover state */
    outline: none;
}

#price .slick-prev {
    top: 120px;
    left: 5px;
    background-size: contain; /* Ensure the image fits the button */
    width: 30px; /* Set the width of the button */
    height: 30px; /* Set the height of the button */
    transform: translateY(-50%); /* Adjust to center it properly */
    border-radius: 30px;
}

#price .slick-prev::before {
content: '←';
display: none;
}

#price .slick-next {
    top: 120px;
    right: 5px;
    width: 30px; /* Set the width of the button */
    height: 30px; /* Set the height of the button */
    transform: translateY(-50%); /* Adjust to center it properly */
    transform: translateY(-50%); /* Adjust to center it properly */
    border-radius: 30px;
}

#price .slick-next::before {
content: '←';
display: none;
}

#price .pink-bg-even div:nth-child(even) {
    background-color: #f7ebff;
    border: solid white;
}

#price .pink-bg-odd div:nth-child(odd) {
    background-color: #f7ebff;
    border: solid white;
}

#price .white-bg-even div:nth-child(even) {
    background-color: #fff;
}

#price .white-bg-odd div:nth-child(odd) {
    background-color: #fff;
}

#price .white-bg-first div:first-child{
    background-color: #fff;
}

#price .border-purple {
    border-top: 2px solid #1D053F !important; 
    border-right: 2px solid #1D053F !important;
    border-left: 2px solid #1D053F !important;
    border-bottom: none !important;
    border-radius: 24px 24px 0 0;
}

.hide-mobile {
    display: none;
}

.hide-desktop {
    display: block;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: block !important;
    }

    .hide-desktop {
        display: none !important;
    }
}

@media (max-width: 480px) {
    #price .fs-28 {
        font-size: clamp(20px, 2.5vw, 28px) !important;
    }

    #price .tariff-button-padding {
        padding: 15px 50px !important;
    }


    #price .tariff-white-button-padding {
        padding: 15px 20px !important;
    }

    #price .static-column .row {
        align-items: start !important;
        justify-content: center !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;

        text-align: left !important;
    }
}

#price .static-column .row {
        align-items: start !important;
        justify-content: center !important;
        text-align: left !important;
        flex-direction: column;
}

.child-img-ignore-max-width img {
    max-width: none;
}

.background-unset {
    background-color: unset !important;
}


.site-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

.search-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #6d3cf7;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-toggle-btn i {
    font-size: 17px; /* icon size */
    line-height: 1;
    width: 40px;
}

.search-toggle-btn:hover {
    background-color: #5a2cd6;
}

.search-toggle-btn:focus {
    outline: none;
}

.search-input {
    flex: 0 0 auto;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
}

.search-input.d-none {
    display: none;
}

.child-category-item.active {
    position: relative;
    font-weight: 600;
}

.child-category-item.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px; /* place below text */
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, rgba(43, 0, 206, 1) 0%, rgba(186, 70, 168, 1) 50%, rgba(255, 159, 34, 1) 100%);
}

.pt-category {
    padding-top: 10rem !important;
}

.pb-category {
    padding-bottom: 2rem !important;
}

.category-questionaire {
    background-color: #f5f5f5;
}

.child-categories-wrapper {
    width: 100%;
    background: transparent !important;
}

.child-categories-row {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: #fff;
    border-radius: 50px;
    align-items: center;

    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.child-category-item {
    flex: 0 0 auto; /* keep items from shrinking */
    padding: 0.5rem 1rem;
    border-radius: 6px;
    white-space: nowrap;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background 0.2s;
    max-width: 200px;
    white-space: initial;
    align-content: center;
    width: min-content;
    text-align: center;
}

.child-category-item:hover {
    color: #6d3cf7;
    text-decoration: none;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
            -moz-user-select: none; /* Old versions of Firefox */
            -ms-user-select: none; /* Internet Explorer/Edge */
                user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

.child-categories-row::-webkit-scrollbar {
    height: 4px;
}

.child-categories-row::-webkit-scrollbar-track {
    background: #e4e7eb;
    border-radius: 6px;
}

.child-categories-row::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: gray;
}

@-moz-document url-prefix() {
    .child-categories-row {
        scrollbar-width: thin;
    }
}

.child-categories-row::-webkit-scrollbar-thumb:hover {
    opacity: 0.9;
}

.child-categories-row::-webkit-scrollbar-button:start:increment {
    width: 25%;
    display: block;
}

.child-categories-row::-webkit-scrollbar-button:end:increment {
    width: 25%;
    display: block;
}

.load-more-wrapper {
    text-align: center;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none !important;
}

.image-div {
    position: relative;
    border-radius: 50px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#toggle-image {
    border-radius: 50px;
}

.laptop-frame {
    position: relative;
    display: inline-block;
}
  
#toggle-image {
    width: 100%;
    border-radius: 50px;
    display: block;
}
  
.laptop-screen {
    position: absolute;
    top: 14%;
    left: 18%;
    width: 64%;
    height: 255px;
    border: none;
    border-radius: 8px;
}

.mobile-screen {
    position: absolute;
    top: 5%;
    left: 12%;
    width: 76%;
    height: 500px;
    border: none;
    border-radius: 20px;
}

.mobile-only.mobile-frame {
    position: relative;
    display: inline-block;
  }
  
.mobile-only .mobile-img {
    width: 100%;
    display: block;
    border-radius: 30px;
}
  
.mobile-only .mobile-iframe {
    position: absolute;
    top: 4%;
    left: 12%;
    width: 76%;
    height: 93%;
    border: none;
    border-radius: 24px;
}
  
.image-toggle-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
}

.toggle-btn {
    padding: 8px 14px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.2s ease;
}

.pc-btn {
    background: #f0f0f0;
    color: #6d3cf7;
    border: none;
}

.pc-btn.active {
    background: #6d3cf7;
    color: #fff;
}

.mobile-btn {
    background: #f0f0f0;
    color: #6d3cf7;
    border: none;
}

.mobile-btn.active {
    background: #6d3cf7;
    color: #fff;
}

.mobile-frame {
    object-fit: contain !important;
    height: 550px;
}

.w-40 {
    width: 40%;
}

.w-60 {
    width: 60%;
}

.w-60 img {
    display: block;
    object-fit: cover;
}

.gap-30 {
    gap: 30px;
}

@media (max-width: 768px) {
    .child-categories-row {
        padding: 1rem;
        margin: 2rem -2rem 2rem 0;
    }

    .btn-more.w-100 {
        width: min-content !important;
        white-space: nowrap;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .content-wrapper {
        flex-direction: column !important;
    }

    .w-40, .w-60 {
        width: 100% !important;
    }

    .similar-post-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .mobile-img {
        border-radius: 25px;
        width: 100%;
    }

    .post-content {
        margin-left: 30px;
        margin-right: 30px;
    }

    .image-div{
        padding: 0;
    }
}

.additional-shadow {
    text-shadow: 0 0 1px currentColor;
}

.small-image {
    width: 50px;
    height: 50px;
}

.superqr-grid {
    display: grid;
    grid-template-columns: repeat(22, 1fr); /* 4 columns */
    grid-auto-rows: 30px; /* base row height */
    gap: 20px;
    margin: 40px 0;
    padding-top: 0;
    padding-bottom: 0;
}

.superqr-grid .card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 5px 15px 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-size: 15px;
    line-height: 1.5;
    overflow: hidden;
    display: flex;
    flex-direction:row;
    gap: 16px;
    font-style: normal;
    font-weight: 500;
}

  /* Example custom sizes */
.superqr-grid .card1 { grid-column: span 8; grid-row: span 2; }
.superqr-grid .card2 { grid-column: span 8; grid-row: span 3; }
.superqr-grid .card3 { grid-column: span 6; grid-row: span 4; }
.superqr-grid .card4 { grid-column: span 8; grid-row: span 3; }
.superqr-grid .card5 { grid-column: span 8; grid-row: span 3; }
.superqr-grid .card6 { grid-column: span 6; grid-row: span 4; }
.superqr-grid .card7 { grid-column: span 8; grid-row: span 3; }
.superqr-grid .card8 { grid-column: span 8; grid-row: span 2; }
.superqr-grid .card9 { grid-column: span 10; grid-row: span 3; }
.superqr-grid .card10 { grid-column: span 6; grid-row: span 3; }
.superqr-grid .card11 { grid-column: span 6; grid-row: span 3; }
.superqr-grid .card12 { grid-column: span 8; grid-row: span 3; }
.superqr-grid .card13 { grid-column: span 6; grid-row: span 3; }
.superqr-grid .card14 { grid-column: span 8; grid-row: span 3; }
.superqr-grid .card15 { grid-column: span 11; grid-row: span 2; }
.superqr-grid .card16 { grid-column: span 11; grid-row: span 2; }

.no-wrap {
    white-space: hidden;
}

/* Mobile fallback */
@media (max-width: 768px) {
    .superqr-grid-wrapper {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .superqr-grid .slick-slide {
        display: flex !important;
        align-items: stretch;
      }
      
      .superqr-grid .card {
        flex: 1 1 auto;
        height: 100%; /* force card to match equal height */
      }
      
    .superqr-grid { display: block; }
    .superqr-grid .card { width: auto; }

    .mobile-iframe-width {
        width: 100%;
    }
}  