/* Custom CSS for new color scheme (White, Black, Gray, Orange), layout, and advanced animations */
body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    /* White background */
    color: #1A202C;
    /* Near black text */
    overflow-x: hidden;
    /* Prevent horizontal scroll from animations */
}

.container {
    max-width: 1300px;
    /* Wider container */
    margin: 0 auto;
    padding: 1.5rem;
    /* Adjusted padding for all screen sizes */
}

/* Hero Section Styling */
.hero-section {
    display: flex;
    flex-direction: column;
    /* Default to column for mobile */
    align-items: center;
    text-align: center;
    padding: 3rem 0 4rem;
    /* Adjusted padding */
    position: relative;
    overflow: hidden;
}

.select-tag {
    width: 100%;
    margin-bottom: 3em;
}

/* Custom container styling */

.my-select2-class .select2-selection--single {
    /* background-color: #2d3748; */
    border: 1px solid #f56500;
    color: #ffffff;
    border-radius: 8px;
    padding: 0.5rem;
    height: auto;
}

.my-select2-class .select2-selection__rendered {
    color: #ffffff;
    line-height: 1.2;
}

.my-select2-class .select2-selection__arrow {
    height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
}

/* Dropdown list */
.select2-container--default .select2-results > .select2-results__options {
    /* background-color: #2d3748; */
   background-color: #ffffff;
    color: #2d3748;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: #2d3748 !important;
    color: #ffffff;
}

.my-select2-class span:focus-visible {
    outline: none !important;
}

@media (min-width: 1024px) {

    /* On large screens, switch to row layout */
    .hero-section {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        padding: 6rem 0 8rem;
    }

    .hero-content {
        max-width: 60%;
    }

    .hero-illustration {
        max-width: 35%;
        display: block;
    }
}

.hero-title {
    font-size: 2.5rem;
    /* Default smaller size for mobile */
    font-weight: 800;
    color: #F56500;
    /* Vibrant Orange */
    margin-bottom: 0.8rem;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(245, 101, 0, 0.2);
    /* Orange shadow */
}

@media (min-width: 768px) {

    /* Medium screens */
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {

    /* Large screens */
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    /* Default smaller size for mobile */
    color: #4A5568;

    margin-bottom: 2rem;
    /* Adjusted margin */
    line-height: 1.4;
}

@media (min-width: 768px) {

    /* Medium screens */
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (min-width: 1024px) {

    /* Large screens */
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-illustration {
    width: 100%;
    height: 200px;
    /* Adjusted height for mobile */
    background-color: #F7FAFC;
    /* Light Gray */
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #F56500;
    /* Orange */
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(245, 101, 0, 0.15);
    /* Orange shadow */
}

@media (min-width: 1024px) {
    .hero-illustration {
        height: 350px;
        margin-top: 0;
    }
}

/* Filter Buttons Styling - UPDATED */
.filter-buttons-container {
    /* margin-bottom: 3rem; */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* .filter-buttons-container:nth-of-type(3){
    transform: translate(3vw, 0);
} */
.filter-buttons-container#splide02{
    transform: translate(3vw, 0);
}

.filter-buttons {
    padding: 10px 0 !important;
}

.filter-buttons-container .splide__slide {

}

@media (min-width: 768px) {
    .filter-buttons {
        gap: 1rem;
    }
}

.filter-buttons button {
    color: #2D3748;
    background-color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    white-space: nowrap;
    /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); */
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .filter-buttons button {
        padding: 0.9rem 1.8rem;
        /* Original padding for larger screens */
        font-size: 1rem;
    }
}

.filter-buttons button:hover {
    background-color: #1A202C;
    transform: translateY(-8px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}

.filter-buttons button:focus-visible{
    outline: none;
}

.filter-buttons button.mixitup-control-active {
    background-color: #F56500;
    color: #FFFFFF;
    box-shadow: 0 10px 10px rgba(245, 101, 0, 0.5);
    transform: translateY(-8px);
}

/* Card Layout and Styling */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Adjusted minmax for smaller screens */
    gap: 2rem;
    /* Adjusted gap */
    align-items: stretch;
}

@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        /* Default for medium screens */
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {

    /* On large screens, force 3 columns */
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background-color: #FFFFFF;
    /* White card background */
    border-radius: 1rem;
    /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    /* New card style properties */
    background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 100%);
    /* Subtle white to light gray gradient */
    border: none;
    /* Remove border for cleaner look with gradient */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.03);
    /* Lighter, more refined shadow */
}

.card:hover {
    transform: translateY(-12px) rotateZ(0.2deg);
    /* Lift and very slight rotation */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    /* More pronounced shadow on hover */
}

.card-image-container {
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    position: relative;
    background-color: #F7FAFC;
    /* Light Gray placeholder */
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    overflow: hidden;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.card-content {
    padding: 1.2rem;
    /* Adjusted padding */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .card-content {
        padding: 1.5rem;
    }
}

.card-title {
    font-size: 1.25rem;
    /* Adjusted font size */
    font-weight: 700;
    color: #1A202C;
    /* Near black text */
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .card-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
}

.card-description {
    font-size: 0.85rem;
    /* Adjusted font size */
    color: #4A5568;
    /* Gray 700 */
    line-height: 1.5;
    margin-bottom: 1rem;
    /* Adjusted margin */
    flex-grow: 1;
}

@media (min-width: 768px) {
    .card-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
}

.card-tags {
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    background-color: #EDF2F7;
    /* Gray 100 */
    color: #4A5568;
    /* Gray 700 */
    padding: 0.3rem 0.7rem;
    /* Adjusted padding */
    border-radius: 0.5rem;
    font-size: 0.7rem;
    /* Adjusted font size */
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

@media (min-width: 768px) {
    .tag {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
    }
}

.tag:hover {
    background-color: #E2E8F0;
    /* Gray 200 */
    transform: translateY(-1px);
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
}

@media (min-width: 640px) {

    /* Adjust for medium screens (sm breakpoint) */
    .card-actions {
        flex-direction: row;
        /* Row layout on larger screens */
        justify-content: space-between;
        /* Space out buttons */
    }
}

.demo-link,
.order-link {
    display: block;
    /* Make them block to take full width when stacked */
    background-color: #F56500;
    /* Orange - primary accent */
    color: #FFFFFF;
    padding: 0.7rem 1.4rem;
    /* Adjusted padding */
    border-radius: 0.75rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(245, 101, 0, 0.2);
    /* Orange shadow */
    font-size: 0.9rem;
    /* Adjusted font size */
    width: 100%;
    /* Full width for stacked buttons */
}

.order-link {
    background-color: #F56500;
    /* Darker color for the order button */
    box-shadow: 0 5px 15px rgba(26, 32, 44, 0.2);
}

@media (min-width: 640px) {

    .demo-link,
    .order-link {
        width: auto;
        /* Auto width when in a row */
    }
}

@media (min-width: 768px) {

    .demo-link,
    .order-link {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

.demo-link:hover {
    background-color: #DD6B20;
    /* Darker orange */
    transform: translateY(-3px) scale(1.01);
    /* box-shadow: 0 8px 20px rgba(245, 101, 0, 0.4); */
}

.order-link:hover {
    color: #F56500;
    background-color: #fff;
    /* Even darker gray/blue */
    transform: translateY(-3px) scale(1.01);
    /* box-shadow: 0 8px 20px rgba(26, 32, 44, 0.4); */
}


/* MixItUp specific styles for smooth transitions - GSAP will override these */
.mix {
    /* Keep these initial states for GSAP animations */
    /* opacity: 1; */
    transform: translateY(20px);
}

/* GSAP will handle the .show and .hide transitions */

/* Placeholder image styling */
.placeholder-image {
    background-color: #A0AEC0;
    /* Gray 400 */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

/* Footer Styling */
.site-footer {
    background-color: #1A202C;
    /* Dark background for footer */
    color: #E2E8F0;
    /* Light gray text */
    padding: 3rem 1.5rem;
    margin-top: 4rem;
    /* Space above footer */
    text-align: center;
    font-size: 0.9rem;
}

.site-footer .footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .site-footer .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.site-footer p {
    margin: 0;
    line-height: 1.5;
}

.site-footer a {
    color: #F56500;
    /* Orange for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #DD6B20;
    /* Darker orange on hover */
    text-decoration: underline;
}


.filter-buttons button {
    cursor: pointer;
    min-width: max-content;
    padding: 10px 16px;
    color: #2d3748;
    background-color: #fff;
    border: 1px solid #2d3748;
    border-radius: 8px;
    font-weight: 600;
    margin-right: 0.5rem;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.filter-buttons button:hover {
    background-color: #4a5568;
    color: #fff;
}



/* Modal Container */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.visible {
  pointer-events: auto;
  opacity: 1;
}

/* Backdrop */
.modal-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(45, 55, 72, 0.7); /* #2d3748 with opacity */
}

/* Modal Box */
.modal-content {
  position: relative;
  background: #ffffff;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 10;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal.visible .modal-content {
  transform: scale(1);
  opacity: 1;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2d3748;
  cursor: pointer;
}

/* Typography */
.modal-content h2 {
  margin-top: 0;
  color: #2d3748;
  font-size: 1.5rem;
}

/* Form Fields */
.modal-content label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  color: #2d3748;
  font-weight: 600;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background: #f9f9f9;
  color: #2d3748;
  outline-color: #f56500;
  transition: border-color 0.2s ease;
}

.modal-content input:focus,
.modal-content textarea:focus {
  border-color: #f56500;
}

/* Submit Button */
.modal-content button[type="submit"] {
  margin-top: 1.2rem;
  background: #f56500;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-content button[type="submit"]:hover {
  background: #e05400;
}

/* Hide Utility */
.hidden {
  display: none;
}


@media screen and (max-width: 767px) {
  .modal-content {
    width: 90%;
    max-height: 90vh;           /* Limit modal height to 90% of screen */
    overflow-y: auto;           /* Enable scroll inside modal if needed */
    padding: 1.5rem 1rem;
  }

  .modal-close {
    top: 0.5rem;
    right: 0.6rem;
    font-size: 1.75rem;
  }
}
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #2d3748;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast.success {
  background: #38a169; /* Green */
}

.toast.error {
  background: #e53e3e; /* Red */
}

.toast.hidden {
  display: none;
}


#order-form {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    padding: 0 15px;
}

#order-form h2, #order-form h3 {
    color: #2c3e50; 
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

#order-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500; 
    color: #4a4a4a;
    font-size: 0.95em;
}

#order-form input[type="text"],
#order-form input[type="email"],
#order-form input[type="tel"],
#order-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #dcdcdc; 
    border-radius: 6px; 
    box-sizing: border-box;
    font-size: 1em;
    color: #555;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

#order-form input[type="text"]:focus,
#order-form input[type="email"]:focus,
#order-form input[type="tel"]:focus,
#order-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.checkbox-item:hover {
    background-color: #f0f8ff;
    border-color: #a7d9ff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.checkbox-item input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #a0a0a0;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 12px;
    position: relative;
    top: -1px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: '\2713';
    font-size: 14px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
    color: #4a4a4a;
    font-size: 0.95em;
    flex-grow: 1;
}

.total-price-display {
    background-color: #eaf6ff;
    border: 1px solid #b3e0ff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 1.05em;
    line-height: 1.8;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.total-price-display strong {
    color: #0056b3;
    display: inline-block;
    min-width: 180px;
}

.total-price-display #base-price,
.total-price-display #services-price,
.total-price-display #calculated-total,
.total-price-display #fixed-service-price{
    font-weight: 700; 
    color: #007bff;
    font-size: 1.1em;
}


.total-price-display hr {
    border: none;
    border-top: 1px dashed #c0e0f8; 
    margin: 10px 0;
}

#budget {
    background-color: #f7f7f7;
    cursor: default;
    font-weight: 600;
    color: #2c3e50;
    text-align: right;
    font-size: 1.1em;
    padding-right: 20px;
}















































.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; 
    align-items: start; 
}

@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px; 
    }
}

@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    background-color: #ffffff;
    border-radius: 16px; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(0, 0, 0, 0.05); 
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
}

.card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15), 
                0 0 0 1px rgba(0, 0, 0, 0.08); 
}


.card-image-wrapper {
    width: calc(100% - 30px);
    height: 180px; 
    margin: 15px 15px 0 15px; 
    border-radius: 12px; 
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #ffe7f4, #ff5f00); 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
}

.card-image {
    object-fit: cover;
    border-radius: 0; 
    position: static; 
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left; 
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d1034; 
    margin-bottom: 8px;
}

.card-description {
    font-size: 1rem;
    color: #4a4a4a; 
    line-height: 1.6;
    margin-bottom: 25px; 
    flex-grow: 1;
}


.card-tags {
    /* display: none; */
}


.card-actions {
    display: flex;
    justify-content: center; 
    margin-top: auto;
    flex-direction: column;
}

.card-action-button { 
    display: inline-block;
    /* background: #007bff; */
    background: #3e3c5b;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px #5f5d7ac7;
    font-size: 1.05rem;
    width: auto; 
    min-width: 160px;
}

.card-action-button:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px #5f5d7ac7;
    color: #3e3c5b;
}

.mini-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
    margin-top: 30px;
    max-width: 400px;
}

.mini-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffe7f4, #ff5f00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0d1034;
    flex-shrink: 0;
}

.mini-card-content {
    flex-grow: 1;
}

.mini-card-heading {
    font-size: 1.2em;
    font-weight: 600;
    color: #0d1034;
    margin-bottom: 2px;
}

.mini-card-subheading {
    font-size: 0.85em;
    color: #666;
}

.mini-card-dots {
    font-size: 2em;
    color: #888;
    cursor: pointer;
    line-height: 1;
}
































/* Hero Section Styling */
.hero-section {
    display: flex;
    flex-direction: column; /* Force column layout for all screen sizes */
    align-items: center; /* Center items horizontally within the flex container */
    text-align: center; /* Center text within content block */
    padding: 3rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Remove media query specific flex-direction and text-align for hero-section to keep it centered and columnar */
@media (min-width: 1024px) {
    .hero-section {
        justify-content: center; /* Ensure content remains centered horizontally */
        padding: 6rem 0 8rem;
    }
}

.hero-content {
    margin-top: 2.5rem; /* Space between the image and content */
}

/* Remove media query specific max-width for hero-content as it's now consistently centered */
@media (min-width: 1024px) {
    .hero-content {
        /* max-width: 60%; -- REMOVED */
    }
}

.hero-title {
    font-size: 2.5rem; /* Default smaller size for mobile */
    font-weight: 800;
    color: #ff5f00; /* Vibrant Orange from new palette */
    margin-bottom: 0.8rem;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(255, 95, 0, 0.2); /* Orange shadow */
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #4A5568; /* Gray 700 - keeping this for subtitle contrast */
    margin-bottom: 2rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Redesigned Hero Illustration (Logo Section) to be Circular with Animated Border */
.hero-illustration {
    position: relative; /* Needed for absolute positioning of pseudo-element */
    width: 250px; /* Base size for mobile */
    height: 250px; /* Ensure it's a perfect circle */
    border-radius: 50%; /* Make the container circular */
    overflow: hidden; /* Hide anything outside the circle */
    background: none; /* No background on the main container itself, border is pseudo-element */
    margin-bottom: 2.5rem; /* Space between the illustration and content below */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow for the inner circle */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

@media (min-width: 768px) {
    .hero-illustration {
        width: 350px; /* Larger size for medium screens */
        height: 350px;
    }
}

@media (min-width: 1024px) {
    .hero-illustration {
        width: 400px; /* Even larger for large screens */
        height: 400px;
    }
}

/* Pseudo-element for the circulating color border */
.hero-illustration::before {
    content: '';
    position: absolute;
    /* Adjust these values to control the border thickness */
    top: -10px; /* Negative value pushes it outwards from the container */
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    /* background: conic-gradient(from 0deg, #ffe7f4 0%, #ff5f00 45%, #0d1034 55%, #ffe7f4 100%); */
    background: conic-gradient(from 0deg, #ffe7f4 0%, #ffe7f4 45%, #e6fcfa 55%, #ffe7f4 100%);
    animation: rotateBorder 3s linear infinite;
    z-index: -1;
}

/* Keyframes for the border rotation animation */
@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-illustration:hover {
    transform: translateY(-8px) scale(1.01); /* Lift and slightly scale the entire illustration on hover */
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15),
                0 0 0 0 rgba(0, 0, 0, 0.08);
}

.hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the logo fits within the circular area without distortion */
    /* border-radius: 50%;  */
    transition: transform 0.3s ease-out; /* Smooth transition for inner image */
}

.hero-illustration:hover img {
    transform: scale(1.05); /* Slightly scale the image inside on hover */
}





