
/* Featured Product Section */
.featured-product {
    padding: 20px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    font-size: 2.5rem;
    color: #333;
}

.product-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adds spacing between items */
    justify-content: center;
}

.product-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures all items have the same height */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    flex: 1; /* Ensures the image container takes up remaining space */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-action {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-action {
    opacity: 1;
}

.product-action a {
    display: inline-block;
    margin: 0 5px;
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.product-action a:hover {
    background: #ff6b6b;
    color: #fff;
}

.product-title {
    padding: 15px;
    text-align: center;
    background: #f9f9f9;
}

.product-title a {
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #ff6b6b;
}

.ratting {
    color: #ffc107;
    margin-top: 5px;
}

.product-price {
    padding: 15px;
    text-align: center;
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.product-price h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.product-price .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6b6b;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.product-price .btn:hover {
    background: #ff4c4c;
}















/*--------------------------------------------------*/
.product-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-action {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.product-action a {
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease;
}

.product-action a:hover {
    background: #333;
    color: white;
}

.product-content {
    padding: 15px;
    text-align: center;
}

.product-title a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.product-title a:hover {
    color: #007bff;
}

.ratting {
    color: #ffc107;
    margin: 5px 0;
}

.product-price h3 {
    font-size: 22px;
    color: #333;
    margin: 10px 0;
}

.product-price .btn {
    background: #007bff;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.product-price .btn:hover {
    background: #0056b3;
}

.product-description {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/*---------------------*/
.sub-menu {
    padding-left: 20px;
    list-style-type: disc;
}

.sub-menu li {
    margin: 5px 0;
}

.sub-menu a {
    color: #333;
    text-decoration: none;
}

.sub-menu a:hover {
    color: #007bff;
}

/*sidebar*/

/* General Styling */
.sidebar-widget {
    font-family: Arial, sans-serif;
    color: #333;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
}

.title i {
    margin-right: 10px;
}

.feature-section {
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 24px;
    color: #0ea5a2;
    margin-bottom: 10px;
    display: block;
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/*----------------------------------------------*/
/* Custom Tabs Navigation */
.custom-tabs {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.custom-tabs .nav-item {
    margin: 0 5px;
}

.custom-tabs .nav-link {
    color: #333;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link.active {
    background: #d4d4d4;
    color: #fff;
}

.custom-tabs .nav-link:hover {
    background: #007bff;
    color: #fff;
}

/* Custom Tabs Content */
.custom-tabs-content {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.custom-tabs-content h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #007bff;
}

.custom-tabs-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.custom-tabs-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.custom-tabs-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

/* Reviews Section */
.reviews-submitted {
    margin-bottom: 20px;
}

.reviews-submitted .reviewer {
    font-weight: bold;
    color: #333;
}

.reviews-submitted .reviewer span {
    color: #777;
    font-size: 14px;
}

.reviews-submitted .ratting {
    color: #ffc107;
    margin: 10px 0;
}

.reviews-submitted p {
    font-size: 16px;
    color: #555;
}

.reviews-submit h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #007bff;
}

.reviews-submit .ratting {
    color: #ffc107;
    margin-bottom: 15px;
}

.reviews-submit .form input,
.reviews-submit .form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.reviews-submit .form button {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reviews-submit .form button:hover {
    background: #0056b3;
}

/*---------------------------------------------------*/
.contact-us-style {
    background-color: #f7f7f7;
    padding: 40px 20px;
    font-family: 'Roboto', sans-serif;
}

.contact-us-style h2, .contact-us-style h4 {
    color: #007BFF;
    font-weight: bold;
}

.contact-us-style p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.contact-us-style ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
}

.contact-us-style .btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.contact-us-style .btn:hover {
    background-color: #0056b3;
}

.contact-us-style .form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    margin-bottom: 15px;
}

.contact-us-style .form-control:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.contact-us-style .captcha-img {
    display: block;
    margin-bottom: 10px;
    border-radius: 4px;
}


.contact-us-style .locations_section h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.contact-us-style .locations_section .location_box {
    text-align: center;
    margin-bottom: 20px;
}

.contact-us-style .location_box .image_box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.contact-us-style .location_box .image_box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.contact-us-style .location_box .location_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.contact-us-style .location_box .image_box:hover .location_overlay {
    opacity: 1;
}

.contact-us-style .link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.contact-us-style .link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/*---------------------------------------------*/
/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 2rem;
}

/* Section Styles */
.section-content {
    padding: 1rem 0;
}

.section-content.bg-light {
    background-color: #f8f9fa;
}

.section-content.bg-dark {
    background-color: #2c3e50;
    color: #fff;
}

.section-content.bg-dark .section-title,
.section-content.bg-dark .section-subtitle {
    color: #fff;
}

/* Image Styles */
.section-image {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* List Styles */

.feature-list li {
    background-color: #fff;
    border: 1px solid #e9ecef;
    padding: 1rem;
    font-size: 1rem;
    color: #333;
}

/* Button Styles */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* Responsive Grid */
.grid-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }
}


/* Custom CSS Classes */
.resource-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.resource-table th,
.resource-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.resource-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.resource-table a {
    color: #007bff;
    text-decoration: none;
}

.resource-table a:hover {
    text-decoration: underline;
}

.section-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.download-link {
    display: block;
    margin: 5px 0;
}

.urgent {
    color: #dc3545;
    font-weight: bold;
}

.optional {
    color: #6c757d;
    font-weight: bold;
}



  .product-price .plan-name {
    font-size: 1.2rem; /* Adjust as needed */
  }
  .product-price .plan-price {
    font-size: 1rem; /* Adjust as needed */
  }


  /* Resize the LHDN logo */
.img-resize {
    width: 128px; /* Match the width to the Font Awesome icon */
    height: 128px; /* Match the height to the Font Awesome icon */
    object-fit: contain; /* Ensure the image scales properly */
}