/*change*/
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;700&display=swap');


:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Baloo 2", cursive;
    --nav-font: "Baloo 2", cursive;
}

/*change*/
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #2f241e; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #5b3e2c; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #2f241e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #556270;  /* The default color of the main navmenu links */
    --nav-hover-color: #d9232d; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #556270; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #d9232d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f2f4f6;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #3b4654;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #444e5b;
    --contrast-color: #ffffff;
}
.black-background {
    --background-color: #000000;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #000000;
    --contrast-color: #ffffff;
}
.white-background {
    --background-color: #ffffff;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}
.brown-background {
    --background-color: #5d1b1b;
    --default-color: #ffffff;
    --heading-color: #ffffff;;
    --surface-color: #5d1b1b;
    --contrast-color: #5d1b1b;
}
/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--accent-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 2;
}

.header .logo img {
    max-height: 66px;
    margin-right: 2px;
}

.header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding-right: 5px;
    font-weight: 900;
    color: var(--accent-color);
    text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .footer-about1 .logo {
    line-height: 1;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the content vertically */
}
.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the content vertically */
}

.footer .footer-about .logo img {
    max-height: 120px; /* Increased logo size */
    margin-bottom: 10px; /* Added space between logo and site name */
}
.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
    text-align: center; /* Ensure text is centered */
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}
.footer .footer-links h4 {
    margin-bottom: 5px !important; /* Force smaller space between heading and contact section */
}



.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}
.footer .footer-contact {
    padding-top: 0px !important; /* Remove extra padding above contact info */
}
.footer .footer-contact p {
    margin-bottom: 0px;
    margin-top: 0px;
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: var(--surface-color);
    transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--surface-color);
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -9px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 300;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 30px;
    position: relative;
    text-align: center;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
}
/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
    border-bottom-left-radius: 75px; /* Rounded bottom-left corner */
    border-bottom-right-radius: 75px; /* Rounded bottom-right corner */
}

.hero .carousel {
    width: 100%;
    min-height: calc(100vh - 90px);
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative;


}

@media (max-width: 1200px) {
    .hero .carousel {
        min-height: calc(100vh - 66px);
    }
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;

}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
/*change*/
.hero .carousel-item:before {
    content: "";
    background: color-mix(in srgb, var(--accent-color), transparent 80%);/*change*/
    position: absolute;
    inset: 0;
    z-index: 2;

}

.hero .carousel-container {
    position: absolute;
    inset: 90px 64px 64px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;

}

.hero h2 {
    margin-bottom: 49px;
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }
}

.hero p {
    animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

    .hero h2,
    .hero p {
        max-width: 60%;
    }
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: #d57c42;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 4px;
    transition: 0.5s;
    margin: 10px;
    animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 10%;
    transition: 0.3s;
    opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

@media (min-width: 1024px) {

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 5%;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    font-size: 32px;
    line-height: 1;
}

.hero .carousel-indicators {
    list-style: none;
}

.hero .carousel-indicators li {
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
/*--------------------------------------------------------------
# hero2 Section
--------------------------------------------------------------*/
.hero2 {
    width: 90%; /* Reduce width */
    min-height: 80vh; /* Reduce height */
    position: relative;
    padding: 40px 0; /* Reduce padding */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px; /* Curved edges */
    overflow: hidden; /* Ensure image doesn't overflow */
    margin: 0 auto; /* Center the section */
}

.hero2 img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: inherit; /* Ensure the image follows the curved edges */
}

.hero2:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);/*change*/
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit; /* Ensure the overlay also follows the curved edges */
}

.hero2 .container {
    position: relative;
    z-index: 3;
}

.hero2 h2 {
    margin: 0;
    font-size: 40px; /* Slightly reduced font size */
    font-weight: 700;
}

.hero2 p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 20px 0;
    font-size: 22px; /* Slightly reduced font size */
}

@media (max-width: 768px) {
    .hero2 h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .hero2 p {
        font-size: 16px;
        line-height: 22px;
    }
}

/*--------------------------------------------------------------
# hero3 Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero3 {
    width: 100%;
    min-height: 75vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: flex-end;
    border-bottom-left-radius: 75px;
    border-bottom-right-radius: 75px;
    /* Removed background property */
}

.hero3:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero3 .container {
    position: relative;
}

.hero3 .row {
    display: grid;
    width: 100%;
    align-items: end; /* Ensure items align at the bottom */
    padding: 0 20px; /* Adjust padding as needed */
}

.hero3 h1 {
    margin: 0;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--contrast-color);

    white-space: nowrap; /* Prevent line break */
    width: 100%; /* Ensure the h1 takes up the full width */
    position: relative;
    bottom: 60px; /* Adjust the distance from the bottom */
    left: 20px; /* Adjust the distance from the left */
}

.hero3 h1 span {
    color: var(--accent-color);
}

.hero3 p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero3 .btn-start {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero3 .btn-start:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero3 .animated-element {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero3 h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .hero3 p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Hero Section for contact
--------------------------------------------------------------*/
.hero3 {
    width: 100%;
    min-height: 75vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: flex-end; /* Align items at the bottom */
    background: url("../img/02.jpg") top left;
    background-size: cover;
    border-bottom-left-radius: 75px; /* Rounded bottom-left corner */
    border-bottom-right-radius: 75px; /* Rounded bottom-right corner */
}

.hero3:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero3 .container {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero3 .row {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero3 h2 {
    margin: 0;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-color);
    white-space: nowrap;
    width: 100%;
    position: relative;
    bottom: 60px;
    padding-left: 0;
    margin-left: 0;
}

.hero3 h2 .highlighted-text {
    display: inline-block; /* Allows full-width background for text */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    padding: 10px 20px; /* Adds padding around the text */
    border-radius: 8px; /* Optional: rounded corners */
}
.hero3 h2 h8 {
    color: #FFFFFF; /* Different color for "Photos & Videos" */
}

.hero3 h1 span {
    color: var(--accent-color);
}

.hero3 p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}



.hero3 .animated-element {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero3 h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .hero3 p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}


.hero4 {
    width: auto;
    min-height: 60vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: flex-end;
    border-bottom-left-radius: 75px;
    border-bottom-right-radius: 75px;
    /* Removed background property */
}

.hero4:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero4 .container {
    position: relative;
}

.hero4 .row {
    display: grid;
    width: 100%;
    align-items: end; /* Ensure items align at the bottom */
    padding: 0 20px; /* Adjust padding as needed */
}







.hero4 .animated-element {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero4 h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .hero4 p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}



/*--------------------------------------------------------------
# hero6 Section for gallery
--------------------------------------------------------------*/
.hero6 {
    width: 100%; /* Reduce width */
    min-height: 80%;
    position: relative;
    padding: 40px 0; /* Reduce padding */
    display: flex;
    align-items: center;
    justify-content: center;
    /*border-radius: 20px; !* Curved edges *!*/
    overflow: hidden; /* Ensure image doesn't overflow */
    margin: 0 auto; /* Center the section */
}

.hero6 img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /*border-radius: inherit; !* Ensure the image follows the curved edges *!*/
}

.hero6:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);/*change*/
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit; /* Ensure the overlay also follows the curved edges */
}

.hero6 .container {
    position: relative;
    z-index: 3;
}

.hero6 h2 {
    margin: 0;
    font-size: 40px; /* Slightly reduced font size */
    font-weight: 700;
}

.hero6 p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 20px 0;
    font-size: 22px; /* Slightly reduced font size */
}

@media (max-width: 768px) {
    .hero6 h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .hero6 p {
        font-size: 16px;
        line-height: 22px;
    }
}




.hero7 {
    width: 100%;
    min-height: 75vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: flex-end;
    border-bottom-left-radius: 75px;
    border-bottom-right-radius: 75px;
    /* Removed background property */
}

.hero7:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero7 .container {
    position: relative;
}

.hero7 .row {
    display: grid;
    width: 100%;
    align-items: end; /* Ensure items align at the bottom */
    padding: 0 20px; /* Adjust padding as needed */
}

.hero7 h1 {
    margin: 0;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--contrast-color);

    white-space: nowrap; /* Prevent line break */
    width: 100%; /* Ensure the h1 takes up the full width */
    position: relative;
    bottom: 60px; /* Adjust the distance from the bottom */
    left: 20px; /* Adjust the distance from the left */
}

.hero7 h1 span {
    color: var(--accent-color);
}

.hero7 p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero7 .btn-start {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero7 .btn-start:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero7 .animated-element {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero7 h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .hero7 p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Hero Section for contact
--------------------------------------------------------------*/
.hero7 {
    width: 100%;
    min-height: 65vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: flex-end; /* Align items at the bottom */
    background: url("../img/contact_hero.webp") top left;
    background-size: cover;
    border-bottom-left-radius: 75px; /* Rounded bottom-left corner */
    border-bottom-right-radius: 75px; /* Rounded bottom-right corner */
}

.hero7:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero7 .container {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero7 .row {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero7 h2 {
    margin: 0;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-color);
    white-space: nowrap;
    width: 100%;
    position: relative;
    bottom: 60px;
    padding-left: 0;
    margin-left: 0;
}

.hero7 h2 .highlighted-text {
    display: inline-block; /* Allows full-width background for text */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    padding: 10px 20px; /* Adds padding around the text */
    border-radius: 8px; /* Optional: rounded corners */
}
.hero7 h2 h8 {
    color: #FFFFFF; /* Different color for "Photos & Videos" */
}

.hero7 h1 span {
    color: var(--accent-color);
}

.hero7 p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero7 .animated-element {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Tablet responsiveness (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero7 {
        min-height: 45vh;
        padding: 40px 0;
        background-size: cover; /* Maintain full image visibility */
        border-bottom-left-radius: 50px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 50px; /* Rounded bottom-right corner */
    }
    .hero7 h2 {
        font-size: 38px;
        line-height: 1.1;
    }
    .hero7 p {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Mobile responsiveness (max-width: 640px) */
@media (max-width: 640px) {
    .hero7 {
        min-height: 33vh;
        padding: 10px 0;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 45px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 45px; /* Rounded bottom-right corner */
        background-repeat: no-repeat; /* Prevents repetition of the image */
    }
    .hero7 h2 {
        font-size: 1px;
        line-height: 1px;
    }
    .hero7 h2 .highlighted-text {
        padding: 8px 16px; /* Adjust padding for smaller screens */
        font-size: 15px;
        text-align: left; /* Center-align text */
        align-items: flex-end;
        border-radius: 2px;
    }
    .hero7 p {
        font-size: 16px;
        line-height: 24px;
        text-align: center; /* Center-align text */
        margin-bottom: 20px;
    }
}
@media (max-width:560px) {
    .hero7 {
        width: 100%;
        min-height: 28vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width:460px) {
    .hero7 {
        width: 100%;
        min-height: 20vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width:375px) {
    .hero7 {
        width: 100%;
        min-height: 22vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width: 320px) {
    .hero7 {
        width: 100%;
        min-height: 17vh;
        padding: 10px 0;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}

/*--------------------------------------------------------------
# Hero Section for blog
--------------------------------------------------------------*/
.hero8 {
    width: 100%;
    min-height: 65vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: flex-end; /* Align items at the bottom */
    background: url("../img/blog.webp") top left;
    background-size: cover;
    border-bottom-left-radius: 75px; /* Rounded bottom-left corner */
    border-bottom-right-radius: 75px; /* Rounded bottom-right corner */
}

.hero8:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero8 .container {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero8 .row {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero8 h2 {
    margin: 0;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-color);
    white-space: nowrap;
    width: 100%;
    position: relative;
    bottom: 60px;
    padding-left: 0;
    margin-left: 0;
}

.hero8 h2 .highlighted-text {
    display: inline-block; /* Allows full-width background for text */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    padding: 10px 20px; /* Adds padding around the text */
    border-radius: 8px; /* Optional: rounded corners */
}
.hero8 h2 h8 {
    color: #FFFFFF; /* Different color for "Photos & Videos" */
}

.hero8 h1 span {
    color: var(--accent-color);
}

.hero8 p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero8 .animated-element {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Tablet responsiveness (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero8 {
        min-height: 45vh;
        padding: 40px 0;
        background-size: cover; /* Maintain full image visibility */
        border-bottom-left-radius: 50px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 50px; /* Rounded bottom-right corner */
    }
    .hero8 h2 {
        font-size: 38px;
        line-height: 1.1;
    }
    .hero8 p {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Mobile responsiveness (max-width: 640px) */
@media (max-width: 640px) {
    .hero8 {
        min-height: 33vh;
        padding: 10px 0;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 45px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 45px; /* Rounded bottom-right corner */
        background-repeat: no-repeat; /* Prevents repetition of the image */
    }
    .hero8 h2 {
        font-size: 1px;
        line-height: 1px;
    }
    .hero8 h2 .highlighted-text {
        padding: 8px 16px; /* Adjust padding for smaller screens */
        font-size: 15px;
        text-align: left; /* Center-align text */
        align-items: flex-end;
        border-radius: 2px;
    }
    .hero8 p {
        font-size: 16px;
        line-height: 24px;
        text-align: center; /* Center-align text */
        margin-bottom: 20px;
    }
}
@media (max-width:560px) {
    .hero8 {
        width: 100%;
        min-height: 28vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width:460px) {
    .hero8 {
        width: 100%;
        min-height: 20vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width:375px) {
    .hero8 {
        width: 100%;
        min-height: 22vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width: 320px) {
    .hero8 {
        width: 100%;
        min-height: 17vh;
        padding: 10px 0;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}

/*--------------------------------------------------------------
# Hero Section for where to buy
--------------------------------------------------------------*/
.hero9 {
    width: 100%;
    min-height: 65vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: flex-end; /* Align items at the bottom */
    background: url("../img/where.webp") top left;
    background-size: cover;
    border-bottom-left-radius: 75px; /* Rounded bottom-left corner */
    border-bottom-right-radius: 75px; /* Rounded bottom-right corner */
}

.hero9:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero9 .container {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero9 .row {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero9 h2 {
    margin: 0;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-color);
    white-space: nowrap;
    width: 100%;
    position: relative;
    bottom: 60px;
    padding-left: 0;
    margin-left: 0;
}

.hero9 h2 .highlighted-text {
    display: inline-block; /* Allows full-width background for text */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    padding: 10px 20px; /* Adds padding around the text */
    border-radius: 8px; /* Optional: rounded corners */
}
.hero9 h2 h8 {
    color: #FFFFFF; /* Different color for "Photos & Videos" */
}

.hero9 h1 span {
    color: var(--accent-color);
}

.hero9 p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero9 .animated-element {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Tablet responsiveness (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero9 {
        min-height: 45vh;
        padding: 40px 0;
        background-size: cover; /* Maintain full image visibility */
        border-bottom-left-radius: 50px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 50px; /* Rounded bottom-right corner */
    }
    .hero9 h2 {
        font-size: 38px;
        line-height: 1.1;
    }
    .hero9 p {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Mobile responsiveness (max-width: 640px) */
@media (max-width: 640px) {
    .hero9 {
        min-height: 33vh;
        padding: 10px 0;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 45px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 45px; /* Rounded bottom-right corner */
        background-repeat: no-repeat; /* Prevents repetition of the image */
    }
    .hero9 h2 {
        font-size: 1px;
        line-height: 1px;
    }
    .hero9 h2 .highlighted-text {
        padding: 8px 16px; /* Adjust padding for smaller screens */
        font-size: 15px;
        text-align: left; /* Center-align text */
        align-items: flex-end;
        border-radius: 2px;
    }
    .hero9 p {
        font-size: 16px;
        line-height: 24px;
        text-align: center; /* Center-align text */
        margin-bottom: 20px;
    }
}
@media (max-width:560px) {
    .hero9 {
        width: 100%;
        min-height: 28vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width:460px) {
    .hero9 {
        width: 100%;
        min-height: 20vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width:375px) {
    .hero9 {
        width: 100%;
        min-height: 22vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width: 320px) {
    .hero9 {
        width: 100%;
        min-height: 17vh;
        padding: 10px 0;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
/*--------------------------------------------------------------
# Hero Section for photos and video
--------------------------------------------------------------*/
.hero10 {
    width: 100%;
    min-height: 65vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: flex-end; /* Align items at the bottom */
    background: url("../img/gallery.webp") top right;
    background-size: cover;
    border-bottom-left-radius: 75px; /* Rounded bottom-left corner */
    border-bottom-right-radius: 75px; /* Rounded bottom-right corner */
}

.hero10:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero10 .container {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero10 .row {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero10 h2 {
    margin: 0;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-color);
    white-space: nowrap;
    width: 100%;
    position: relative;
    bottom: 60px;
    padding-left: 0;
    margin-left: 0;
}

.hero10 h2 .highlighted-text {
    display: inline-block; /* Allows full-width background for text */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    padding: 10px 20px; /* Adds padding around the text */
    border-radius: 8px; /* Optional: rounded corners */
}
.hero10 h2 h8 {
    color: #FFFFFF; /* Different color for "Photos & Videos" */
}

.hero10 h1 span {
    color: var(--accent-color);
}

.hero10 p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero10 .animated-element {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Tablet responsiveness (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero10 {
        min-height: 45vh;
        padding: 40px 0;
        background-size: cover; /* Maintain full image visibility */
        border-bottom-left-radius: 50px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 50px; /* Rounded bottom-right corner */
    }
    .hero10 h2 {
        font-size: 38px;
        line-height: 1.1;
    }
    .hero10 p {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Mobile responsiveness (max-width: 640px) */
@media (max-width: 640px) {
    .hero10 {
        min-height: 33vh;
        padding: 10px 0;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 45px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 45px; /* Rounded bottom-right corner */
        background-repeat: no-repeat; /* Prevents repetition of the image */
    }
    .hero10 h2 {
        font-size: 1px;
        line-height: 1px;
    }
    .hero10 h2 .highlighted-text {
        padding: 8px 16px; /* Adjust padding for smaller screens */
        font-size: 15px;
        text-align: left; /* Center-align text */
        align-items: flex-end;
        border-radius: 2px;
    }
    .hero10 p {
        font-size: 16px;
        line-height: 24px;
        text-align: center; /* Center-align text */
        margin-bottom: 20px;
    }
}
@media (max-width:560px) {
    .hero10 {
        width: 100%;
        min-height: 28vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width:460px) {
    .hero10 {
        width: 100%;
        min-height: 20vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width:375px) {
    .hero10 {
        width: 100%;
        min-height: 22vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width: 320px) {
    .hero10 {
        width: 100%;
        min-height: 17vh;
        padding: 10px 0;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}

/*--------------------------------------------------------------
# Hero Section for behind the beans
--------------------------------------------------------------*/
.hero11 {
    width: 100%;
    min-height: 65vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: flex-end; /* Align items at the bottom */
    background: url("../img/behind.webp") top left;
    background-size: cover;
    border-bottom-left-radius: 75px; /* Rounded bottom-left corner */
    border-bottom-right-radius: 75px; /* Rounded bottom-right corner */
}

.hero11:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero11 .container {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero11 .row {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero11 h2 {
    margin: 0;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-color);
    white-space: nowrap;
    width: 100%;
    position: relative;
    bottom: 60px;
    padding-left: 0;
    margin-left: 0;
}

.hero11 h2 .highlighted-text {
    display: inline-block; /* Allows full-width background for text */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    padding: 10px 20px; /* Adds padding around the text */
    border-radius: 8px; /* Optional: rounded corners */
}
.hero11 h2 h8 {
    color: #FFFFFF; /* Different color for "Photos & Videos" */
}

.hero11 h1 span {
    color: var(--accent-color);
}

.hero11 p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero11 .animated-element {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Tablet responsiveness (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero11 {
        min-height: 45vh;
        padding: 40px 0;
        background-size: cover; /* Maintain full image visibility */
        border-bottom-left-radius: 50px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 50px; /* Rounded bottom-right corner */
    }
    .hero11 h2 {
        font-size: 38px;
        line-height: 1.1;
    }
    .hero11 p {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Mobile responsiveness (max-width: 640px) */
@media (max-width: 640px) {
    .hero11 {
        min-height: 33vh;
        padding: 10px 0;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 45px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 45px; /* Rounded bottom-right corner */
        background-repeat: no-repeat; /* Prevents repetition of the image */
    }
    .hero11 h2 {
        font-size: 1px;
        line-height: 1px;
    }
    .hero11 h2 .highlighted-text {
        padding: 8px 16px; /* Adjust padding for smaller screens */
        font-size: 15px;
        text-align: left; /* Center-align text */
        align-items: flex-end;
        border-radius: 2px;
    }
    .hero11 p {
        font-size: 16px;
        line-height: 24px;
        text-align: center; /* Center-align text */
        margin-bottom: 20px;
    }
}
@media (max-width:560px) {
    .hero11 {
        width: 100%;
        min-height: 28vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width:460px) {
    .hero11 {
        width: 100%;
        min-height: 20vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width:375px) {
    .hero11 {
        width: 100%;
        min-height: 22vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width: 320px) {
    .hero11 {
        width: 100%;
        min-height: 17vh;
        padding: 10px 0;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}

/*--------------------------------------------------------------
# Hero Section for profile(journey)
--------------------------------------------------------------*/
.hero12 {
    width: 100%;
    min-height: 65vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: flex-end; /* Align items at the bottom */
    background: url("../img/02.jpg") top left;
    background-size: cover;
    border-bottom-left-radius: 75px; /* Rounded bottom-left corner */
    border-bottom-right-radius: 75px; /* Rounded bottom-right corner */
}

.hero12:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero12 .container {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero12 .row {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero12 h2 {
    margin: 0;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-color);
    white-space: nowrap;
    width: 100%;
    position: relative;
    bottom: 60px;
    padding-left: 0;
    margin-left: 0;
}

.hero12 h2 .highlighted-text {
    display: inline-block; /* Allows full-width background for text */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    padding: 10px 20px; /* Adds padding around the text */
    border-radius: 8px; /* Optional: rounded corners */
}
.hero12 h2 h8 {
    color: #FFFFFF; /* Different color for "Photos & Videos" */
}

.hero12 h1 span {
    color: var(--accent-color);
}

.hero12 p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero12 .animated-element {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Tablet responsiveness (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero12 {
        min-height: 45vh;
        padding: 40px 0;
        background-size: cover; /* Maintain full image visibility */
        border-bottom-left-radius: 50px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 50px; /* Rounded bottom-right corner */
    }
    .hero12 h2 {
        font-size: 38px;
        line-height: 1.1;
    }
    .hero12 p {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Mobile responsiveness (max-width: 640px) */
@media (max-width: 640px) {
    .hero12 {
        min-height: 33vh;
        padding: 10px 0;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 45px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 45px; /* Rounded bottom-right corner */
        background-repeat: no-repeat; /* Prevents repetition of the image */
    }
    .hero12 h2 {
        font-size: 1px;
        line-height: 1px;
    }
    .hero12 h2 .highlighted-text {
        padding: 8px 16px; /* Adjust padding for smaller screens */
        font-size: 15px;
        text-align: left; /* Center-align text */
        align-items: flex-end;
        border-radius: 2px;
    }
    .hero12 p {
        font-size: 16px;
        line-height: 24px;
        text-align: center; /* Center-align text */
        margin-bottom: 20px;
    }
}
@media (max-width:560px) {
    .hero12 {
        width: 100%;
        min-height: 28vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width:460px) {
    .hero12 {
        width: 100%;
        min-height: 25vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width:375px) {
    .hero12 {
        width: 100%;
        min-height: 25vh;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}
@media (max-width: 320px) {
    .hero12 {
        width: 100%;
        min-height: 17vh;
        padding: 10px 0;
        align-items: flex-end;
        background-size: contain; /* Ensure full image is shown */
        border-bottom-left-radius: 55px; /* Rounded bottom-left corner */
        border-bottom-right-radius: 55px; /* Rounded bottom-right corner */
    }
}

/*--------------------------------------------------------------
# Hero Section for contact
--------------------------------------------------------------*/
.hero14 {
    width: 100%;
    min-height: 75vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: flex-end; /* Align items at the bottom */
    background: url("../img/teams.webp") top left;
    background-size: cover;
    border-bottom-left-radius: 75px; /* Rounded bottom-left corner */
    border-bottom-right-radius: 75px; /* Rounded bottom-right corner */
}

.hero14:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.hero14 .container {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero14 .row {
    padding: 0;
    margin: 0;
    max-width: 100%; /* Ensure full width of the container */
}

.hero14 h2 {
    margin: 0;
    font-size: 78px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-color);
    white-space: nowrap;
    width: 100%;
    position: relative;
    bottom: 60px;
    padding-left: 0;
    margin-left: 0;
}

.hero14 h2 .highlighted-text {
    display: inline-block; /* Allows full-width background for text */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    padding: 10px 20px; /* Adds padding around the text */
    border-radius: 8px; /* Optional: rounded corners */
}
.hero14 h2 h8 {
    color: #FFFFFF; /* Different color for "Photos & Videos" */
}

.hero14 h1 span {
    color: var(--accent-color);
}

.hero14 p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}



.hero14 .animated-element {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero14 h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .hero14 p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    position: relative;
}

.testimonials:before {
    content: "";
    background: color-mix(in srgb, #000000, transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.testimonials .testimonials-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 50%);
    opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--default-color);
    opacity: 1;
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*!*--------------------------------------------------------------*/
/*#
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 20px 0;
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.clients .client-logo img {
    padding: 20px 40px;
    max-width: 90%;
    transition: 0.3s;
    opacity: 0.5;
    filter: grayscale(100);
}

.clients .client-logo img:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 640px) {
    .clients .client-logo img {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 80px 20px;
    transition: border ease-in-out 0.3s;
    height: 100%;
}

.services .service-item .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--accent-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.services .service-item .icon i {
    color: var(--contrast-color);
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover {
    border-color: var(--accent-color);
}

.services .service-item:hover h3 {
    color: var(--accent-color);
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio .portfolio-content {
    background-color: var(--surface-color);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow: hidden;
}

.portfolio .portfolio-content img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
    background-color: var(--background-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 20px;
    position: relative;
    z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio .portfolio-content:hover img {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .about-img {
    position: relative;
    margin: 60px 0 0 60px;
}

.about-2 .about-img:before {
    position: absolute;
    inset: -60px 0 0 -60px;
    content: "";
    background: url("../img/about-bg.png") top left;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-2 .about-img img {
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .about-2 .about-img {
        margin: 30px 0 0 30px;
    }

    .about-2 .about-img:before {
        inset: -30px 0 0 -30px;
    }
}

.about-2 h3 {
    font-weight: 300;
    font-size: 32px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-2 h3 {
        font-size: 28px;
    }
}

.about-2 .nav-pills {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-2 .nav-pills li+li {
    margin-left: 40px;
}

.about-2 .nav-link {
    background: none;
    font-size: 18px;
    font-weight: 400;
    color: var(--default-color);
    padding: 12px 0;
    margin-bottom: -2px;
    border-radius: 0;
}

.about-2 .nav-link.active {
    color: var(--accent-color);
    background: none;
    border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
    .about-2 .nav-link {
        font-size: 16px;
    }
}

.about-2 .tab-content h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: var(--default-color);
}

.about-2 .tab-content i {
    font-size: 22px;
    line-height: 0;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    position: relative;
    height: 200px;
}

.stats img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the image is fully visible */
    z-index: 1;
}

.stats:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 90%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.stats .container {
    position: relative;
    z-index: 3;
}

.stats .subheading {
    text-align: center;
}

.stats .subheading h3 {
    font-weight: 700;
    font-size: 36px;
}

.stats .stats-item {
    padding: 30px;
    width: 100%;
}

.stats .stats-item span {
    font-size: 48px;
    display: block;
    color: var(--default-color);
    font-weight: 700;
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}


/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    color: var(--heading-color);
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: var(--heading-font);
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
    transition: 0.5s;
    padding: 30px;
    height: 100%;
}

@media (max-width: 468px) {
    .team .team-member {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }
}

.team .team-member .pic {
    overflow: hidden;
    width: 200px;
    border-radius: 5px;
    flex-shrink: 0;
}

.team .team-member .pic img {
    transition: ease-in-out 0.3s;
}

.team .team-member:hover {
    transform: translateY(-10px);
}

.team .team-member .member-info {
    padding-left: 30px;
}

@media (max-width: 468px) {
    .team .team-member .member-info {
        padding: 30px 0 0 0;
        text-align: center;
    }
}

.team .team-member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
}

.team .team-member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .team-member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
    bottom: 0;
    left: 0;
}

@media (max-width: 468px) {
    .team .team-member span::after {
        left: calc(50% - 25px);
    }
}

.team .team-member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .team-member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

@media (max-width: 468px) {
    .team .team-member .social {
        justify-content: center;
    }
}

.team .team-member .social a {
    background: color-mix(in srgb, var(--default-color), transparent 94%);
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 36px;
    height: 36px;
}

.team .team-member .social a i {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
    margin: 0 2px;
}

.team .team-member .social a:hover {
    background: var(--accent-color);
}

.team .team-member .social a:hover i {
    color: var(--contrast-color);
}

.team .team-member .social a+a {
    margin-left: 8px;
}
/*--------------------------------------------------------------
# team2 Section
--------------------------------------------------------------*/
.team2 .team2-member {
    background-color: var(--surface-color);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
}

.team2 .team2-member .member-img {
    position: relative;
    overflow: hidden;
}

.team2 .team2-member .member-img:after {
    position: absolute;
    content: "";
    left: -1px;
    right: -1px;
    bottom: -1px;
    height: 100%;
    background-color: var(--surface-color);
    -webkit-mask: url("../img/team2-shape.svg") no-repeat center bottom;
    mask: url("../img/team2-shape.svg") no-repeat center bottom;
    -webkit-mask-size: contain;
    mask-size: contain;
    z-index: 1;
}

.team2 .team2-member .social {
    position: absolute;
    right: -100%;
    top: 30px;
    opacity: 0;
    border-radius: 4px;
    transition: 0.5s;
    background: color-mix(in srgb, var(--background-color), transparent 60%);
    z-index: 2;
}

.team2 .team2-member .social a {
    transition: color 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin: 15px 12px;
    display: block;
    line-height: 0;
    text-align: center;
}

.team2 .team2-member .social a:hover {
    color: var(--default-color);
}

.team2 .team2-member .social i {
    font-size: 18px;
}

.team2 .team2-member .member-info {
    padding: 10px 15px 20px 15px;
}

.team2 .team2-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
}

.team2 .team2-member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.team2 .team2-member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team2 .team2-member:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team2 .team2-member:hover .social {
    right: 8px;
    opacity: 1;
}

/*!*--------------------------------------------------------------*/
/*# Testimonials Section*/
/*--------------------------------------------------------------*!*/
/*.testimonials .testimonial-item {*/
/*  background-color: var(--surface-color);*/
/*  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);*/
/*  padding: 30px;*/
/*  position: relative;*/
/*  height: 100%;*/
/*}*/

/*.testimonials .testimonial-item .testimonial-img {*/
/*  width: 90px;*/
/*  border-radius: 50px;*/
/*  border: 6px solid var(--background-color);*/
/*  float: left;*/
/*  margin: 0 10px 0 0;*/
/*}*/

/*.testimonials .testimonial-item h3 {*/
/*  font-size: 18px;*/
/*  font-weight: bold;*/
/*  margin: 10px 0 5px 0;*/
/*}*/

/*.testimonials .testimonial-item h4 {*/
/*  font-size: 14px;*/
/*  color: color-mix(in srgb, var(--default-color), transparent 20%);*/
/*  margin: 0;*/
/*}*/

/*.testimonials .testimonial-item .stars {*/
/*  margin: 10px 0;*/
/*}*/

/*.testimonials .testimonial-item .stars i {*/
/*  color: #ffc107;*/
/*  margin: 0 1px;*/
/*}*/

/*.testimonials .testimonial-item .quote-icon-left,*/
/*.testimonials .testimonial-item .quote-icon-right {*/
/*  color: color-mix(in srgb, var(--accent-color), transparent 50%);*/
/*  font-size: 26px;*/
/*  line-height: 0;*/
/*}*/

/*.testimonials .testimonial-item .quote-icon-left {*/
/*  display: inline-block;*/
/*  left: -5px;*/
/*  position: relative;*/
/*}*/

/*.testimonials .testimonial-item .quote-icon-right {*/
/*  display: inline-block;*/
/*  right: -5px;*/
/*  position: relative;*/
/*  top: 10px;*/
/*  transform: scale(-1, -1);*/
/*}*/

/*.testimonials .testimonial-item p {*/
/*  font-style: italic;*/
/*  margin: 15px 0 0 0;*/
/*  padding: 0;*/
/*}*/

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    overflow: hidden;
}

.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: var(--default-color);
    border-radius: 0;
    border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    font-weight: 600;
    font-size: 15px;
}

.features .nav-link:hover {
    color: var(--accent-color);
}

.features .nav-link.active {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: var(--background-color);
}

.features .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.features .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.features .details p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .features .nav-link {
        border: 0;
        padding: 15px;
    }

    .features .nav-link.active {
        color: var(--accent-color);
        background: var(--accent-color);
    }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing .pricing-item h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .pricing-item h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 16px;
    font-weight: 300;
}

.pricing .pricing-item ul {
    padding: 15px 0;
    list-style: none;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .pricing-item ul li {
    padding-bottom: 16px;
}

.pricing .pricing-item ul i {
    color: var(--accent-color);
    font-size: 18px;
    padding-right: 4px;
}

.pricing .pricing-item ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-decoration: line-through;
}

.pricing .btn-wrap {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    margin: 0 -20px -20px -20px;
    padding: 20px 15px;
    text-align: center;
}

.pricing .btn-buy {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 4px;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .advanced {
    background: var(--accent-color);
    color: var(--contrast-color);
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.blog-posts .post-img {
    max-height: 440px;
    margin: -30px -30px 0 -30px;
    overflow: hidden;
}

.blog-posts .title {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.blog-posts .title a:hover {
    color: var(--accent-color);
}

.blog-posts .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-posts .meta-top ul li+li {
    padding-left: 20px;
}

.blog-posts .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-posts .content {
    margin-top: 20px;
}

.blog-posts .content .read-more {
    text-align: right;
}

.blog-posts .content .read-more a {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 30px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts-side article {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.blog-posts-side .post-img img {
    transition: 0.5s;
}

.blog-posts-side .post-date {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    position: absolute;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.blog-posts-side .post-content {
    padding: 30px;
}

.blog-posts-side .post-title {
    font-size: 20px;
    color: var(--heading-color);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.blog-posts-side .meta i {
    font-size: 16px;
    color: var(--accent-color);
}

.blog-posts-side .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-side p {
    margin-top: 20px;
}

.blog-posts-side hr {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-bottom: 15px;
}

.blog-posts-side .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts-side .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.blog-posts-side article:hover .post-title,
.blog-posts-side article:hover .readmore {
    color: var(--accent-color);
}

.blog-posts-side article:hover .post-img img {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog-pagination li a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}

.blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog-details .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details .meta-top ul li+li {
    padding-left: 20px;
}

.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
}

.blog-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
}

.blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog-details .meta-bottom .share i {
    padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding: 10px 0;
}

.blog-comments .comments-count {
    font-weight: bold;
}

.blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog-comments .comment .comment-img img {
    width: 60px;
}

.blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog-comments .comment h5 a {
    font-weight: bold;
    color: var(--default-color);
    transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
    color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
    padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
    padding-top: 10px;
}

.comment-form form {
    background-color: var(--surface-color);
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
    font-weight: bold;
    font-size: 22px;
}

.comment-form form p {
    font-size: 14px;
}

.comment-form form input {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
}

.comment-form form input:focus {
    color: var(--default-color);
    background-color: var(--surface-color);
    box-shadow: none;
    border-color: var(--accent-color);
}

.comment-form form input::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
    height: 120px;
}

.comment-form form textarea:focus {
    color: var(--default-color);
    box-shadow: none;
    border-color: var(--accent-color);
    background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
    margin-bottom: 25px;
}

.comment-form form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 24px 0 30px 0;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
    font-size: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}



    /*--------------------------------------------------------------
    # Starter Section Section
    --------------------------------------------------------------*/
.starter-section {
    display: flex; /* Use flexbox to center the content */
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    height: 10h; /* Make sure the section takes the full viewport height */
    text-align: center; /* Center the text */
    background-color: var(--background-color); /* Optional: Add a background color */
}

.starter-section p {
    font-size: 24px; /* Increase font size */
    font-weight: 400; /* Increase font weight for a bolder look */
    color: var(--default-color); /* Optional: Change text color */
    margin: 0; /* Remove default margins */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    background-color: var(--surface-color);
    padding: 30px;
    margin: 4px 0 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.widget-item {
    margin-bottom: 40px;
}

.widget-item:last-child {
    margin-bottom: 0;
}

.search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    padding: 3px 10px;
    position: relative;
    transition: 0.3s;
}

.search-widget form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: var(--background-color);
    color: var(--default-color);
}

.search-widget form input[type=text]:focus {
    outline: none;
}

.search-widget form button {
    background: var(--accent-color);
    color: var(--contrast-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.search-widget form button i {
    line-height: 0;
}

.search-widget form button:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget ul li {
    padding-bottom: 10px;
}

.categories-widget ul li:last-child {
    padding-bottom: 0;
}

.categories-widget ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.categories-widget ul a:hover {
    color: var(--accent-color);
}

.categories-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
}

.recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
    color: var(--default-color);
    transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
    color: var(--accent-color);
}

.recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-widget ul li {
    display: inline-block;
}

.tags-widget ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
    display: inline-block;
    transition: 0.3s;
}

.tags-widget ul a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 14px;
}
/*--------------------------------------------------------------
# Courses for shop
--------------------------------------------------------------*/
.courses .course-item {
    border-radius: 5px;
    border: 1px solid #eef0ef;
}

.courses .course-content {
    padding: 15px;
}

.courses .course-content h3 {
    font-weight: 700;
    font-size: 25px;
}

.courses .course-content h3 a {
    color: #37423b;
    transition: 0.3s;
}

.courses .course-content h3 a:hover {
    color: #5fcf80;
}

.courses .course-content h9 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}


.courses .course-content h9::after {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;

}





.courses .course-content p {
    margin-top: 30px;
    font-size: 14px;
    color: #777777;
}

.courses .course-content h4 {
    font-size: 14px;
    background: #5fcf80;
    padding: 7px 14px;
    color: #fff;
    margin: 0;
}

.courses .course-content .price {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: #37423b;
}

.courses .trainer {
    padding-top: 15px;
    border-top: 1px solid #eef0ef;
}

.courses .trainer .trainer-profile img {
    max-width: 50px;
    border-radius: 50px;
}

.courses.image-container img {
    transition: opacity 0.5s ease-in-out;
}

/*.courses .image-container  a:hover img {*/
/*    opacity: 0.8; !* Fade effect on hover *!*/
/*}*/


.courses.image-container2 img {
    transition: opacity 0.5s ease-in-out;
}

.courses .image-container2  a:hover img {
    opacity: 0.8; /* Fade effect on hover */
}



.courses .trainer .trainer-profile span {
    padding-left: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #5a6c60;
}

.courses .trainer .trainer-rank {
    font-size: 18px;
    color: #657a6d;
}

.courses .btn-get-started {
    color: var(--contrast-color);
    background: #d57c42;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;

    display: inline-block;
    padding: 8px 32px;
    border-radius: 4px;
    transition: 0.5s;
    margin: 10px;
    animation: fadeInUp 1s both 0.4s;
}

.courses .btn-get-started:hover {
    background: color-mix(in srgb, #9b5d34, transparent 20%);
}





/* Style for the image container */
.image-container {
    position: relative;
}

/* Position the second image over the first image with opacity for transition */
.second-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* Start invisible */
    visibility: hidden; /* Hide from layout */
    transition: opacity 0.5s ease, visibility 0.3s ease; /* Transition for opacity and visibility */
}

/* Apply the hover effect to the image container */
.image-container:hover .second-image {
    opacity: 1; /* Make visible */
    visibility: visible; /* Ensure it takes up space when visible */
}


/*!*--------------------------------------------------------------*/
/*# Call To Action Section*/
/*--------------------------------------------------------------*!*/
/*.call-to-action {*/
/*    padding: 0;*/
/*}*/

/*.call-to-action .container {*/
/*    padding: 80px;*/
/*    background: color-mix(in srgb, var(--default-color), transparent 96%);*/
/*    border-radius: 15px;*/
/*}*/

/*@media (max-width: 992px) {*/
/*    .call-to-action .container {*/
/*        padding: 60px;*/
/*    }*/
/*}*/

/*.call-to-action .content h3 {*/
/*    font-size: 48px;*/
/*    font-weight: 700;*/
/*}*/

/*.call-to-action .content h3 em {*/
/*    font-style: normal;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*.call-to-action .content h3 em:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 10px;*/
/*    height: 10px;*/
/*    background: color-mix(in srgb, var(--accent-color), transparent 30%);*/
/*    z-index: -1;*/
/*}*/

/*.call-to-action .content p {*/
/*    color: color-mix(in srgb, var(--default-color), transparent 20%);*/
/*    font-weight: 400;*/
/*    font-size: 18px;*/
/*}*/

/*.call-to-action .content .cta-btn {*/
/*    color: var(--contrast-color);*/
/*    font-weight: 500;*/
/*    font-size: 16px;*/
/*    display: inline-block;*/
/*    padding: 12px 40px;*/
/*    border-radius: 5px;*/
/*    transition: 0.5s;*/
/*    margin-top: 10px;*/
/*    background: var(--accent-color);*/
/*}*/

/*.call-to-action .content .cta-btn:hover {*/
/*    background: color-mix(in srgb, var(--accent-color) 90%, black 15%);*/
/*}*/

/*.call-to-action .img {*/
/*    position: relative;*/
/*}*/

/*.call-to-action .img:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: color-mix(in srgb, var(--contrast-color), transparent 20%);*/
/*    border-radius: 15px;*/
/*    transform: rotate(6deg);*/
/*    z-index: 2;*/
/*}*/

/*.call-to-action .img:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: color-mix(in srgb, var(--default-color), transparent 95%);*/
/*    border-radius: 15px;*/
/*    transform: rotate(12deg);*/
/*    z-index: 1;*/
/*}*/

/*.call-to-action .img img {*/
/*    position: relative;*/
/*    z-index: 3;*/
/*    border-radius: 15px;*/
/*    z-index: 3;*/
/*}*/

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--default-color);
}

.call-to-action p {
    color: var(--default-color);
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
    background: #d57c42;
    border: 2px solid #FFFFFF;
}

/*--------------------------------------------------------------
# Onfocus Section
--------------------------------------------------------------*/
.onfocus {
    padding: 0;
}
.onfocus img {
    margin-top: 70px;
    margin-left: 20px;
    margin-bottom: 70px;
    border-radius: 15px; /* Adjust the value for more or less rounding */
    width: 650px; /* Adjust the width or set a fixed width like 500px */
    height: auto; /* Ensures the image maintains its aspect ratio */
}



.onfocus .content {
    background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/onfocus-content-bg.jpg") center center;
    background-size: cover;
    padding: 40px;
}

@media (min-width: 768px) {
    .onfocus .content {
        padding: 80px;
    }
}

.onfocus .content h3 {
    font-weight: 600;
    font-size: 32px;
}

.onfocus .content ul {
    list-style: none;
    padding: 0;
}

.onfocus .content ul li {
    padding-bottom: 10px;
}

.onfocus .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.onfocus .content p:last-child {
    margin-bottom: 0;
}

.onfocus .content .read-more {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    background: #d57c42;
}

.onfocus .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.onfocus .content .read-more:hover {
    background: color-mix(in srgb, #c57748 90%, black 15%);
    padding-right: 19px;
}

.onfocus .content .read-more:hover i {
    margin-left: 10px;
}



/*--------------------------------------------------------------
# act instad of  Section
--------------------------------------------------------------*/
/*.act-services .container {*/
/*  padding: 0; !* Remove container padding if needed *!*/
/*  margin: 0; !* Ensure no margins are applied *!*/
/*}*/
/*.act-services .card {*/
/*  background-color: var(--background-color); !* Fallback color in case image doesn't load *!*/
/*  color: var(--default-color);*/
/*  border: none;*/
/*  position: relative;*/
/*  width: 100vw; !* Make the card full viewport width *!*/
/*  border-radius: 10px;*/
/*  overflow: hidden;*/
/*  min-height: 700px;*/
/*  display: flex;*/
/*  flex-direction: row;*/
/*  background-size: cover; !* Ensure the background image covers the card *!*/
/*  background-position: right center; !* Adjust image position, text on the left *!*/
/*  background-repeat: no-repeat; !* Prevent image repeating *!*/
/*  transition: background-size 0.3s ease-in-out; !* Smooth transition when resizing the card *!*/
/*}*/
/* General styling for larger screens */
/* General styling for larger screens */
/* General styling for larger screens */
/* General styling for larger screens */
/* General styling for larger screens */
.act-services .card {
    background-color: var(--background-color);
    color: var(--default-color);
    border: none;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: row;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease-in-out;
}

.act-services .card:hover {
    background-size: 110%;
}

.act-services .card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

[dir="rtl"] .act-services .card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.act-services .card .card-body {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%; /* Text on the left for larger screens */
}

.act-services .card .card-body h3 {
    font-weight: 700;
    font-size: 34px;
    border-left: 3px solid var(--accent-color);
    color: var(--contrast-color);
}

.act-services .card .card-body h3 a {
    color: var(--contrast-color);
}

.act-services .card .card-body .card-content p {
    font-size: 15px;
    margin-bottom: 0;
    text-align: justify;
    overflow: hidden;
    color: var(--contrast-color);
}

/* Mobile styling */
@media (max-width: 768px) {
    .act-services .card {
        flex-direction: column;
        background: none;
        height: 750px; /* Increase height to show more of the image */
    }

    .act-services .card:before {
        display: none;
    }

    .act-services .card:after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4); /* Slightly lighter overlay for better image visibility */
        z-index: 2;
    }

    .act-services .card .card-body {
        width: 100%;
        margin-top: 500px; /* Push text much lower */
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.9); /* Dark background for the text */
        color: var(--contrast-color);
        z-index: 3; /* Ensure text is on top of the overlay */
    }

    .act-services .card .card-body h3 {
        font-size: 24px;
        border-left: none;
        text-align: left;
    }

    .act-services .card .card-body .card-content p {
        font-size: 14px;
        color: var(--contrast-color);
    }

    .col-7 {
        display: none;
    }

    .col-md-5 {
        width: 100%;
    }
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}
/*--------------------------------------------------------------
# faq2 Section
--------------------------------------------------------------*/
.faq2 .faq2-container .faq2-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
    overflow: hidden;
}

.faq2 .faq2-container .faq2-item:last-child {
    margin-bottom: 0;
}

.faq2 .faq2-container .faq2-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: color 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq2 .faq2-container .faq2-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq2 .faq2-container .faq2-item h3:hover {
    color: var(--accent-color);
}

.faq2 .faq2-container .faq2-item .faq2-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    padding-top: 0;
}

.faq2 .faq2-container .faq2-item .faq2-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq2 .faq2-container .faq2-item .faq2-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: transform 0.3s;
    cursor: pointer;
}

.faq2 .faq2-container .faq2-item .faq2-toggle:hover {
    color: var(--accent-color);
}

.faq2 .faq2-container .faq2-active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq2 .faq2-container .faq2-active h3 {
    color: var(--accent-color);
}

.faq2 .faq2-container .faq2-active .faq2-content {
    max-height: 500px; /* Set an estimated maximum height */
    opacity: 1;
    padding-top: 10px;
}

.faq2 .faq2-container .faq2-active .faq2-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# visions Section
--------------------------------------------------------------*/
.visions .vision-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 30px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.visions .vision-item:before {
    content: "";
    position: absolute;
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    right: -80px;
    top: -80px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: -1;
}

.visions .vision-item:after {
    content: "";
    position: absolute;
    background: color-mix(in srgb, var(--accent-color), transparent 97%);
    right: -140px;
    top: -140px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: -1;
}

.visions .vision-item i {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 24px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.visions .vision-item h4 {
    font-weight: 600;
    margin: 15px 0 0 0;
    transition: 0.3s;
    font-size: 20px;
}

.visions .vision-item h4 a {
    color: var(--heading-color);
}

.visions .vision-item p {
    line-height: 24px;
    font-size: 14px;
    margin: 10px 0 0 0;
}

.visions .vision-item:hover:before,
.visions .vision-item:hover:after {
    background: var(--accent-color);
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px;
}

.visions .vision-item:hover h4 a,
.visions .vision-item:hover p {
    color: var(--contrast-color);
}

.visions .vision-item:hover i {
    background: var(--surface-color);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# fact Section
--------------------------------------------------------------*/
.fact {
    padding: 0;
}

.fact img {
    margin-top: 70px;
    margin-left: 20px;
    margin-bottom: 70px;
    border-radius: 15px; /* Adjust the value for more or less rounding */
    width: 650px; /* Adjust the width or set a fixed width like 500px */
    height: auto; /* Ensures the image maintains its aspect ratio */
}

.fact .content {
    background: linear-gradient(rgb(93, 27, 27), rgb(93, 27, 27)), url("../img/fact-content-bg.jpg") center center;
    background-size: cover;
    padding: 40px;
}

@media (min-width: 768px) {
    .fact .content {
        padding: 80px;
    }
}

.fact .content h3 {
    font-weight: 600;
    font-size: 32px;
}

.fact .content ul {
    list-style: none;
    padding: 0;
}

.fact .content ul li {
    padding-bottom: 10px;
}

.fact .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #2f241e; /* Accent color */
}

.fact .content p:last-child {
    margin-bottom: 0;
}

.fact .content .read-more {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* Contrast color */
    background: #d57841; /* Accent color */
}

.fact .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.fact .content .read-more:hover {
    background: rgb(197, 119, 72); /* Darker mix of accent color */
    padding-right: 19px;
}

.fact .content .read-more:hover i {
    margin-left: 10px;
}
/*--------------------------------------------------------------
# coffee-stats Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# coffee-stats Section
--------------------------------------------------------------*/
.coffee-stats {
    padding: 10px 0;
}

.coffee-stats .coffee-stats-item {
    padding: 30px;
    width: 100%;
}
.coffee-stats .coffee-stats-item2 {
    padding: 30px;
    width: 100%;
}

.coffee-stats .coffee-stats-item span {
    color: var(--heading-color);
    font-size: 48px;
    display: inline-block; /* Change to inline-block to allow content beside */
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.coffee-stats .coffee-stats-item2 span {
    color: var(--heading-color);
    font-size: 48px;
    display: inline-block; /* Change to inline-block to allow content beside */
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.coffee-stats .coffee-stats-item span:after {
    content: "%"; /* Add percentage symbol after the number */
    font-size: 48px; /* Same font size as the number */
    margin-left: 5px; /* Spacing between number and percentage symbol */
    color: var(--heading-color); /* Same color as the number */
}
.coffee-stats .coffee-stats-item2 span:after {
    /*content: "%"; !* Add percentage symbol after the number *!*/
    font-size: 48px; /* Same font size as the number */
    margin-left: 5px; /* Spacing between number and percentage symbol */
    color: var(--heading-color); /* Same color as the number */
}
.coffee-stats .coffee-stats-item2 p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 500;
}


.coffee-stats .coffee-stats-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 500;
}

/*--------------------------------------------------------------
# cup_to_coffees Section
--------------------------------------------------------------*/
.cup_to_coffees .cup_to_coffee-item {
    background-color: var(--surface-color);
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 80px 20px;
    transition: border ease-in-out 0.3s;
    height: 100%;
}

.cup_to_coffees .cup_to_coffee-item .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    /*background: var(--accent-color);*/
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.cup_to_coffees .cup_to_coffee-item .icon i {
    color: var(--contrast-color);
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.cup_to_coffees .cup_to_coffee-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: 0.3s;
}

.cup_to_coffees .cup_to_coffee-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.cup_to_coffees .cup_to_coffee-item:hover {
    border-color: var(--accent-color);
}

.cup_to_coffees .cup_to_coffee-item:hover h3 {
    color: var(--accent-color);
}


#news {
    background-color: #f4f4f4; /* Light grey background for the section */
    padding: 50px 0;
}

#news .btn-custom {
    background-color: var(--accent-color); /* Brown */
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

#news .btn-custom:hover {
    background-color: #d2691e; /* Lighter brown on hover */
}

/*!*--------------------------------------------------------------*/
/*# ceo Section*/
/*--------------------------------------------------------------*!*/
/*.ceo .ceo-img {*/
/*    position: relative;*/
/*    margin: 60px 0 0 60px;*/
/*}*/

/*.ceo .ceo-img:before {*/
/*    position: absolute;*/
/*    inset: -60px 0 0 -60px;*/
/*    content: "";*/
/*    background: url("../img/ceo-bg.png") top left;*/
/*    background-repeat: no-repeat;*/
/*    z-index: 1;*/
/*}*/

/*.ceo .ceo-img img {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

/*@media (max-width: 575px) {*/
/*    .ceo .ceo-img {*/
/*        margin: 30px 0 0 30px;*/
/*    }*/

/*    .ceo .ceo-img:before {*/
/*        inset: -30px 0 0 -30px;*/
/*    }*/
/*}*/

/*.ceo h3 {*/
/*    font-weight: 300;*/
/*    font-size: 32px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .ceo h3 {*/
/*        font-size: 28px;*/
/*    }*/
/*}*/

/*.ceo .nav-pills {*/
/*    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);*/
/*}*/

/*.ceo .nav-pills li+li {*/
/*    margin-left: 40px;*/
/*}*/

/*.ceo .nav-link {*/
/*    background: none;*/
/*    font-size: 18px;*/
/*    font-weight: 400;*/
/*    color: var(--default-color);*/
/*    padding: 12px 0;*/
/*    margin-bottom: -2px;*/
/*    border-radius: 0;*/
/*}*/

/*.ceo .nav-link.active {*/
/*    color: var(--accent-color);*/
/*    background: none;*/
/*    border-bottom: 3px solid var(--accent-color);*/
/*}*/

/*@media (max-width: 575px) {*/
/*    .ceo .nav-link {*/
/*        font-size: 16px;*/
/*    }*/
/*}*/

/*.ceo .tab-content h4 {*/
/*    font-size: 18px;*/
/*    margin: 0;*/
/*    font-weight: 700;*/
/*    color: var(--default-color);*/
/*}*/

/*.ceo .tab-content i {*/
/*    font-size: 22px;*/
/*    line-height: 0;*/
/*    margin-right: 8px;*/
/*    color: var(--accent-color);*/
/*}*/


/*--------------------------------------------------------------
# founder Section
--------------------------------------------------------------*/
.abou .ceo-img {
    position: relative;
    margin: 60px 0 0 60px;
}

.abou .ceo-img:before {
    position: absolute;
    inset: -60px 0 0 -60px;
    content: "";
    background: url("../img/about-bg.png") top left;
    background-repeat: no-repeat;
    z-index: 1;
}

.abou .ceo-img img {
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .abou .ceo-img {
        margin: 30px 0 0 30px;
    }

    .abou .ceo-img:before {
        inset: -30px 0 0 -30px;
    }
}

.abou h3 {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .abou h3 {
        font-size: 28px;
    }
}

.abou .nav-pills {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.abou .nav-pills li+li {
    margin-left: 40px;
}

.abou .nav-link {
    background: none;
    font-size: 18px;
    font-weight: 400;
    color: var(--default-color);
    padding: 12px 0;
    margin-bottom: -2px;
    border-radius: 0;
}

.abou .nav-link.active {
    color: var(--accent-color);
    background: none;
    border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
    .abou .nav-link {
        font-size: 16px;
    }
}

.abou .tab-content h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 25000;
    color: var(--accent-color);
}

.abou .tab-content i {
    font-size: 22px;
    line-height: 0;
    margin-right: 8px;
    color: var(--accent-color);
}
.about .tab-content p {
    font-size: 22px;
    line-height: 1.5; /* Adjust line height for better spacing between lines */
    margin-right: 8px;
    margin-bottom: 12px; /* Add bottom margin for spacing between paragraphs */
    color: var(--accent-color);
    white-space: nowrap; /* Prevent text from wrapping if necessary */
}
.abou.about .tab-content h4 {
    text-align: center; /* Center-aligns the name and title */
}

.abou.about .tab-content .title {
    font-weight: bold;
    color: var(--accent-color); /* Adjust the color as needed */
    display: block; /* Makes the title appear on a new line */
    font-size: 0.9em; /* Slightly smaller font size */
}



/*--------------------------------------------------------------
# product Details Section
--------------------------------------------------------------*/
.product-details{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0px;
}
.product-details .services-list {
    background-color: #ffffff;
    /*padding: 10px 10px;*/
    /*border: 1px solid color-mix(in srgb, var(--surface-color), transparent 10%);*/
    margin-bottom: 20px;
    margin-top: 20px;
}

.product-details .services-list .service-item {
    display: flex;
    justify-content: space-between; /* Pushes the <h6> to the right */
    align-items: center;
    margin-bottom: 20px; /* Space between each pair */
}
/* .product-details .services-list .service-item {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 margin-bottom: 20px;
} */

.product-details .services-list a {
    display: inline-block;
    line-height: 1;
    padding: 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--surface-color), transparent 70%);
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
    transition: 0.3s;
}

.product-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.product-details .services-list a:hover {
    border-color: var(--accent-color);
}

/* Style for h6 tags */
.product-details .services-list h6 {
    margin-left: 10px;
    font-size: 0.9rem;
    font-weight: normal;
    color: #555;
    white-space: nowrap; /* Prevents the "value" from wrapping */
}
/*.product-details .services-list h6 {*/
/*  margin-top: 5px; !* Space between the link and <h6> *!*/
/*  font-size: 0.9rem;*/
/*  font-weight: normal;*/
/*  color: #555;*/
/*  white-space: normal; !* Allows wrapping if content is too long *!*/
/*  text-align: left;*/
/*}*/


.product-details .services-img {
    margin-bottom: 20px;
}

.product-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.product-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.product-details p {
    font-size: 15px;
}

.product-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.product-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.product-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}




/* Dropdown Button */
.dropdown button {
    background-color: #d57c42;
    min-width: 130px;
    width: max-content;
    height: 40px;
    border-radius: 5px;
    color: white;
    margin-left: 15px;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    justify-content: space-evenly;
}
.dropdown button img {
    margin: 0 5px 0 0;
}
.dropdown button img,
.dropdown-content li img {
    width: 28px;
}
.dropdown button,
.dropdown-content li {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-family: "Noto Sans Arabic", sans-serif;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 500;
}
.arrow-down {
    width: 0;
    height: 0;
    display: inline-block;
    vertical-align: middle;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #fff transparent transparent transparent;
    margin: 0 0 0 5px;
}

.dropdown button:hover {
    cursor: pointer;
    background-color: #9b5d34;
}
/* Style for the dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    margin: 1px 0 0 0;
    padding: 0;
    background-color: #f5f5f5;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    overflow-y: scroll;
    max-height: 315px;
}
/* Style for the dropdown content items */
.dropdown-content li {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    justify-content: end;
}
.dropdown-content li img {
    margin: 0 20px 0px 20px;
}
/* Style for the dropdown content items on hover */
.dropdown-content li:hover {
    background-color: #f1f1f1;
    cursor: pointer;
    color: #962828;
    border-radius: 5px;
}
/* Show the dropdown content when the dropdown button is clicked */
.dropdown:focus-within .dropdown-content {
    display: block;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.dropdown-content {
    animation: slideIn 0.3s ease-out;
}
/* Mobile view for dropdown button and content */
@media (max-width: 768px) {
    .dropdown button {
        min-width: 100px; /* Smaller width for mobile */
        height: 35px;     /* Smaller height */
        padding: 8px;     /* Adjust padding */
        font-size: 14px;  /* Smaller font size */
        margin-left: 10px;
    }

    .dropdown button img {
        width: 24px;      /* Smaller icon */
        margin: 0 3px 0 0;
    }

    .dropdown button .arrow-down {
        border-width: 3px 3px 0 3px; /* Adjust arrow size */
        margin: 0 0 0 3px;
    }

    .dropdown-content {
        min-width: 130px; /* Adjust dropdown content width */
        max-height: 200px; /* Reduce max height for smaller screens */
        box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15); /* Lighter shadow */
    }

    .dropdown-content li {
        padding: 10px 12px; /* Smaller padding for list items */
        font-size: 12px;    /* Smaller font size */
    }

    .dropdown-content li img {
        width: 22px; /* Smaller image in the list items */
        margin: 0 10px;
    }

    /* Make sure dropdown shows on mobile click/tap */
    .dropdown:focus-within .dropdown-content {
        display: block;
    }

    /* Add touch-friendly active state for the button */
    .dropdown button:active {
        background-color: #5a5a5a;
    }
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}
::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #c2c9d2;
}
/*product details new from front*/
/*product details new from front*/
.pro-detail .product-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.pro-detail .product-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    /* padding: 20px; */
}

.pro-detail .product-price {
    font-size: 1.8rem;
    color: #ff4d4d;
    font-weight: 600;
}

.pro-detail .product-status {
    font-size: 1rem;
    color: #333;
    /* margin: 5px 0; */
}

.pro-detail .quantity-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    width: 130px;
}

.pro-detail .quantity-btn {
    background-color: #f0f0f0;
    border: none;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro-detail .quantity-btn:hover {
    background-color: #e0e0e0;
}

.pro-detail input[type="number"] {
    border: none;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 1rem;
    -webkit-appearance: none;
    margin: 0;
}

.pro-detail .action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
    width: 100%;
}

.pro-detail .btn-custom {
    background-color: #d57c42;
    color: white;
    font-weight: 600;
    padding: 10px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.pro-detail .btn-custom:hover {
    background-color: #a96130;
    color: rgba(255, 255, 255, 0.8);
}

.pro-detail input[type="number"]:focus {
    outline: none;
}

.pro-detail .equal-height {
    display: flex;
}
/* General styling for the product card */

.pro-detail .product-card {
    border: 1px solid #dee2e6;
    padding: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
/* Smooth transition for images */
.pro-detail .product-card img {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
/* Main Image */
.pro-detail .product-card .main-image {
    position: absolute;
    top: 0;
    left: 0;
    flex: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
}
/* Hover Image */
.pro-detail .product-card .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    transform: scale(1.1);
}
/* Hover Effect */
.pro-detail .product-card:hover .main-image {
    opacity: 0;
    transform: scale(1.1);
}
.pro-detail .product-card:hover .hover-image {
    opacity: 1;
    transform: scale(1);
}


.pro-detail .nav-tabs {
    border-bottom: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
}

.pro-detail .nav-link {
    font-weight: 600;
    border-radius: 0;
    padding: 10px 20px;
    border: 2px solid rgb(255, 255, 255);
    color: #5b3e2c; /* Text color when not active */
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-right: 0; /* Removes space between buttons */
}

.pro-detail .nav-link.active {
    background-color:#5b3e2c;
    color: #fff;
    border-color: #5b3e2c;
}

.pro-detail .nav-link:hover {
    background-color: rgba(171, 139, 86, 0.6);
    color: #2c2c2c;
}

.pro-detail .tab-content {
    border: 1px solid #dee2e6;
    border-top: none;
    padding: 20px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pro-detail .tab-pane {
    flex-grow: 1;
}

.pro-detail .frame-title {
    border: 2px solid #2c2c2c;
    padding: 10px;
    background-color: #e9f5ea;
    margin-bottom: 15px;
    text-align: center;
    border-radius: 5px;
}

.pro-detail table {
    width: 100%;
    border-collapse: collapse;
}

.pro-detail table td {
    border: 1px solid #ccc;
    padding: 8px;
}

.pro-detail .tab-content > .tab-pane {
    display: none;
}

.pro-detail .tab-content > .tab-pane.active {
    display: block;
}

.pro-detail .styled-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.pro-detail .styled-table th,
.pro-detail .styled-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.pro-detail .styled-table th {
    background-color: #5b3e2c;
    color: white;
    font-weight: bold;
}

.pro-detail .styled-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.pro-detail .styled-table tr:hover {
    background-color: #e9ecef;
}

/****************** Video Section ******************/
/****************** for gallery ******************/


.video-section {
    padding-top: 0;
    padding-bottom: 40px;
    background-color: #f9f9f9; /* Light background color */
    border-top-left-radius: 75px;
    border-top-right-radius: 75px;
}

.video-section .container {
    position: relative;
    padding-top: 40px; /* Reduced padding */
}

.video-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; /* Reduced margin */
}

.video-section .col-lg-4,
.video-section .col-md-6 {
    padding: 10px; /* Reduced padding */
    display: flex;
}

.video-card {
    background: #fff; /* White background for video cards */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
    border-radius: 8px;
    overflow: hidden; /* Ensures content stays within rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1; /* Ensures cards take equal space */
    height: 340px; /* Adjusted height to maintain balance */
    min-width: 0; /* Ensures flex items don't grow larger than the container */
}

.video-card:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2); /* More pronounced shadow on hover */
}

.video-card iframe {
    width: 100%;
    height: 280px; /* Adjusted height */
    border-bottom: 1px solid #ddd;
}

.video-content {
    padding: 10px; /* Padding for video content */
    text-align: center;
    flex-grow: 1; /* Ensure content takes up available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-content h4 {
    font-size: 18px; /* Updated from portfolio CSS */
    font-weight: 600; /* Updated from portfolio CSS */
    padding-right: 50px; /* Updated from portfolio CSS */
    margin: 5px 0; /* Reduced margin */
    overflow: hidden; /* Ensure text doesn't overflow */
    text-overflow: ellipsis; /* Add ellipsis for overflowing text */
    white-space: nowrap; /* Prevent line break */
    color: var(--heading-color); /* Updated from portfolio CSS */
    transition: 0.3s; /* Updated from portfolio CSS */
}

.video-content h4 a {
    color: var(--heading-color); /* Updated from portfolio CSS */
    transition: 0.3s; /* Updated from portfolio CSS */
}

.video-content h4 a:hover {
    color: var(--accent-color); /* Updated from portfolio CSS */
}

.video-content p {
    font-size: 14px; /* Updated from portfolio CSS */
    color: color-mix(in srgb, var(--default-color), transparent 30%); /* Updated from portfolio CSS */
    margin-bottom: 0; /* Updated from portfolio CSS */
    padding-right: 50px; /* Updated from portfolio CSS */
    overflow: hidden; /* Ensure text doesn't overflow */
    text-overflow: ellipsis; /* Add ellipsis for overflowing text */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit the number of lines */
    -webkit-box-orient: vertical;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}


/* New Language Button */
/* Language Toggle Button */
.language-toggle button {
    background-color: #d57c42;
    min-width: 130px;
    width: max-content;
    height: 40px;
    border-radius: 5px;
    color: white;
    margin-left: 15px;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-family: "Open Sans", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-family: "Noto Sans Arabic", sans-serif;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 500;
}

/* Flag Image in Button */
.language-toggle button img {
    width: 28px;
    margin: 0 5px 0 0;
}

/* Hover Effect for the Button */
.language-toggle button:hover {
    background-color: #9b5d34;
}

/* Optional: Arrow Down Style (if required) */
.arrow-down {
    width: 0;
    height: 0;
    display: inline-block;
    vertical-align: middle;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #fff transparent transparent transparent;
    margin: 0 0 0 5px;
}
/*--------------------------------------------------------------
# about3 Section
--------------------------------------------------------------*/
.about3 .about3-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.about3 .about3-title {
    font-size: 3.00rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 992px) {
    .about3 .about3-title {
        font-size: 2rem;
    }
}

.about3 .about3-description {
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    text-align: justify; /* Ensures the text is justified */
}

.about3 .feature-list-wrapper {
    margin-bottom: 2rem;
}

.about3 .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about3 .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about3 .feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.about3 .profile .profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.about3 .profile .profile-name {
    font-size: 1.125rem;
    margin: 0;
}

.about3 .profile .profile-position {
    color: var(--accent-color);
    margin: 0;
    font-size: 0.875rem;
}

.about3 .contact-info {
    padding: 1rem 1.5rem;
    background-color: var(--surface-color);
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about3 .contact-info i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.about3 .contact-info .contact-label {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.875rem;
    margin: 0;
}

.about3 .contact-info .contact-number {
    font-weight: 600;
    margin: 0;
}

.about3 .image-wrapper {
    position: relative;
}

@media (max-width: 992px) {
    .about3 .image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .about3 .image-wrapper .images {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .about3 .image-wrapper .main-image {
        margin-left: 0;
    }
}

.about3 .image-wrapper .small-image {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 45%;
    border: 8px solid var(--surface-color);
}
.about3 .image-wrapper .right-image {
    position: absolute;
    top: 20%;
    left: 70%;
    width: 45%;
    border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
    .about3 .image-wrapper .small-image {
        position: static;
        width: 100%;
        margin: 0 auto;
        border: 0;
    }
    @media (max-width: 992px) {
        .about3 .image-wrapper .right-image {
            position: static;
            width: 100%;
            margin: 0 auto;
            border: 0;
        }
}

.about3 .image-wrapper .experience-badge {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 200px;
    animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
    .about3 .image-wrapper .experience-badge {
        position: static;
        width: fit-content;
        margin: 0 auto;
    }
}

.about3 .image-wrapper .experience-badge h3 {
    color: var(--contrast-color);
    font-size: 2.5rem;
    margin: 0;
    line-height: 0.5;
}

.about3 .image-wrapper .experience-badge h3 span {
    font-size: 1rem;
    display: inline-block;
    margin-left: 0.25rem;
}

.about3 .image-wrapper .experience-badge p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
}

@keyframes experience-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}}


