:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #5c3170;
  --secondary: #558f83;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #F5F5F5;
  --dark: #0a1026;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Poppins", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}



/* ADDITIONAL CLASSES */

.pc-only {
            display: none; /* Hidden by default */
        }
        @media (min-width: 992px) {
            .pc-only {
                display: block; /* Visible on PCs (large screens and above) */
            }
        }

        /* Pricing Section Styling */
.price {
    padding: 5rem 0;
}

.section-header {
    
    margin-bottom: 3rem;
}

.section-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
}

.price-item {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 2rem;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.price-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.featured-item {
    background-color: var(--primary);
    border-radius: 0.5rem;
    color: #ffffff;
}

.featured-item .price-header,
.featured-item .price-body,
.featured-item .price-footer {
    background-color: var(--secondary);
    color: #ffffff;
}

.featured-item .price-icon {
    background-color: #ffffff;
    color: var(--secondary);
}

.price-header {
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
}

.price-icon {
    font-size: 2.5rem;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    background-color:var(--secondary);
    color: #ffffff;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.price-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: black;
}

.price-pricing h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;

}

.price-pricing h2 small {
    font-size: 1rem;
    font-weight: 400;
}


.price-body {
    padding: 1rem;
}

.price-des ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-des ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.featured-item .price-des ul li {
    color: #ffffff;
}

.price-footer {
    padding: 1.5rem;
    border-top: 1px solid #dee2e6;
}

.price-action a {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color:var(--primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.featured-item .price-action a {
    background-color: #ffffff;
    color: var(--primary);
}

.price-action a:hover {
    background-color: var(--primary);
}

.featured-item .price-action a:hover {
    background-color: #f8f9fa;
}

.price-action a i {
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .price {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .price-item {
        margin-bottom: 1.5rem;
    }

    .price-header {
        padding: 1.5rem 1rem;
    }

    .price-title h2 {
        font-size: 1.5rem;
    }

    .price-pricing h2 {
        font-size: 2rem;
    }
}

/* Ensure carousel takes full viewport height and width on mobile and apply equivalent styles for img-fluid, w-100, h-100, object-fit-cover */
@media (max-width: 767px) {
    ader-carousel .carousel-item img {
        /* Apply styles equivalent to img-fluid, w-100, h-100, object-fit-cover */
        max-width: 100%;
        height: auto;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #header-carousel .carousel-caption {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #header-carousel .carousel-caption > div {
        max-width: 100% !important;
        padding: 0 15px;
    }
    #header-carousel .carousel-caption img {
        max-width: 80%;
    }
    #header-carousel .carousel-caption h3 {
        font-size: large !important;
        margin-bottom: 1rem !important;
    }
    #header-carousel .carousel-caption .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.about-image {
    flex: 0 0 auto;
    max-width: 400px; /* Limit image width on larger screens */
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/2; /* Maintain 600x1200 aspect ratio */
    object-fit: cover; /* Ensure image covers area without distortion */
    border-radius: 8px; /* Match the rounded class */
}

.about-text {
    flex: 1;
    padding: 20px;
}

/* Media query for mobile devices (screens smaller than 768px) */
@media (max-width: 767.98px) {
    .about-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .about-image {
        max-width: 100%; /* Full width on mobile */
        text-align: center; /* Center image */
    }

    .about-image img {
        max-width: 100%;
        height: auto;
        aspect-ratio: 1/2; /* Maintain aspect ratio */
    }

    .about-text {
        padding: 15px;
        text-align: center; /* Center text for better mobile appearance */
    }

    .about-text .btn {
        margin: 0 auto; /* Center the button */
    }
}

/* Media query for very small screens (e.g., phones below 576px) */
@media (max-width: 575.98px) {
    .about-image img {
        max-width: 100%;
        height: auto;
        aspect-ratio: 1/2;
        object-fit: contain; /* Use contain to show full image on very small screens */
    }

    .container-fluid {
        padding: 10px !important; /* Reduce padding for small screens */
    }
}


/* Default styles (visible on larger screens) */
@media only screen and (max-width: 767px) {
    .quick-links, .support {
        display: none !important;
    }
}

/* Hide header buttons on mobile devices (screens smaller than 768px) */
@media only screen and (max-width: 767px) {
    .header-buttons {
        display: none !important;
    }
}   
