/* ----- Global Styles ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
}

body {
    background-color: #dfdfdf;
    height: auto;
    width: auto;
    /* border: 1px solid red; */
    overflow-y: auto;
}

/* ----- Scrollbar Styles ----- */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 8px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* ----- Header ----- */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.1);
    width: 90%;
    position: relative;
    z-index: 1000;
    height: 68px;
    margin: 20px auto;
    border-radius: 12px;
}

header .left {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 80%;
}

header .left .logo {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .left ul {
    display: flex;
    gap: 10px;
}

header .left ul li {
    white-space: nowrap; /* Prevent text wrap */
    display: flex;
    align-items: center;
    position: relative;
}

header .left ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1rem;
    display: block;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .left ul li a:hover {
    color: #169931;
    transition: color 0.5s ease;
}

/* Dropdown menu styles */
header .left .menu-dropdown {
    position: relative;
}

/* Dropdown menu with better hover behavior */
header .left .dropdown-menu {
    display: block;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 240px;
    transition: opacity 0.3s ease;
    z-index: 999;
    visibility: hidden;
}

header .left .menu-dropdown:hover .dropdown-menu,
header .left .dropdown-menu:hover {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* Dropdown item styling */
header .left .dropdown-menu li a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
}

header .left .dropdown-menu li:hover a {
    color: #f1f1f1;
    background-color: #169931;
    transition: background-color 0.3s ease;
    width: 100%;
}

header .left ul li a.active {
    color: #169931;
}

header .right {
    display: flex;
    gap: 2rem;
}

header .right a {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #169931;
    border: 1px solid #169931;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

header .right a:hover {
    background-color: white;
    color: #169931;
    transition: 0.5s;
}

/* ----- Main Section ----- */

section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
    width: 90%;
    margin: 20px auto;
    /* border: 2px solid red; */
}

/* ----- Hero Section ----- */
/* Hero Carousel */
.hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
}

.hero-carousel .hero-carousel-wrapper {
    display: flex;
    transition: transform 0.75s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    gap: 10px;
}

.hero-carousel .hero-carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.hero-carousel .hero-carousel-item img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease-out;
}

.hero-carousel .hero-carousel-item:hover img {
    transform: scale(1.05);
}

.hero-carousel .arrow-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.hero-carousel .arrow-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-carousel .hero-left-arrow {
    left: 10px;
}

.hero-carousel .hero-right-arrow {
    right: 10px;
}

.hero-carousel .dot-indicators {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
    z-index: 10;
}

.hero-carousel .dot-indicators .dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-carousel .dot-indicators .dot.active {
    background-color: white;
}

.hero-section-container {
    position: relative;
    width: 100%;
}

/* Search Box */
.search-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
    width: 90%;
    max-width: 500px;
}

.search-container {
    margin: 20px auto;
    padding: 20px;
    background: #fafafaaa;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 40%;
}

.search-heading {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: black;
    margin-bottom: 5px;
}

.dropdown-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dropdown,
.searchable-dropdown input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.dropdown:focus,
.searchable-dropdown input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.searchable-dropdown {
    position: relative;
    width: 100%;
}

.options-list {
    position: absolute;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}

.option {
    padding: 12px 15px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #333;
    transition: background-color 0.2s;
}

.option:hover {
    background-color: #f5f5f5;
}

.dropdown-wrapper {
    position: relative;
}

.dropdown-wrapper::after {
    content: "▼";
    font-size: 10px;
    color: #666;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* ----- Main Content ----- */

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin: 2rem auto;
    /* background-color: rgb(126, 126, 172); */
}

/* General Styling */
.carousel-container {
    position: relative;
    /* max-width: 1000px; */
    margin: 20px auto;
    /* margin-top: 90px; */
    overflow: hidden;
    padding: 10px;
    background: #fafafaaa;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    width: 100%;
    margin: auto;
}

.section-title {
    color: black;
    font-size: 1.8rem;
    font-weight: 600;
}

.browse-all {
    font-size: 1rem;
    text-decoration: none;
    color: #383838;
    font-weight: 600;
    transition: color 0.3s ease;
}

.browse-all:hover {
    color: green;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    overflow-x: auto; /* Allow horizontal scrolling */
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-content {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease-in-out;
    margin: 4px auto;
}

.carousel-content::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 200px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.carousel-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.item-title {
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 0 0 10px 10px;
}

.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Navigation Arrows */
.arrow-button {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.arrow-button:hover {
    box-shadow: 0 4px 10px rgba(215, 30, 30, 0.3);
    background-color: #969696;
    color: #fff;
}

.left-arrow {
    left: 15px;
}

.right-arrow {
    right: 15px;
}

.tableContainer {
    width: auto;
    max-width: 1200px;
    margin: 20px auto;
    background: #fafafaaa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Top Brands Section */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.nav-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    width: 100%;
}

.browse-all {
    text-decoration: none;
    color: #169931;
    font-weight: 500;
}

/* Navigation Bar */
.top-brands-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden;
    white-space: nowrap; /* Prevent items from wrapping */
    width: 100%; /* Adjust width as needed */
    margin: 15px auto;
    height: 60px;
    padding-bottom: 5px;
}

/* ---- Scrollbar Styling ---- */
.top-brands-nav::-webkit-scrollbar {
    height: 6px;
}

.top-brands-nav::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.top-brands-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.categories {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: auto;
    flex: 1;
    justify-content: flex-start;
    padding: 5px 10px;
}

.categories::-webkit-scrollbar {
    height: 6px;
}

.categories::-webkit-scrollbar-thumb {
    background: #169931;
    border-radius: 10px;
}

.categories::-webkit-scrollbar-track {
    background: #b4b2b4;
}

.categories a {
    text-decoration: none;
    color: #555;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    transition: 0.3s;
    background: #f1f1f1;
}

.categories a:hover,
.categories a.active {
    background: #169931;
    color: white;
}

/* Table Styling */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th,
.table td {
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-weight: 400;
}

.table th {
    background: #169931;
    color: white;
    font-weight: 600;
}

tr {
    transition: all 0.3s ease;
    width: auto;
}

/* .table tr:nth-child(even) {
              background: #f9f9f9;
            } */

.table tr:hover {
    background: #f9f9f9;
}

/* Icons and Images */
.icon {
    width: 30px !important;
    cursor: pointer;
}

.table img {
    width: 70px;
    height: auto;
    border-radius: 6px;
}

/* Your Opinion Section */
.your-opinion {
    position: relative;
    width: 100%;
    /* max-width: 1000px; */
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
}

/* Full-Width Image */
.your-opinion img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
}

/* Overlay Content */
.opinion-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
}

/* Header Styling */
.opinion-head h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.opinion-head span {
    font-size: 18px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    display: block;
    margin-bottom: 15px;
}

/* Description Text */
.opinion-text p {
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Steps Container */
.opinion-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

/* Individual Step */
.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.steps span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    background: #4caf50; /* Green Background */
    color: white;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.steps p {
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

/* Connecting Line */
.line {
    width: 50px;
    height: 3px;
    background: white;
    border-radius: 5px;
    opacity: 0.8;
}

/* Brand Valuation Section */
.brand-valuation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    /* max-width: 1200px; */
    width: 100%;
    margin: 20px auto;
    padding: 40px;
    background: #fafafaaa;
    border-radius: 12px;
    /* margin-top: 30px; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Text Container */
.valuation-text {
    flex: 6;
    max-width: 1000px;
}

.valuation-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.valuation-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Valuation Points Section */
.valuation-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    margin-top: 20px;
}

.point {
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    font-weight: 500;
    width: 240px;
}

.checkmark {
    display: inline-block;
    color: black;
    background-color: white;
    border: 2px solid black;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    line-height: 14px;
    font-weight: bold;
    border-radius: 2px;
}

/* Image Container */
.valuation-img {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

.valuation-img img {
    /* max-width: 114%; */
    width: 500px;
    height: 100%;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
#footer {
    background: #1a1a1a;
    color: #fff;
    padding: 30px 0;
    width: 90%;
    margin: auto;
    border-radius: 12px 12px 0px 0px;
    /* bottom: 20px; */
    /* position: relative; */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
    align-items: center;
}

/* Footer Left - Logo & About */
.footer-container div:first-child {
    max-width: 400px;
}

.footer-container img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-container p {
    font-size: 15px;
    line-height: 1.6;
    color: #bbb;
}

/* Social Media Icons */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-icons a img {
    width: 28px;
    transition: transform 0.3s ease-in-out;
}

.footer-social-icons a:hover img {
    transform: scale(1.1);
}

/* Footer Right - Contact Info */
.footer-container div:nth-child(2) {
    max-width: 400px;
}

.footer-container h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.footer-container a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.footer-container a:hover {
    text-decoration: underline;
}

/* ---- Brand Sector Page ---- */

/* Section Container */
.section-sector .section-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Left Side - Heading */
.section-sector .side-nav-container {
    flex: 1;
    min-width: 300px;
}

.section-sector .main_heading {
    text-align: left;
}

.section-sector .consumer-heading {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.section-sector .consumer-text {
    font-size: 16px;
    color: #666;
}

/* Right Side - Search Input */
.section-sector .ranking-inp {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    min-width: 350px;
}

.section-sector .search-inp {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-sector .search-inp select {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    font-size: 14px;
    cursor: pointer;
}

.section-sector .search-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.section-sector .search-input input {
    padding: 10px;
    border: none;
    outline: none;
    width: 220px;
    font-size: 14px;
}

.section-sector .search-btn {
    background: #4caf50;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.section-sector .search-btn:hover {
    background: #388e3c;
}

/* Brand Sector Section */
.brand-sector {
    padding: 40px 20px;
    background: #f8f9fa;
}

/* Cards Container */
.brand-sector .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin: auto;
}

/* Individual Card */
.brand-sector .card {
    flex-direction: column;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    height: 200px;
    justify-content: center;
    display: flex;
}

.brand-sector .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.brand-sector .card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

/* Card Title */
.brand-sector .card-title {
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    text-align: center;
}

/* ---- Brand Spotlight Page ---- */

/* Spotlight Section */
.spotlight {
    background: #f9f9f9;
    padding: 40px 20px;
}

/* Section Heading */
.spotlight .consumer-heading {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 10px;
}

.spotlight .about-text {
    font-size: 16px;
    color: #555;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.spotlight main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin: auto;
}

/* Spotlight Head Container */
.spotlight-head {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    gap: 20px;
    margin: 0 auto;
}

/* Spotlight Image */
.spotlight-image img {
    width: 300px;
    height: auto;
    border-radius: 8px;
}

/* Spotlight Info */
.spotlight-info {
    flex-grow: 1;
}

/* Spotlight Table */
.spotlight-info table {
    width: 100%;
    border-collapse: collapse;
}

.spotlight-info td {
    padding: 8px 15px;
    font-size: 16px;
    color: #333;
}

.spotlight-info tr:nth-child(even) {
    background: #f8f8f8;
}

.spotlight-info td:first-child {
    font-weight: 600;
    color: #555;
    width: 150px;
}

.spotlight-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    width: 100%;
    margin: auto;
    gap: 20px;
}

/* Spotlight Container */
.spotlight-container {
    min-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Headings */
.spotlight-container h1 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.spotlight-container h2 {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

/* Paragraphs */
.spotlight-container p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

/* Rounded Score Boxes */
.rounded-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 15px 0;
    text-align: left;
    border: 1px solid #e0e0e0;
}

/* Score Colors */
.rounded-box h2 {
    color: #000000; /* Default Red */
}

.score {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}
.score span {
    font-weight: bold;
}

.spotlight-head {
    /* border: 1px solid black; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 200px;
    padding-top: 2rem;
}
.spotlight-head .spotlight-box {
    width: 20%;
    height: 100%;
    background-color: var(--darkred);
    border-radius: 0 1rem 1rem 0;
}
.spotlight-head .spotlight-image {
    width: 20%;
}
.spotlight-head .spotlight-image img {
    width: 100%;
    object-fit: cover;
}
.spotlight-head .spotlight-info {
    width: 50%;
    height: 100%;
    background-color: var(--darkred);
    border-radius: 1rem 0 0 1rem;
    color: var(--white);
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 1rem;
}

.spotlight-head .spotlight-info table tr td {
    font-size: small;
    padding: 5px;
}

.scores {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin: 40px auto;
}
.score-container {
    width: 300px;
    height: 100px;
    background-color: white;
    border-radius: 25px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.overall-score {
    background-color: var(--white);
    width: 50%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.grade {
    width: 60px;
    height: 60px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    margin-right: 20px;
}
.grade span {
    font-size: larger;
}

.badges {
    /* border: 1px solid red; */
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.badge-container {
    width: 420px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: black;
    box-shadow: -2px 4px 8px 2px rgba(0, 0, 0, 0.1);
    margin: 0px auto;
    border: 1px solid #aba8a8;
}
.badge-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.left-section {
    border-radius: 10px;
    height: 100%;
    width: 36%;
    padding-left: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
}
.subtitle {
    font-weight: bold;
}
.middle-section {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.middle-section .level {
    text-align: center;
}
.right-section {
    width: 24%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.right-section .badge-grade {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}
.reach .right-section .badge-grade,
.preference .right-section .badge-grade,
.money .right-section .badge-grade {
    font-weight: bold;
    font-size: small;
    text-align: center;
}

.awareness .level {
    color: red;
    border-top: 2px solid red;
    border-bottom: 2px solid red;
    font-weight: bold;
}

.awareness .right-section,
.awareness .left-section {
    background-color: red;
    color: white;
}

.reach .level {
    color: #1885c5;
    border-top: 2px solid #1885c5;
    border-bottom: 2px solid #1885c5;
    font-weight: bold;
}
.reach .right-section,
.reach .left-section {
    background-color: #1885c5;
    color: white;
}
.preference .level {
    color: #043270;
    border-top: 2px solid #043270;
    border-bottom: 2px solid #043270;
    font-weight: bold;
}
.preference .right-section,
.preference .left-section {
    background-color: #043270;
    color: white;
}
.money .level {
    color: #16803a;
    border-top: 2px solid #16803a;
    border-bottom: 2px solid #16803a;
    font-weight: bold;
}
.money .right-section,
.money .left-section {
    background-color: #16803a;
    color: white;
}
.loyality .level {
    color: #cd8e07;
    border-top: 2px solid #cd8e07;
    border-bottom: 2px solid #cd8e07;
    font-weight: bold;
}
.loyality .right-section,
.loyality .left-section {
    background-color: #cd8e07;
    color: white;
}
.brand-analysis {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 20px;
    width: 540px;
    color: black;
    margin: 30px auto;
    box-shadow: 0px 2px 8px 2px #a1a1a1;
}
.brand-analysis h2 {
    margin-bottom: 10px;
}

.scores-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px auto;
}

.circle-badge-container {
    width: 130px;
    height: 130px;
}

.badge-svg {
    width: 100%;
    height: 100%;
}

.red-circle .circle-background {
    fill: var(--darkred);
}

.inner-circle {
    fill: white;
}

.curved-text {
    fill: white;
    font-size: 16px; /* Reduce font size for alignment */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.percentage {
    font-size: 40px; /* Slightly reduce size */
    font-weight: bold;
    text-anchor: middle;
    dominant-baseline: middle; /* Center text vertically */
}

.red-circle .percentage {
    fill: var(--darkred);
}

.darkblue-circle .circle-background {
    fill: var(--darkblue);
}
.darkblue-circle .percentage {
    fill: var(--darkblue);
}

.skyblue-circle .circle-background {
    fill: var(--skyblue);
}
.skyblue-circle .percentage {
    fill: var(--skyblue);
}

.gray-circle .circle-background {
    fill: var(--darkgray);
}
.gray-circle .percentage {
    fill: var(--darkgray);
}

/* General About Brand Section */
.about-brand {
    background-color: #fafafaaa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #dfdfdf;
    border-radius: 12px;
    padding: 40px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 30px;
    transition: all 0.3s ease;
    height: auto;
}

.about-brand .about-text {
    width: 90%;
}

.about-brand h1.heading-one {
    font-size: 28px;
    margin: 0;
}

.about-brand h2.heading-two {
    font-size: 20px;
    line-height: 20px;
    color: #4caf50;
    margin-bottom: 10px;
}

.about-brand p {
    font-size: 16px;
    color: #636363;
}

.mission-vision-objectives {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.info-card {
    background-color: #ffffff;
    border-left: 5px solid #4caf50;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    margin-top: 0;
    color: #16803a;
    font-size: 18px;
}

.info-card p,
.info-card ul {
    color: #636363;
    font-size: 15px;
    margin-top: 10px;
}

.info-card ul {
    padding-left: 20px;
}

.info-card ul li {
    margin-bottom: 8px;
}

/* Our Sevices Section */
.services-section {
    margin: 20px auto;
    padding: 20px;
    background: #fafafaaa;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
}

.services-section h2 {
    font-size: 28px;
    color: #16803a;
}

.services-section p {
    /* max-width: 600px; */
    margin: 6px auto;
    color: #555;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: #f2f2f2;
    border: 1px solid #dfdfdf;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 200px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.service-card img {
    width: 60px;
    margin-bottom: 8px;
    height: auto;
}

.service-card h4 {
    font-size: 16px;
    margin: 8px auto;
    color: #333;
}

.service-card p {
    font-size: 14px;
    margin: 0 auto;
    color: #666;
}

.service-card:hover {
    background: #4caf50;
    color: white;
}

.service-card:hover h4 {
    color: white;
}

.service-card:hover p {
    color: white;
}
