/* Theme Colors */
:root {
    --primary-color: #00f700; /* Vibrant Blue Theme */
    --secondary-color: #f06292; /* Pink Accent */
    --text-color-dark: #ffffff; /* Light text for dark mode */
    --text-color-light: #fdfdff; /* Dark text for light mode */
    --background-dark: #1e1e2f; /* Dark background */
    --background-light: #2c2c54; /* Slightly lighter dark background */
    --border-radius: 16px;
    --shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --perspective: 1000px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at 50% 0%, #1a1a1a, #333333, #0d0d0d);
    line-height: 1.6;
    transition: var(--transition);
    animation: animateBg 10s infinite alternate ease-in-out;
}

.text-center {
    font-weight: medium;
    color: #e2e3e4;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
    
}

h1, h2, h3 {
    font-weight: bold;
    color: var(--primary-color);
}

p {
    color: var(--text-color-light);
}

/* Card Styles */
.card {
    display: block;
    position: relative;
    width: 100%; /* Adjust width to 100% for responsiveness */
    max-width: 350px; /* Increased max width for better visibility */
    max-height: 350px; /* Increased max height for better visibility */
    background-color: #f2f8f9;
    border-radius: 10px;
    padding: 2em 1.2em;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #c3e6ec, #a7d1d9);
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, #364a60, #384c6c);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.35s ease-out;
}

.card:hover:before {
    transform: scale(28);
}

.card:hover .small-desc {
    transition: all 1s ease-out;
    color: rgba(255, 255, 255, 0.8);
}

.card:hover .card-title {
    transition: all 1s ease-out;
    color: #ffffff;
}

.card-title {
    color: #262626;
    font-size: 1.8em; /* Increased font size for better visibility */
    line-height: normal;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.small-desc {
    font-size: 1.2em; /* Increased font size for better visibility */
    font-weight: 400;
    line-height: 1.5em;
    color: #452c2c;
}

/* Go Corner Arrow */
.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 2em;
    height: 2em;
    overflow: hidden;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #6293c8, #384c6c);
    border-radius: 0 4px 0 32px;
}

.go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
}

/* Fade-in Effect */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .card {
        max-width: 320px; /* Adjust card size for medium devices */
        padding: 1.5em;
    }

    .card-title {
        font-size: 1.6em; /* Adjusted font size */
    }

    .small-desc {
        font-size: 1.1em; /* Adjusted font size */
    }
}

@media (max-width: 992px) {
    .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .card {
        max-width: 45%; /* Cards will take up less space */
        margin: 10px;
    }

    .card-title {
        font-size: 1.5em; /* Adjusted font size */
    }

    .small-desc {
        font-size: 1em; /* Adjusted font size */
    }
}

@media (max-width: 768px) {
    .card {
        max-width: 100%;
        padding: 1.5em 1em;
    }

    .card-title {
        font-size: 1.4em; /* Adjusted font size */
    }

    .small-desc {
        font-size: 1em; /* Adjusted font size */
    }
}

@media (max-width: 576px) {
    .card {
        max-width: 100%;
        padding: 1em;
        margin: 10px 0;
    }

    .card-title {
        font-size: 1.3em; /* Adjusted font size */
    }

    .small-desc {
        font-size: 0.95em; /* Adjusted font size */
    }
}




/* Responsive Paint Roller Animation */
.containers {
    height: 100px;
    width: 100px;
    margin-top: -10%;
    margin-left: 80%;
    transform: rotate(-45deg);
}

.roller {
    height: 45px;
    width: 150px;
    border: 5px solid #040e15;
    border-radius: 7px;
    background: linear-gradient(to bottom, #fc8f2e 0, #fc8f2e 80%, #e86f1a 80%);
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    animation: roller 2s infinite;
}

@keyframes roller {
    40% {
        top: 200px;
    }
}

.roller:before {
    position: absolute;
    content: "";
    background-color: rgba(255, 255, 255, 0.7);
    height: 7px;
    width: 75px;
    top: 8px;
    left: 8px;
    border-radius: 10px;
}

.roller:after {
    position: absolute;
    content: "";
    height: 40px;
    width: 85px;
    border: 7px solid #040e15;
    border-left: none;
    right: -20px;
    top: 20px;
    z-index: -1;
    border-radius: 7px;
}

.handle {
    height: 30px;
    width: 7px;
    background-color: #040e15;
    position: absolute;
    top: 68px;
    right: 65px;
}

.handle:after {
    position: absolute;
    content: "";
    height: 75px;
    width: 25px;
    background-color: #040e15;
    bottom: -75px;
    right: -8px;
    border-radius: 5px;
}

.paint {
    background-color: #fc8f2e;
    height: 0;
    width: 130px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    z-index: -1;
    animation: paint 2s infinite;
}

@keyframes paint {
    40% {
        height: 200px;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .containers {
        margin-left: 60%;
        margin-top: -5%;
    }
    .roller {
        width: 120px;
        height: 35px;
    }
    .paint {
        width: 100px;
    }
    .handle {
        top: 55px;
        right: 50px;
    }
    .handle:after {
        height: 60px;
        width: 20px;
    }
}

@media (max-width: 480px) {
    .containers {
        margin-left: 50%;
        margin-top: -10;
    }
    .roller {
        width: 100px;
        height: 30px;
    }
    .paint {
        width: 80px;
        height: 30px;
    }
    .handle {
        top: 45px;
        right: 40px;
    }
    .handle:after {
        height: 50px;
        width: 15px;
    }

    @keyframes roller {
        40% {
            top: 140px;
        }
    }

    @keyframes paint {
        40% {
            height: 140px;
        }
    }
}


.faq-section {
  background-color: #f3f4f600;
  padding: 2.5rem 0;
}

.faq-container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: #fffefe00;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #dbd8d8;
  margin-bottom: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #d1d5db;
  padding: 0.75rem 0;
}

.faq-title {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.75rem;
  background-color: #2563eb;
  color: white;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.faq-title:hover {
  background-color: #26e200;
  color: black;
}

.faq-toggle {
  display: none;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  background-color: #f7efff;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
}

.faq-toggle:checked + .faq-title + .faq-content {
  max-height: 24rem;
  padding: 1rem;
}

.hr-line {
  border: 0;
  height: 1px;
  background-color: #d1d5db;
  margin: 0rem 0;
  margin-bottom: 3%;
}