.bg-color5 {
    background: var(--color5) !important;
}

.bg-color6 {
    background: var(--color6) !important;
}

.bg-color7 {
    background: var(--color7) !important;
}

.bg-color8 {
    background: var(--color8) !important;
}

.bg-color9 {
    background: var(--color9) !important;
}

.bg-color10 {
    background: var(--color10) !important;
}

.color5 {
    color: var(--color5) !important;
}

.color6 {
    color: var(--color6) !important;
}

.color7 {
    color: var(--color7) !important;
}

.color8 {
    color: var(--color8) !important;
}

.color9 {
    color: var(--color9) !important;
}

.color10 {
    color: var(--color10) !important;
}

.carousel-indicators {
    list-style: none;
}

a[class*='bg-color'],
button[class*='bg-color'] {
    transition: 0.3s;
}

a[class*='bg-color']:hover,
button[class*='bg-color']:hover {
    opacity: 0.8;
}

/* Modern Header Styles */
.navbar {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.navbar-nav .nav-link {
    color: var(--color3) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    margin-left: 1rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--color3);
    display: block;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color3);
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-brand {
        margin: 0;
    }

    .navbar-brand img {
        height: 35px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 5rem 1rem 1rem;
        z-index: 1000;
        display: none;
    }

    .navbar-collapse.show {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
        height: 100%;
        justify-content: center;
    }

    .navbar-nav .nav-link {
        padding: 1rem;
        text-align: center;
        border-radius: 0.5rem;
        width: 100%;
        font-size: 1.2rem;
    }

    .navbar-nav .nav-link:hover {
        background: var(--color5);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-toggler {
        position: fixed;
        top: 42px;
        right: 1rem;
        z-index: 1001;
        margin: 0;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('https://images.unsplash.com/photo-1465493251445-c6af8fc40b7a?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wyMDkyMnwwfDF8c2VhcmNofDR8fHBlbnNpb25lcnxlbnwwfHx8fDE3NDc1NjE3MjF8MA&ixlib=rb-4.1.0&q=80&w=1080') center/cover no-repeat;
}

.hero-title {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color6);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color6);
}

.hero-button:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.2rem;
    }

    .hero-button {
        padding: 1rem 2.5rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 5rem 0;
    background: var(--color5);
}

.about-header {
    margin-bottom: 4rem;
}

.about-title {
    color: var(--color3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-text {
    color: var(--color4);
    font-size: 1.1rem;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-side {
    order: 1;
}

.about-content-side {
    order: 2;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
}

.about-feature-icon {
    font-size: 1.5rem;
    color: var(--color6);
}

.about-feature-content h3 {
    color: var(--color3);
    margin-bottom: 0.5rem;
}

.about-feature-content p {
    color: var(--color4);
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--color6);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-button:hover {
    background: var(--color3);
    transform: translateY(-3px);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content-side {
        padding-right: 0;
    }

    .about-feature {
        padding: 1.2rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Features Section Styles */
.features-section {
    padding: 5rem 0;
    background: #fff;
}

.features-header {
    margin-bottom: 4rem;
}

.features-title {
    color: var(--color3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-subtitle {
    color: var(--color4);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    background: var(--color5);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color6);
    margin-bottom: 1.5rem;
}

.feature-title {
    color: var(--color3);
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--color4);
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--color6);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--color3);
}

.features-cta {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.features-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color5);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.features-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: var(--color6);
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .about-section,
    .features-section {
        padding: 4rem 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content-side {
        padding-right: 0;
    }

    .about-feature {
        padding: 1.2rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 5rem 0;
    background: var(--color5);
}

.pricing-header {
    margin-bottom: 4rem;
}

.pricing-title {
    color: var(--color3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    color: var(--color4);
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--color6);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    background: var(--color6);
    color: #fff;
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: 500;
}

.pricing-image {
    height: 200px;
    overflow: hidden;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-image img {
    transform: scale(1.1);
}

.pricing-card-content {
    padding: 2rem;
    text-align: center;
}

.pricing-card-title {
    color: var(--color3);
    margin-bottom: 1rem;
}

.pricing-card-text {
    color: var(--color4);
    margin-bottom: 1.5rem;
}

.pricing-card-price {
    font-size: 2rem;
    color: var(--color6);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-card-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color6);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-card-button:hover {
    background: var(--color3);
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .about-section,
    .features-section,
    .pricing-section {
        padding: 4rem 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content-side {
        padding-right: 0;
    }

    .about-feature {
        padding: 1.2rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .pricing-card {
        max-width: 100%;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 5rem 0;
    background: #fff;
}

.contact-header {
    margin-bottom: 4rem;
}

.contact-title {
    color: var(--color3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--color4);
    font-size: 1.1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info-side {
    order: 2;
}

.contact-info-content {
    padding: 2rem;
    background: var(--color5);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-title {
    color: var(--color3);
    margin-bottom: 1rem;
}

.contact-info-text {
    color: var(--color4);
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: grid;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(5px);
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--color6);
}

.contact-info-details h4 {
    color: var(--color3);
    margin-bottom: 0.25rem;
}

.contact-info-details p {
    color: var(--color4);
    margin: 0;
}

.contact-form-side {
    order: 1;
}

.contact-form {
    background: var(--color5);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: calc(1rem + 6px);
    color: var(--color5);
    z-index: 1;
}

.form-control {
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--color6);
    background: #fff;
}

textarea.form-control {
    padding-top: 1rem;
    resize: vertical;
    height: 100%;
    min-height: 150px;
}

.form-check {
    margin-bottom: 1.5rem;
}

.form-check-input:checked {
    background-color: var(--color6);
    border-color: var(--color6);
}

.form-check-label {
    color: var(--color6);
    font-size: 0.95rem;
    cursor: pointer;
}

.btn {
    margin-top: auto;
    width: 100%;
    padding: 1rem;
    background: var(--color6);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--color3);
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-side {
        padding: 2rem;
    }

    .contact-form-side {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        gap: 1rem;
    }

    .contact-info-card {
        padding: 0.8rem;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
    }
}

/* Footer Styles */
.footer {
    background: var(--color5);
    padding: 2rem 0;
    color: var(--color3);
}

.footer-content {
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--color3);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color6);
}

.footer-copyright {
    margin: 0;
    opacity: 0.8;
    color: var(--color3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image-side,
    .about-content-side {
        order: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-side,
    .contact-info-side {
        order: 0;
    }
}

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .navbar-nav {
        background: var(--color5);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

/* Navbar brand */
.navbar-brand {
    display: inline-block;
    padding: 0;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 65px;
    border-radius: 10px;
    width: auto;
    object-fit: contain;
}
