/* General Body Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #374151; /* Default text color: gray-700 */
}

/* Custom Color Classes */
.bg-custom-green {
    background-color: #A4D5C6;
}

.text-custom-green {
    color: #059669; /* Darker green for text on white: green-600 */
}

.btn-green {
    background-color: #059669; /* green-600 */
}

.bg-custom-dark {
    background-color: #111827; /* gray-900 */
}

/* Footer Background Image */
.footer-bg {
    background-image: url('https://images.unsplash.com/photo-1588239003322-650185433169?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Reusable Card Component Style */
.section-card {
    background-color: #f9fafb; /* gray-50 */
    border: 1px solid #e5e7eb; /* gray-200 */
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Styles for Scroll-Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fixed-size-img {
    width: 600px;
    height: 400px;
    object-fit: cover;
}

/* Sectors Diagram Styles */
.sectors-container {
    position: relative;
    width: 100%;
    max-width: 750px; /* More compact container */
    height: 400px; /* Reduced height */
    margin: auto;
    display: none; /* Hidden by default, shown on md+ screens */
    padding: 0.5rem; /* Reduced padding */
}

/* Show the diagram on medium screens and up */
@media (min-width: 768px) {
    .sectors-container {
        display: block;
    }
}

.sectors-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px; /* Slightly larger diameter */
    height: 280px;
    border: 10px solid #7a91a0; /* Updated color and thickness */
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.sector-item {
    position: absolute;
    width: 280px;
    text-align: left;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin: 0.25rem;
}

.sector-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background-color: white;
    border: 3px solid #dbeafe; /* Keep light border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #647e90; /* Updated color */
}

/* Sector text color */
.sector-item h4 {
    color: #647e90;
    font-size: 1.2rem; /* 18px */
    font-weight: 600;
    margin-bottom: 0.25rem;
    margin-top: 0.25rem;
    padding-top: 0;
}
.sector-item p {
    color: #647e90;
    font-size: 0.875rem; /* 14px */
    margin-bottom: 0.5rem;
    line-height: 1.5;
    padding-bottom: 0;
}

/* Mobile sectors styling */
#sectors .grid.md\\:hidden h4 {
    color: #647e90;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 0.25rem;
}

#sectors .grid.md\\:hidden p {
    color: #647e90;
    margin-bottom: 1.25rem;
    padding-bottom: 0.25rem;
}

/* Sectors section paragraph override */
#sectors p {
    color: #647e90;
}

/* Compact spacing for diagram */
.sectors-container {
    margin-bottom: 1rem;
}

/* Positioning the sector text items like in the reference image */
.item-1 { /* Top-Left */
    top: -80px;
    left: -320px;
}

.item-2 { /* Top-Right */
    top: -80px;
    right: -320px;
}

.item-3 { /* Bottom-Left */
    bottom: -80px;
    left: -320px;
}

.item-4 { /* Bottom-Right */
    bottom: -80px;
    right: -320px;
}

/* Position icons on the circle using calculated positions */
/* Radius = 140px, Offset = 140 * sin(45) = ~99px */
.icon-1 { /* Top-Left on circle */
    top: calc(50% - 99px);
    left: calc(50% - 99px);
    transform: translate(-50%, -50%);
}
.icon-2 { /* Top-Right on circle */
    top: calc(50% - 99px);
    left: calc(50% + 99px);
    transform: translate(-50%, -50%);
}
.icon-3 { /* Bottom-Left on circle */
    top: calc(50% + 99px);
    left: calc(50% - 99px);
    transform: translate(-50%, -50%);
}
.icon-4 { /* Bottom-Right on circle */
    top: calc(50% + 99px);
    left: calc(50% + 99px);
    transform: translate(-50%, -50%);
}