﻿/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)), url('../../Images/Index/dotf-building-2.jpeg') no-repeat center center / cover;
    padding: 5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Darker overlay for contrast */
}

/* Hero Box */
.hero-box {
    background: rgba(255, 255, 255, 0.3); /* Semi-transparent white for glassmorphism */
    backdrop-filter: blur(12px); /* Slightly higher blur for depth */
    border-radius: 16px;
    padding: 2.5rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 700px;
}

    .hero-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }

/* Hero Content */
.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Custom Button */
.btn-custom {
    background-color: #4d9f9f;
    color: white;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
    border: none;
}

    .btn-custom:hover {
        background-color: #3b7c7c;
        transform: translateY(-2px);
    }

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-box {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-box {
        padding: 1.5rem;
    }

    .btn-custom {
        font-size: 1rem;
        padding: 10px 20px;
    }
}


@media (max-width: 576px) {
    .hero-box {
        width: 100%; /* Let it take full width */
        max-width: 100%; /* Prevent unnecessary shrinking */
        padding: 1.5rem; /* Keep padding for spacing */
        margin: 0 auto; /* Center the box */
    }
}

/***************************** Content Section ***********************/
/* Content Section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Add padding for better spacing on mobile */
}

/* Decorative Border */
.border-decor {
    width: 70%; /* Adjusted width */
    height: 6px; /* Thicker border */
    background-color: #4d9f9f;
    margin: 0 auto 3rem auto; /* Center the border */
    border-radius: 3px;
}

/* Heading */
.display-4 {
    font-size: 2.75rem; /* Bigger heading */
    line-height: 1.3;
    margin-bottom: 1.5rem; /* Add spacing below heading */
}

/* Content Section */
.content-section {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem; /* Add spacing between sections */
}

/* Points List */
.list-unstyled {
    padding-left: 0;
}

    .list-unstyled li {
        font-size: 1.1rem;
        color: #555;
        display: flex;
        align-items: center;
        margin-bottom: 1rem; /* Add spacing between list items */
    }

/* Font Awesome Icons */
.fas {
    font-size: 1.2rem; /* Slightly larger icons */
    color: #4d9f9f; /* Match icon color with theme */
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .display-4 {
        font-size: 2.5rem; /* Slightly smaller heading for large tablets */
    }

    .content-section {
        font-size: 1rem; /* Slightly smaller text for large tablets */
    }
}

@media (max-width: 992px) {
    .display-4 {
        font-size: 2.25rem; /* Adjusted font size for tablets */
    }

    .content-section {
        font-size: 1rem; /* Adjusted font size for tablets */
    }

    .border-decor {
        width: 80px; /* Adjusted width for tablets */
        height: 5px; /* Adjusted height for tablets */
    }
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem; /* Adjusted font size for smaller tablets */
    }

    .content-section {
        font-size: 0.95rem; /* Adjusted font size for smaller tablets */
    }

    .border-decor {
        width: 60px; /* Adjusted width for smaller tablets */
        height: 4px; /* Adjusted height for smaller tablets */
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.75rem; /* Adjusted font size for mobile */
    }

    .content-section {
        font-size: 0.9rem; /* Adjusted font size for mobile */
        text-align: justify !important;
    }

    .border-decor {
        width: 50px; /* Adjusted width for mobile */
        height: 3px; /* Adjusted height for mobile */
    }

    /* Stack columns on mobile */
    .col-lg-6 {
        width: 100%;
        margin-bottom: 1.5rem; /* Add spacing between stacked columns */
    }
}



/**********************************Ticket LifeCycle******************************************************/
/* Ticket Life Cycle Section */
.ticket-lifecycle-section {
    padding: 80px 0;
    background-color: #f3f3f3;
}

.ticket-lifecycle-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.ticket-lifecycle-highlight {
    color: #4d9f9f; /* Theme color */
}

.ticket-lifecycle-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

/* Step Cards */
.ticket-step-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 200px;
}

    .ticket-step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

.ticket-step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #4d9f9f; /* Theme color */
}

.ticket-step-icon {
    width: 60px;
    height: 60px;
    background-color: #4d9f9f; /* Theme color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

    .ticket-step-icon i {
        color: white;
        font-size: 1.5rem;
    }

.ticket-step-title {
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .ticket-lifecycle-heading {
        font-size: 2rem;
    }

    .ticket-lifecycle-description {
        font-size: 1rem;
    }

    .ticket-step-card {
        padding: 20px;
    }

    .ticket-step-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .ticket-lifecycle-heading {
        font-size: 1.75rem;
    }

    .ticket-step-icon {
        width: 50px;
        height: 50px;
    }

        .ticket-step-icon i {
            font-size: 1.25rem;
        }
}

@media (max-width: 576px) {
    .ticket-lifecycle-section {
        padding: 60px 0;
    }

    .ticket-lifecycle-heading {
        font-size: 1.5rem;
    }

    .ticket-lifecycle-description {
        font-size: 0.95rem;
    }

    .ticket-step-card {
        padding: 15px;
        height: 150px;
    }

    .ticket-step-title {
        font-size: 1rem;
    }
}



/**************************Frequently Asked Questions**************************/
/* FAQ Section */
.faq-section-custom {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* Accordion Button */
.accordion-button-custom {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4d9f9f; /* Theme color */
    background-color: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    width: 100%; /* Ensure full width on all screens */
    text-align: left; /* Align text to the left */
}

    .accordion-button-custom:not(.collapsed) {
        color: #4d9f9f;
        background-color: #e9f7f7; /* Light background for active state */
        box-shadow: none;
    }

    .accordion-button-custom:focus {
        box-shadow: none;
    }

    .accordion-button-custom:hover {
        background-color: #e9f7f7; /* Light background on hover */
    }

/* Accordion Body */
.accordion-body-custom {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    padding: 1rem 1.5rem;
    border: 1px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-section-custom {
        padding: 60px 0;
    }

    .accordion-button-custom {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }

    .accordion-body-custom {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .faq-section-custom {
        padding: 40px 0;
    }

    .accordion-button-custom {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }

    .accordion-body-custom {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}
