@charset "utf-8";
/* CSS Document */

body{
	font-family: 'Roboto', sans-serif;
	background-color: #FFFFFF;
	color: #6A2983;
}

body, html {
    margin: 0;
    padding: 0;
	color: #6A2983;
}

header {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    align-items: center;
    background-color: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: auto;
    height: 53px;
    object-fit: contain;
}

/* Ad box */
.ad-box {
    width: 180px;
    height: 44px;
    background-color: #723389;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin: 10px 20px; /* Space for smaller screens */
}

.ad-box:hover {
    background-color: #6A2983; /* Changes background on hover */
    color: #F2ECF5; /* Changes text color on hover */
    transform: scale(1.05); /* Slightly enlarges the box */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adds shadow for depth */
}

.ad-content img {
    width: 20px; /* Adjust size of the logo */
    margin-left: 5px; /* Add spacing between text and image */
    vertical-align: middle; /* Align image with text */
}

.ad-box:hover img {
    filter: brightness(0) invert(1); /* Optional: Inverts the image color */
}

.ad-content {
    font-size: 16px;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
}

.ad-content img {
    margin-left: 10px;
    margin-top: 9px;
    width: 25px;
    height: 25px;
}

/* Search bar */
.search-bar {
	margin-right;40px;
    width: 100%; 
    height: 44px;
    border: 2px solid #C1A2CC;
    border-radius: 12px;
    padding: 0 10px;
	margin-bottom:10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
}

.search-input {
    border: none; 
    outline: none;
    flex-grow: 1; 
    font-size: 14px; 
    padding: 5px;
}

.search-input::placeholder {
    color: #aaa; 
}

img.ml-auto {
    width: 20px; 
    margin-left: 10px;
    cursor: pointer; 
}

.search-text {
    font-weight: 500;
    font-size: 16px;
    color: #ACACAC;
    margin-left: 10px;
}

.search-bar img {
    width: 30px;
    height: 30px;
}

/* Profile info */
.user-info {
    display: flex;
    align-items: center;
    margin-left: auto; /* Push to the right on larger screens */
}

.user-info .username {
    font-size: 16px;
    color: #723389;
    font-weight: bold;
    margin-right: 12px;
	margin-left: 20px;
}

.profile-pic {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column; /* Stack elements vertically */
        align-items: flex-start;
    }
	
	.search-bar{
		width: 100%; 
		max-width: 400px; 
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
    .user-info {
        align-items: center; /* Center items horizontally */
        justify-content: center; /* Center items vertically (if needed) */
        text-align: center; /* Ensure text aligns in the center */
		margin-left:1px;
    }

}


.bg-custom {
    background-color: #723389; /* Set background color to #723389 */
}

.text-custom {
    color: #FFF3E7; 
}


.grey-box {
    background-color: #F3F3F3; 
    padding: 20px; /* Padding for the box */
    border-radius: 10px; /* Rounded corners */
}

.menu-option {
  text-align: center;
  background-color: #F3F3F3; /* Default grey background */
  padding: 15px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.menu-option{
	color: #723389;
	font-weight: 700;
}

.menu-option a {
  text-decoration: none;
  color: #723389; 
  display: block;
}



.menu-option:hover {
  background-color: #E9D2F2; 
  color: #723389; 
}


@media (max-width: 768px) {
  .menu-option {
    font-size: 14px; 
    padding: 10px; 
  }
}

.categories-section {
    background-color: #fff;
    padding: 40px 0;
}

.categories-section h2{
	font-weight: 700;
	color:#6A2983;
}

.categories-section h5{
	font-weight: 500;
	color:#6A2983;
}
.category-item {
    margin-bottom: 20px;
}

.category-image {
    width: 100%;
    max-width: 150px; 
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 10px;
}

h5 {
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .category-image {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .category-image {
        max-width: 100px;
    }

    h5 {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .category-image {
        max-width: 80px;
    }

    h5 {
        font-size: 0.8rem;
    }
}

/* Adjust for very small screens */
@media (max-width: 480px) {
    /* Menu Bar: Stack vertically */
    .menu-bar {
        grid-template-columns: 1fr; /* Single column layout */
    }

    .menu-option {
        font-size: 12px; /* Further reduce font size */
        padding: 6px; /* Minimize padding */
    }

    /* Footer: Stack columns vertically */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        flex: none; /* Remove equal width distribution */
        margin-bottom: 20px;
    }
}


.row {
    display: flex;
    justify-content: center;
}


.second_ads {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #FFFFFF; /* Circle color */
    border: none;
	opacity:80%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.circle-btn .btn-image {
    width: 60%; /* Adjust size of the arrow inside the button */
    height: auto;
}

.left-btn {
    left: 5%; /* Position on the left side */
}

.right-btn {
    right: 5%; /* Position on the right side */
}

.circle-btn:hover {
    background-color: #E9D2F2; /* Change background color on hover */
}


.footer {
    background-color: #723389; /* Footer background color */
    color: #FFF3E7; /* Text color */
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Equal spacing between columns */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
}

.footer-column {
    flex: 1 1 20%; /* Five columns of equal width */
    text-align: center; /* Center-align column content */
    padding: 10px;
}

.footer-logo {
    max-width: 100px; /* Size of the logo in Column 1 */
    margin-bottom: 10px;
}

.footer-column p {
    margin: 8px 0; /* Spacing between items */
    font-size: 14px; /* Text size */
}

.footer-address p {
    margin: 8px 0; /* Spacing between items */
    font-size: 14px; /* Text size */
}

.footer-column p u {
    text-decoration: underline; /* Underline for specified items */
}

.social-logo {
    width: 30px; /* Logo size for social media icons */
    margin: 5px; /* Spacing between icons */
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #FFF3E7; /* Separator line */
    padding-top: 10px;
    font-size: 12px; /* Smaller text */
}

/* General Styling */
.helpdesk-title {
    text-align: center;
    color: #6A2983;
    margin-bottom: 10px;
	margin-top: 30px;
	font-weight: 700;
}

.helpdesk-subtitle {
    text-align: center;
    color: #C1A2CC;
    margin-bottom: 30px;
	font-weight: 400;
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 24px;
}

.contact-form-box,
.contact-info {
    background: #F2ECF5;
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    flex: 1;
    min-width: 300px;
}

.contact-form-box h4{
	font-weight: 700;
    color: #6A2983;
    margin-bottom: 20px;
}

.contact-info h4 {
	text-align: left;
	font-weight: 700;
    color: #6A2983;
    margin-bottom: 5px;
}

.contact-info h5 {
	font-weight: 500;
	font-size:14px;
    color: #C1A2CC;
    margin-bottom: 30px;
	text-align: left;
}

.contact-info p {
	font-weight: 500;
    color: #6A2983;
    margin-top: 7px;
	text-align: left;
	text-decoration: underline;
}

.email::after {
    content: "";
    display: block;
    width: 100%;
    height: 1.5px; 
    background-color: #C1A2CC; 
    margin-top: 30px;
}
/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

input,
select {
    padding: 10px;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
}

input:focus,
select:focus {
    border-color: #6A2983;
    outline: none;
}

.btn-submit {
    background-color: #6A2983;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #551c66;
}



/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}


.faq-section {
    padding: 40px;
    background-color: #f8f8f8;
    text-align: left;
    font-family: Arial, sans-serif;
}

.faq-header {
    margin-bottom: 30px;
}

.faq-btn {
    background-color: #FFFFFF;
    color: #6A2983;
    border: 1px medium #6A2983;
    padding: 2px 20px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
}

.faq-header h2 {
	font-weight: 700;
    font-size: 28px;
    color: #723389;
}

.faq-search {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between input box and icon */
}

.search-box {
    flex: 1; 
    padding: 10px;
    font-size: 16px;
    border: 2px solid #6A2983;
    border-radius: 36px;
    outline: none; 
    transition: all 0.3s ease;
	text-indent: 10px;
}

.search-box:focus {
    border-color: #6A2983; 
    box-shadow: 0 0 5px rgba(106, 41, 131, 0.5);
}

.search-icon {
    width: 24px;
    height: 24px;
    cursor: pointer; /* Changes cursor to pointer on hover */
}



.align-left {
    color: #6A2983; /* Change the text color */
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    padding: 20px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: left;
}

.faq-item h4 {
    color: #6A2983;
    font-size: 18px;
    margin-bottom: 10px;
	font-weight:700;
}

.faq-item p {
    font-size: 14px;
    color: #6A2983;
	font-weight:500;
}

.faq-footer img {
    margin-top: 0px; /* Add space between text and image */
}

.faq-footer {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    top: 50%; 
    left: 50%; /
    text-align: center; 
}

.faq-more {
    text-decoration: none;
    color: #723389;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    margin-top: 25px;
    align-items: center; /* Center items horizontally */
    justify-content: center;
	text-align: center; 
}

.faq-more:hover {
    text-decoration: underline;
}

.team-section {
    background-color: #FFFFFF; 
    padding: 0px 0; /* Padding for spacing */
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #6A2983; /* Dark text color */
	font-weight: 700;
	display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    top: 50%; 
    left: 50%; /
    text-align: center; 
}

.section-subtitle {
    font-size: 18px;
    color: #C1A2CC; /* Lighter text for subtitle */
    margin-top: 10px;
	font-weight: 500;
	display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    top: 50%; 
    left: 50%; /
    text-align: center; 
}

/* Row Container */
.image-row {
    display: flex;
    justify-content: space-between; /* Space out the boxes */
    gap: 20px; /* Adjust space between boxes */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin-left: 215px; /* Add margin to the left */
    margin-right: 215px; /* Add margin to the right */
}

/* Image Container */
.image-container {
	border-radius:12px;
    position: relative;
    width: 224px; /* Set to 224px */
    height: 242px; /* Set to 242px */
    margin-top: 20px; /* Add margin-top for each container */
    overflow: hidden;
    flex: 0 0 auto; /* Prevent the containers from growing or shrinking */
}

/* Background Image */
.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Overlay Box */
.overlay-box {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%); 
    background-color: rgba(255, 255, 255, 0.8); 
    padding: 10px;
    z-index: 2;
    border-radius: 12px;
}

/* Text Inside Overlay Box */
.overlay-box p {
    margin-left: 50px;
	margin-right: 50px;
	margin-bottom: 1px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.overlay-box h4 {
    margin-bottom: 5px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-row {
        margin-left: 20px;
        margin-right: 20px; /* Adjust margin for smaller screens */
    }

    .image-container {
        width: 48%; /* Adjust width for smaller screens (two per row) */
    }
}

@media (max-width: 576px) {
    .image-container {
        width: 100%; /* Stacks to one per row on very small screens */
    }
}




/* General Section Styling */
.community-reviews {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

/* Titles */
.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.sub-title {
    font-size: 1.2rem;
    color: #777;
    margin-top: 10px;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;

}

/* Review Box */
.review-box {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.user-role {
    font-size: 0.9rem;
    color: #666;
}

.review-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}


.team-section .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(224px, 1fr)); /* Uniform grid boxes */
    gap: 20px; /* Even spacing */
    justify-content: center; /* Centers grid items */
}

.community-reviews .big-box {
    max-width: 90%;
    width: 100%;
    height: auto;
    padding: 20px;
}

.community-reviews .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px;
    justify-content: center;
}


.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.review-text {
    font-size: 14px;
}

.navigation-buttons {
    position: absolute; /* Relative to .big-box */
    bottom: 20px; /* Position from the bottom */
    right: 20px; /* Position from the right edge */
    display: flex;
    gap: 10px; /* Space between buttons */
}

.big-box {
	background-color:#F2ECF5;
    position: relative; /* Parent element for absolute positioning */
    width: 100%; /* Full width of container */
    max-width: 1273px; /* Optional: Enforce maximum size */
    margin: auto; /* Center alignment */
    padding: 20px;
    border-radius: 12px;
}

.circle-btn {
    width: 30px;
    height: 30px;
}

.circle-btn img {
    width: 15px;
    height: 15px;
}


@media (max-width: 768px) {
    .team-section .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .community-reviews .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .circle-btn {
        width: 25px;
        height: 25px;
    }

    .circle-btn img {
        width: 12px;
        height: 12px;
    }

    .big-box {
        padding: 15px;
    }
}

/* For Mobile Devices */
@media (max-width: 480px) {
    .team-section .team-grid {
        grid-template-columns: 1fr;
    }

    .community-reviews .reviews-grid {
        grid-template-columns: 1fr;
    }

    .navigation-buttons {
        gap: 5px;
    }

    .circle-btn {
        width: 20px;
        height: 20px;
    }

    .circle-btn img {
        width: 10px;
        height: 10px;
    }
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.container-map {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.map-navigation {
    height: auto;
    max-height: fit-content;
    background-color: #eaeaea;
    border-radius: 12px;
    overflow: hidden; /* Ensures no overflow from the map */
}

.contact-info-about {
    display: flex;
    flex-direction: column;
    justify-content: start;
    background-color: white;
    padding: 20px;
    border-radius: 12px;
}

.contact-info-about h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: left;
}

.contact-info-about p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: left;
}

.learn-more {
    background-color: #6A2983;
    color: #F2ECF5;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.learn-more:hover {
    background-color: #F2ECF5;
    color: #6A2983;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-map {
        grid-template-columns: 1fr; /* Stack both the map and info vertically */
        gap: 15px; /* Reduce the gap between map and info */
    }

    .contact-info-about {
        padding: 15px; /* Reduce padding */
    }

    .contact-info-about h2 {
        font-size: 20px; /* Smaller font for smaller screens */
    }

    .contact-info-about p {
        font-size: 14px; /* Smaller text for better readability */
    }

    .learn-more {
        font-size: 14px; /* Smaller button text */
        padding: 8px; /* Smaller padding for button */
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 20px; /* Less padding on very small screens */
    }

    .container-map {
        grid-template-columns: 1fr; /* Ensure stacking for very small screens */
    }

    .contact-info-about {
        padding: 10px; /* Further reduced padding */
    }

    .contact-info-about h2 {
        font-size: 18px; /* Even smaller font size */
    }

    .contact-info-about p {
        font-size: 12px; /* Even smaller text */
    }

    .learn-more {
        font-size: 12px; /* Smaller button text */
        padding: 6px; /* Smaller button padding */
    }
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.text-center {
    text-align: center;
}

.main-title {
    font-size: 2rem;
    margin: 20px 0;
	color:#723389;
}

/* Alphabet Row */

.alphabet-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}
.alphabet-box-all{
    width: 70px;
    height: 30px;
    border-radius: 30px;
    background-color: #F2ECF5;
	color:#723389;
	font-weight:500;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: transform 0.3s ease;	
}
.alphabet-box {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: #F2ECF5;
	color:#723389;
	font-weight:500;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.alphabet-box-all:hover {
    transform: scale(1.1);
	background-color: #723389;
	color:#FFFFFF;
} 

.alphabet-box:hover {
    transform: scale(1.1);
	background-color: #723389;
	color:#FFFFFF
}



/* Special Promotions */
.section-title {
	color:#723389;
    font-size: 1.5rem;
    margin: 20px 0;
    text-align: left; 
}

.promotion-row, .more-sales-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
    gap: 15px;
    margin: 20px 10%; /* Adjust side margins */
}


.promotion-box, .sales-box {
    width: 100%; /* Responsive to grid */
    aspect-ratio: 1; /* Maintain square shape */
    background-color: #f3f3f3;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensure images don’t overflow */
    display: flex;
    justify-content: center;
    align-items: center;
}

.promotion-box img, .sales-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keep image aspect ratio */
    border-radius: 10px; /* Match box corners */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        margin-left: 5%; /* Reduce left margin for smaller screens */
    }

    .promotion-row, .more-sales-row {
        margin: 10px 5%; /* Adjust side margins for smaller screens */
    }
}

/* General Page Styling */
.container-whatsnew {
    margin: 20px auto;
    padding: 0 15px;
    max-width: 1200px;
}

/* Title Section */
.title-section-whatsnew h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #6A2983;
}

.title-section-whatsnew .subtitle-whatsnew {
    font-size: 1rem;
	color:#C1A2CC;;
    margin-top: 10px;
	font-weight: 500;
}

.main-highlight-whatsnew p{
	font-weight: 500;
	color:#C1A2CC;	
	margin-bottom:40px;
}

.main-highlight-whatsnew h3{
	margin-bottom:20px;
	font-weight: 700;
	color:#6A2983;	
}

/* Highlight Section */
.highlight-section-whatsnew .main-highlight-whatsnew img {
    width: 70%;
    height: auto;
    border-radius: 15px;
	
}

.secondary-highlights-whatsnew h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #6A2983;
}

.secondary-highlightscard-whatsnew {
    text-align: center;
    padding: 10px;
	margin-left: 20px;
	margin-right: 20px;
    background-color: #F2ECF5;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
	margin-bottom:40px;
}

.secondary-highlightscard-whatsnew:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.secondary-highlightscard-whatsnew img {
    width: 20%;
    height: auto;
	margin-top: 10px;
    border-radius: 10px;
}

.secondary-highlightscard-whatsnew h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
    color: #6A2983;
}

.secondary-highlightscard-whatsnew p {
    font-size: 0.9rem;
    font-weight: lighter;
    margin-top: 10px;
    color: #6A2983;
}


.secondary-item-whatsnew img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


/* Updates Section */
.updates-section-whatsnew h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #6A2983;
}

.update-card-whatsnew {
    text-align: center;
    padding: 10px;
	margin-left: 20px;
	margin-right: 20px;
    background-color: #F2ECF5;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.update-card-whatsnew:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.update-card-whatsnew img {
    width: 20%;
    height: auto;
	margin-top: 10px;
    border-radius: 10px;
}

.update-card-whatsnew h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
    color: #6A2983;
}

.update-card-whatsnew p {
    font-size: 0.9rem;
    font-weight: lighter;
    margin-top: 10px;
    color: #6A2983;
}

.update-card-whatsnew .update-description-whatsnew {
    font-size: 0.9rem;
    color: #6A2983;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {

    .highlight-section-whatsnew .row {
        flex-direction: column;
    }

    .updates-section-whatsnew .row > div {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .title-section-whatsnew h1 {
		color:#723389;
        font-size: 2rem;
    }

    .title-section-whatsnew .subtitle-whatsnew {
		color:#723389;
        font-size: 1rem;
    }

    .update-card-whatsnew h4 {
		color:#723389;
        font-size: 1rem;
    }
}