/* ############################### General ################################# */

/* Color Palette */
:root {
    /* Text colors */
    --text-color: #262626;
    --muted-color: #777;
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --nav-link-color: #333;
    --nav-link-hover-color: #5a9f51;

    /* Border colors */
    --border-light1: #e1e1e1;
    --border-light2: rgba(0, 0, 0, 0.252);

    /* Background colors */
    --bg-light1: #fff;
    --bg-light2: #f8f8f8;
    --bg-light3: #f0f0f0;

    --navbar-box-shadow: #cfcfcfa3;
    --navbar-border-bottom: #d7d7d7;

    --dropdown-menu-item-hover: #f2f2f2;

    --sidebar-toggler-hover-bg: white;
    --sidebar-toggler-hover-color: rgb(2, 172, 61);

    --card-border: #e1e1e1;
    --card-box-shadow: #cccccc;

}

.darkmode {
    /* Text colors */
    --text-color: #e0e0e0;
    /* Lighter text for dark backgrounds */
    --muted-color: #999;
    /* Slightly lighter muted color */
    --primary-color: #ecc500;
    /* Adjusted for visibility */
    --secondary-color: #adb5bd;
    /* Softer secondary color */
    --nav-link-color: #e0e0e0;
    --nav-link-hover-color: #5a9f51;
    /* Lighter nav links */

    /* Border colors */
    --border-light1: #444;
    /* Darker border */
    --border-light2: rgba(255, 255, 255, 0.487);
    /* Light overlay border */

    /* Background colors */
    --bg-light1: #121212;
    /* Main background for dark mode */
    --bg-light2: #1c1c1c;
    /* Secondary background */
    --bg-light3: #232323;
    /* Tertiary background */

    --navbar-box-shadow: #545454a3;
    --navbar-border-bottom: #545454a3;

    --dropdown-menu-item-hover: #2d2d2d;

    --sidebar-toggler-hover-bg: #4c4c4c;
    --sidebar-toggler-hover-color: rgb(0, 255, 89);

    --card-border: #333333;
    --card-box-shadow: #5a5a5a;
}

/* Body */
body {
    background-color: var(--bg-light2);
    /* Apply general background color */
    color: var(--text-color);
    /* Default text color */
    font-family: 'Roboto', sans-serif;
    /* Global font for the site */
    line-height: 1.6;
    /* Slightly increased line height for readability */
    margin: 0;
    padding: 0;
}

/* Headers */
h1,
h2,
h3,
h4 {
    font-family: 'Roboto', sans-serif;
    /* Ensure headers use the same font */
    font-weight: 600;
    color: var(--text-color);
    /* Dark text for headers */
}

/* Paragraph Text */
p {
    font-size: 1rem;
    color: var(--muted-color);
    /* Slightly muted text */
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--text-color);
    /* Darker color on hover */
    text-decoration: none;
}

/* Input Fields */
input,
textarea {
    font-size: 1rem;
    padding: 10px;
    border: 1px solid var(--border-light1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Default padding for larger screens (desktops) */
.container1 {
    padding: 12px 30px;
    background-color: var(--bg-light2);
}

.container2 {
    padding: 12px 30px;
    background-color: var(--bg-light1);
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {

    .container1,
    .container2 {
        padding: 12px 25px;
    }
}

/* Small screens (portrait tablets and below) */
@media (max-width: 768px) {

    .container1,
    .container2 {
        padding: 12px 20px;
    }
}

/* Extra Small screens (mobile devices in landscape mode) */
@media (max-width: 600px) {

    .container1,
    .container2 {
        padding: 12px 18px;
    }
}

/* Very Small screens (mobile devices in portrait mode) */
@media (max-width: 480px) {

    .container1,
    .container2 {
        padding: 12px 15px;
    }
}

/* Ultra Small screens (small mobile phones) */
@media (max-width: 320px) {

    .container1,
    .container2 {
        padding: 10px 10px;
    }
}

/* ############################### Breakers ################################# */

/* Breaker: Zig-Zag Shape connecting the sections */
.breaker11 {
    width: 100%;
    height: 30px;
    /* Height of the breaker */
    position: relative;
    background-color: var(--bg-light2);
    /* No solid background */
}

/* Reverse Zig-Zag pattern (3 peaks and valleys) */
.breaker11::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    /* Match the background color of the next section */
    clip-path: polygon(0% 100%, 25% 0%, 50% 100%, 75% 0%, 100% 100%);
    /* Creates a reversed zig-zag pattern with valleys first, 3 points */
}

.breaker12 {
    width: 100%;
    height: 50px;
    /* Height of the arrow */
    position: relative;
    background-color: var(--bg-light1);
}

.breaker12::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    /* Match the next section background */
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%, 0% 0%);
    /* Creates a downward-pointing arrow shape */
}

.breaker13 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker13::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%, 50% 0%);
    /* Creates an upward-pointing arrow shape */
}


.breaker14 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker14::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
    /* Creates a diagonal cut effect */
}

.breaker15 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light1);
    /* Background color for the main section */
}

.breaker15::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    /* Color for the diagonal shape */
    clip-path: polygon(0% 0%, 100% 100%, 100% 0%, 0% 0%);
    z-index: 1;
}

.breaker16 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker16::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: polygon(25% 0, 75% 0, 100% 100%, 0% 100%);
    /* Creates a staircase pattern */
}

.breaker17 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker17::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: polygon(25% 100%, 75% 100%, 100% 0, 0 0);
    /* Creates a staircase pattern */
}

.breaker18 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light1);
}

/* https: //css-generators.com/wavy-shapes/ */
.breaker18::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    --mask:
        radial-gradient(34.99px at 50% calc(100% - 48px), #000 99%, #ff000000 101%) calc(50% - 60px) 0/120px 100%,
        radial-gradient(34.99px at 50% calc(100% + 18px), #0000 99%, #000 101%) 50% calc(100% - 30px)/120px 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}

.breaker19 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker19::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: ellipse(53% 100% at 50% 0%);
}

.breaker110 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker110::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: ellipse(53% 100% at 50% 100%);
}

.breaker111 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker111::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: polygon(100% 100%, 77% 89%, 64% 60%, 23% 77%, 0% 0, 0% 100%);
}

.breaker112 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker112::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: polygon(0 100%, 23% 89%, 36% 60%, 77% 77%, 100% 0, 100% 100%);
}

.breaker113 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker113::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: polygon(0 100%, 0 0, 15% 67%, 35% 55%, 40% 35%, 50% 0, 60% 35%, 65% 55%, 85% 67%, 100% 0, 100% 100%);
}

.breaker114 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker114::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: polygon(0 0%, 0 100%, 15% 33%, 35% 45%, 40% 65%, 50% 100%, 60% 65%, 65% 45%, 85% 33%, 100% 100%, 100% 0%);
}


/* Breaker: Zig-Zag Shape connecting the sections */
.breaker21 {
    width: 100%;
    height: 30px;
    /* Height of the breaker */
    position: relative;
    background-color: var(--bg-light2);
    /* No solid background */
}

/* Reversed Zig-Zag pattern (3 peaks first) */
.breaker21::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    /* Match the background color of the next section */
    clip-path: polygon(0% 0%, 25% 100%, 50% 0%, 75% 100%, 100% 0%);
    /* Creates a zig-zag pattern with peaks first */
}

.breaker22 {
    width: 100%;
    height: 50px;
    /* Height of the arrow */
    position: relative;
    background-color: var(--bg-light2);
}

.breaker22::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    /* Match the next section background */
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%, 0% 0%);
    /* Creates a downward-pointing arrow shape */
}

.breaker23 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker23::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%, 50% 0%);
    /* Creates an upward-pointing arrow shape */
}

.breaker24 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker24::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
    /* Creates a diagonal cut effect */
}

.breaker25 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light2);
    /* Background color for the main section */
}

.breaker25::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    /* Color for the diagonal shape */
    clip-path: polygon(0% 0%, 100% 100%, 100% 0%, 0% 0%);
    z-index: 1;
}

.breaker26 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker26::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: polygon(25% 0, 75% 0, 100% 100%, 0% 100%);
    /* Creates a staircase pattern */
}

.breaker27 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker27::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: polygon(25% 100%, 75% 100%, 100% 0, 0 0);
    /* Creates a staircase pattern */
}

.breaker28 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker28::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    --mask:
        radial-gradient(34.99px at 50% calc(100% - 48px), #000 99%, #ff000000 101%) calc(50% - 60px) 0/120px 100%,
        radial-gradient(34.99px at 50% calc(100% + 18px), #0000 99%, #000 101%) 50% calc(100% - 30px)/120px 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}

.breaker29 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker29::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: ellipse(53% 100% at 50% 0%);
}

.breaker210 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker210::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: ellipse(53% 100% at 50% 100%);
}

.breaker211 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker211::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: polygon(100% 100%, 77% 89%, 64% 60%, 23% 77%, 0% 0, 0% 100%);
}

.breaker212 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker212::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: polygon(0 100%, 23% 89%, 36% 60%, 77% 77%, 100% 0, 100% 100%);
}

.breaker213 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker213::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: polygon(0 100%, 0 0, 15% 67%, 35% 55%, 40% 35%, 50% 0, 60% 35%, 65% 55%, 85% 67%, 100% 0, 100% 100%);
}

.breaker214 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker214::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: polygon(0 0%, 0 100%, 15% 33%, 35% 45%, 40% 65%, 50% 100%, 60% 65%, 65% 45%, 85% 33%, 100% 100%, 100% 0%);
}

/* Breaker: Zig-Zag Shape connecting the sections */
.breaker31 {
    width: 100%;
    height: 60px;
    /* Height of the breaker */
    position: relative;
    background-color: var(--bg-light2);
    /* No solid background */
}

/* Reverse Zig-Zag pattern (3 peaks and valleys) */
.breaker31::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    /* Match the background color of the next section */
    clip-path: polygon(0% 100%, 25% 0%, 50% 100%, 75% 0%, 100% 100%);
    /* Creates a reversed zig-zag pattern with valleys first, 3 points */
}

.breaker32 {
    width: 100%;
    height: 50px;
    /* Height of the arrow */
    position: relative;
    background-color: var(--bg-light3);
}

.breaker32::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    /* Match the next section background */
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%, 0% 0%);
    /* Creates a downward-pointing arrow shape */
}

.breaker33 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker33::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%, 50% 0%);
    /* Creates an upward-pointing arrow shape */
}


.breaker34 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker34::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
    /* Creates a diagonal cut effect */
}

.breaker35 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light3);
    /* Background color for the main section */
}

.breaker35::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    /* Color for the diagonal shape */
    clip-path: polygon(0% 0%, 100% 100%, 100% 0%, 0% 0%);
    z-index: 1;
}

.breaker36 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker36::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: polygon(25% 0, 75% 0, 100% 100%, 0% 100%);
    /* Creates a staircase pattern */
}

.breaker37 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light3);
}

.breaker37::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: polygon(25% 100%, 75% 100%, 100% 0, 0 0);
    /* Creates a staircase pattern */
}

.breaker38 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light3);
}

.breaker38::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    --mask:
        radial-gradient(34.99px at 50% calc(100% - 48px), #000 99%, #ff000000 101%) calc(50% - 60px) 0/120px 100%,
        radial-gradient(34.99px at 50% calc(100% + 18px), #0000 99%, #000 101%) 50% calc(100% - 30px)/120px 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}

.breaker39 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light3);
}

.breaker39::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: ellipse(53% 100% at 50% 0%);
}

.breaker310 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker310::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: ellipse(53% 100% at 50% 100%);
}

.breaker311 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker311::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: polygon(100% 100%, 77% 89%, 64% 60%, 23% 77%, 0% 0, 0% 100%);
}

.breaker312 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker312::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: polygon(0 100%, 23% 89%, 36% 60%, 77% 77%, 100% 0, 100% 100%);
}

.breaker313 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light2);
}

.breaker313::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: polygon(0 100%, 0 0, 15% 67%, 35% 55%, 40% 35%, 50% 0, 60% 35%, 65% 55%, 85% 67%, 100% 0, 100% 100%);
}

.breaker314 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light3);
}

.breaker314::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light2);
    clip-path: polygon(0 0%, 0 100%, 15% 33%, 35% 45%, 40% 65%, 50% 100%, 60% 65%, 65% 45%, 85% 33%, 100% 100%, 100% 0%);
}

/* Breaker: Zig-Zag Shape connecting the sections */
.breaker41 {
    width: 100%;
    height: 60px;
    /* Height of the breaker */
    position: relative;
    background-color: var(--bg-light2);
    /* No solid background */
}

/* Reverse Zig-Zag pattern (3 peaks and valleys) */
.breaker41::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    /* Match the background color of the next section */
    clip-path: polygon(0% 100%, 25% 0%, 50% 100%, 75% 0%, 100% 100%);
    /* Creates a reversed zig-zag pattern with valleys first, 3 points */
}

.breaker42 {
    width: 100%;
    height: 50px;
    /* Height of the arrow */
    position: relative;
    background-color: var(--bg-light3);
}

.breaker42::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    /* Match the next section background */
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%, 0% 0%);
    /* Creates a downward-pointing arrow shape */
}

.breaker43 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker43::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%, 50% 0%);
    /* Creates an upward-pointing arrow shape */
}

.breaker44 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker44::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);
    /* Creates a diagonal cut effect */
}

.breaker45 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light3);
    /* Background color for the main section */
}

.breaker45::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    /* Color for the diagonal shape */
    clip-path: polygon(0% 0%, 100% 100%, 100% 0%, 0% 0%);
    z-index: 1;
}

.breaker46 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker46::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: polygon(25% 0, 75% 0, 100% 100%, 0% 100%);
    /* Creates a staircase pattern */
}

.breaker47 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light3);
}

.breaker47::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: polygon(25% 100%, 75% 100%, 100% 0, 0 0);
    /* Creates a staircase pattern */
}

.breaker48 {
    width: 100%;
    height: 50px;
    position: relative;
    background-color: var(--bg-light3);
}

.breaker48::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    --mask:
        radial-gradient(34.99px at 50% calc(100% - 48px), #000 99%, #ff000000 101%) calc(50% - 60px) 0/120px 100%,
        radial-gradient(34.99px at 50% calc(100% + 18px), #0000 99%, #000 101%) 50% calc(100% - 30px)/120px 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}

.breaker49 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light3);
}

.breaker49::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: ellipse(53% 100% at 50% 0%);
}

.breaker410 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker410::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: ellipse(53% 100% at 50% 100%);
}

.breaker411 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker411::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: polygon(100% 100%, 77% 89%, 64% 60%, 23% 77%, 0% 0, 0% 100%);
}

.breaker412 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker412::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: polygon(0 100%, 23% 89%, 36% 60%, 77% 77%, 100% 0, 100% 100%);
}

.breaker413 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light1);
}

.breaker413::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light3);
    clip-path: polygon(0 100%, 0 0, 15% 67%, 35% 55%, 40% 35%, 50% 0, 60% 35%, 65% 55%, 85% 67%, 100% 0, 100% 100%);
}

.breaker414 {
    width: 100%;
    height: 60px;
    position: relative;
    background-color: var(--bg-light3);
}

.breaker414::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light1);
    clip-path: polygon(0 0%, 0 100%, 15% 33%, 35% 45%, 40% 65%, 50% 100%, 60% 65%, 65% 45%, 85% 33%, 100% 100%, 100% 0%);
}


/* Extra Small screens (mobile devices in landscape mode) */
@media (max-width: 600px) {

    .breaker11,
    .breaker21 {
        height: 20px;
    }

    .breaker31,
    .breaker41 {
        height: 30px;
    }
}

/* Very Small screens (mobile devices in portrait mode) */
@media (max-width: 480px) {

    .breaker11,
    .breaker21 {
        height: 20px;
    }

    .breaker31,
    .breaker41 {
        height: 30px;
    }
}

/* ############################### Bootstrap Overwrite #################################
*/

.icon-box,
.card {
    border: 1px solid var(--card-border);
    box-shadow: 0px 0px 15px var(--card-box-shadow) !important;
    transition: transform 0.3s ease;
    background: var(--bg-light1);
    /* Smooth transition for the transform property */
}

.icon-box:hover,
.card:hover {
    transform: scale(1.04);
    /* Zoom in by 10% on hover */
}

.card .card-title {
    color: var(--text-color);
}

.modal-content {
    background-color: var(--bg-light2) !important;
}

.modal-content .modal-header {
    background-color: var(--bg-light2) !important;
}

.list-group .list-group-item {
    background: var(--bg-light1);
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 20px;
    margin-bottom: 4px;
    border: 1px solid var(--card-border);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    /* Adding smooth transitions */
}

.list-group .list-group-item:hover {
    background-color: var(--bg-light2);
    /* Light background color on hover */
    transform: scale(1.03);
    /* Slight zoom effect on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Adding a subtle shadow for a lift effect */
}

.img-fluid {
    transition: box-shadow 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 0 0 transparent;
}

.img-fluid:hover {
    box-shadow: 0 4px 15px var(--border-light2);
    transform: scale(1.01);
}

form .form-check-label {
    margin-top: 6px;
}

form input:not([type="checkbox"]),
form select,
form textarea {
    background: var(--bg-light1) !important;
    color: var(--text-color) !important;
    border: 1px solid var(--border-light1) !important;
}

form input::placeholder,
form textarea::placeholder {
    color: var(--muted-color) !important;
}

.table {
    border: 1px solid var(--border-light1);
}

.table>:not(caption)>*>* {
    --bs-table-bg: var(--bg-light1);
    --bs-table-color: var(--text-color);
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-color-type: var(--text-color);
}

.nav-link:hover {
    color: var(--nav-link-hover-color) !important;
}

/* Dropdown menu styling */
.dropdown-menu {
    background-color: var(--bg-light1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}


.dropdown-menu .dropdown-item {
    color: var(--nav-link-color);
    padding: 0.75rem 1.25rem;
    transition: background-color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--dropdown-menu-item-hover);
}

.dropdown-menu .dropdown-item i,
.dropdown-menu .dropdown-item span {
    margin-right: 4px;
}

.breadcrumb-item {
    color: var(--text-color);
}

.breadcrumb-item.active {
    color: var(--muted-color);
}

.breadcrumb-item.active:before {
    color: var(--muted-color) !important;
}

/* ############################### Navbar #################################
*/

/* Navbar Style */
.navbar {
    background-color: var(--bg-light3);
    /* Subtle border at the bottom */
    padding: 0.2rem 1rem;
    box-shadow: 0px 2px 10px var(--navbar-box-shadow);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--navbar-border-bottom);
    /* Smooth transition */
}

.navbar-light .navbar-brand {
    font-weight: bold;
    color: var(--nav-link-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-light .navbar-brand img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color);
    padding: 0.5rem 1rem;
    font-size: 16px;
    text-transform: capitalize;
    text-align: center;
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Active Navigation Link */
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: bold;
}

/* Profile Image and Dropdown */
.navbar-light .navbar-nav .nav-item img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

#theme-wrapper {
    position: fixed;
    display: flex;
    top: 3px;
    right: 12%;
    border-right: 3px solid var(--border-light1);
}

#loginButton {
    margin-top: 3px;
}

/* Enhanced Login Button Design */
#loginButton button {
    padding: 5px 20px;
    color: white;
    background-color: rgb(0, 113, 15);
    border: none;
    border-radius: 7px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#loginButton button:hover {
    background-color: rgb(0, 159, 21);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

#loginButton button:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 159, 21, 0.6);
}

/* Google Login Button */
.login {
    padding: 4px 25px;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    width: 80%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.login.google {
    background-color: #db4437;
    color: white;
}

.login.microsoft {
    background-color: #01cfd6;
    color: white;
}

/* Hover state for Google Login */
.login:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.login.google:hover {
    background-color: #c1351d;
    color: white;
    border-color: #b23e1e;
}

.login.microsoft:hover {
    background-color: #00acb1;
    color: white;
    border-color: #b23e1e;
}

/* Focus state for Google Login */
.login:focus {
    outline: none;
    border-color: #ff7f50;
    /* Light orange focus border */
    box-shadow: 0 0 0 4px rgba(219, 68, 55, 0.5);
    /* Soft red Google focus glow */
}

/* Icon inside Google Login button */
.login i {
    margin-right: 12px;
    font-size: 20px;
}

/* Theme Toggle Button */
#theme-toggle {
    font-size: 20px;
    color: var(--nav-link-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

#theme-toggle:hover {
    color: #007bff;
}

/* Additional Navbar Styles */
.navbar-nav .nav-item .nav-link {
    font-size: 16px;
}

@media (max-width: 991px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }

    .navbar-toggler {
        border: 1px solid var(--border-light2);
        padding: 2px 2px;
        font-size: 1.2rem;
    }

    .navbar-toggler-icon path {
        stroke: var(--nav-link-color);
    }

    .navbar-toggler:hover {
        background-color: var(--sidebar-toggler-hover-bg);
    }

    #loginButton button {
        width: 60%;
    }

    #loginButton {
        margin-left: 30%;
        margin-bottom: 10px;
    }

    .login {
        width: 60%;
        margin-left: 0;
    }

    /* Dropdown menu styling */
    .navbar-light .navbar-nav .dropdown-menu {
        width: 40%;
        margin-left: 30%;
    }
}

@media (max-width: 540px) {

    /* Dropdown menu styling */
    .navbar-light .navbar-nav .dropdown-menu {
        width: 60%;
        margin-left: 20%;
    }

    #theme-wrapper {
        right: 15%;
        border: none;
    }
}

/* ############################### Sidebar #################################
*/

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    padding-top: 54px;
    background-color: var(--bg-light3) !important;
    z-index: 1050;
    transform: translateX(0);
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 2px 76px 10px var(--navbar-box-shadow);
}

.sidebar::after {
    content: '';
    position: absolute;
    top: 57px;
    /* Start the border 70px from the top */
    right: 0;
    /* Place the border on the right edge */
    height: calc(100% - 74px);
    /* Border height starting 70px down */
    width: 1px;
    background-color: var(--navbar-box-shadow);
}

.sidebar.show::after {
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    box-shadow: 0px 0px 3px var(--navbar-box-shadow);
}

/* Sidebar link styles */
.sidebar .nav-link {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 12px;
    margin: 5px 0;
    font-size: 1rem;
    color: var(--nav-link-color);
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    height: 40px;
    width: 100%;
}

/* Sidebar link icon styles */
.sidebar .nav-link i {
    display: inline-block;
    font-size: 1.25rem;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    margin-right: 10px;
    transition: margin 0.3s ease;
}

/* Text styling for links */
.sidebar .nav-link span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
    line-height: 20px;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 35px;
    visibility: visible;
    margin-left: 10px;
}

/* Hide text in collapsed state */
.sidebar.collapsed .nav-link span {
    display: none;
}

/* Sidebar collapsed state */
.sidebar.collapsed {
    width: 65px;
}

/* Main content adjustment when sidebar is collapsed */
#main-content {
    transition: margin-left 0.3s ease-in-out;
    margin-top: 55px;
}

/* Navbar adjustment for collapsed sidebar */
.navbar,
#main-content,
footer {
    margin-left: 65px;
}

/* Dropdown adjustments */
.sidebar .nav-item.dropdown {
    position: relative;
}

/* Ensure dropdown-toggle button is aligned correctly */
.sidebar .nav-link.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Dropdown custom styles */
.sidebar .dropdown-menu {
    position: fixed;
    /* Higher than sidebar */
    min-width: 200px;
    /* Ensure dropdown is wide enough */
    left: 260px;
    /* Offset to pop out from the sidebar */
    top: auto;
}

.sidebar .dropdown-menu .dropdown-item {
    padding: 0.75rem 1.25rem;
}

/* Adjust dropdown position when sidebar is collapsed */
.sidebar.collapsed .dropdown-menu {
    left: 65px !important;
    /* Align the dropdown to the right of the collapsed sidebar */
    min-width: 200px;
}

.sidebar.show .dropdown-menu {
    left: 40px !important;
}


#sidebarToggler {
    position: fixed;
    top: 12px;
    left: 18px;
    z-index: 1100;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nav-link-color);
    padding: 5px 5px;
    font-size: 1.2rem;
    background-color: transparent;
    border: 1px solid var(--border-light2);
    cursor: pointer;
    transition: left 0.3s ease, transform 0.3s ease;
}

/* Sidebar Expanded State */
.sidebar.show #sidebarToggler {
    left: 80%;
    /* Adjust to match expanded sidebar width */
    transform: rotate(180deg);
    /* Rotate arrow */
    transition: left 0.3s ease, transform 0.3s ease;
}

#sidebarToggler:hover {
    background-color: var(--sidebar-toggler-hover-bg);
    color: var(--sidebar-toggler-hover-color);
}

.sidebar #sidebar-home,
.sidebar #sidebar-profile,
.sidebar #sidebar-contact,
.sidebar #sidebar-about {
    display: none;

}

.sidebar #sidebarNavbrand {
    display: none;
    transition: left 0.3s ease, transform 0.3s ease;
}

.sidebar #sidebarNavbrand span {
    font-size: 1.3rem;
}

.sidebar.show #sidebarNavbrand {
    display: block;
    position: fixed;
    top: 10px;
    left: 10px;
}


.sidebar .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: bold;
}

@media (max-width: 991px) {

    .sidebar #sidebar-home,
    .sidebar #sidebar-profile,
    .sidebar #sidebar-contact,
    .sidebar #sidebar-about {
        display: block;
    }

    .sidebar #sidebar-profile {
        margin-left: -3px;
    }
}

/* Show dropdown within main content on smaller screens or collapsed sidebar */
@media (max-width: 768px) {

    /* Mobile view - full-width sidebar with content underneath */
    .sidebar {
        width: 50%;
    }

    .sidebar.collapsed {
        width: 45px;
        height: 0;
        padding: 0;
    }

    .sidebar.collapsed .list-unstyled {
        display: none;
    }

    .sidebar .nav-link {
        padding: 12px 14px;
    }

    .sidebar .nav-link i {
        font-size: 1rem;
    }

    /* Navbar adjustment for collapsed sidebar */
    .navbar,
    #main-content,
    footer {
        margin-left: 0;
    }

    /* Allow the dropdown to show inside the main content when sidebar is collapsed */
    .sidebar.collapsed .dropdown-menu {
        position: absolute;
        top: 0;
        left: 45px !important;
        min-width: 200px;
    }

    .sidebar.collapsed .dropdown-toggle::after {
        display: none;
    }

    .sidebar.show #sidebarToggler {
        left: 82%;
    }
}

/* Show dropdown within main content on smaller screens or collapsed sidebar */
@media (max-width: 480px) {
    .sidebar {
        width: 70%;
    }
}

/* ############################### Footer #################################
*/


/* Footer Styles */
footer {
    background-color: var(--bg-light3);
    /* Subtle border at the top */
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: var(--nav-link-color);
    font-size: 14px;
}

footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--nav-link-color);
}

footer p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

footer a {
    color: var(--nav-link-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007bff;
    /* Light blue hover effect */
}

footer .social-icons i {
    font-size: 20px;
    color: var(--nav-link-color);
    transition: color 0.3s ease;
}

footer .social-icons i:hover {
    color: #007bff;
    /* Light blue for hover on social media icons */
}

/* Mobile-friendly Adjustments */
@media (max-width: 768px) {
    footer h5 {
        font-size: 16px;
    }

    footer p {
        font-size: 13px;
    }

    footer .social-icons i {
        font-size: 18px;
    }
}

/* Footer copyright text styling */
footer .text-center p {
    font-size: 12px;
    color: #6b6b6b;
}

/* ############################### HOME PAGE #################################
*/