
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/* Language transition */
body {
    transition: opacity 0.3s ease;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.language-switcher .lang-btn {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid rgba(181, 161, 103, 0.3);
    background: transparent;
    color: var(--bs-primary);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.language-switcher .lang-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--bs-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.language-switcher .lang-btn:hover::before,
.language-switcher .lang-btn.active::before {
    width: 200px;
    height: 200px;
}

.language-switcher .lang-btn i,
.language-switcher .lang-btn {
    position: relative;
    z-index: 1;
}

.language-switcher .lang-btn:hover {
    color: var(--bs-white);
    border-color: var(--bs-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(181, 161, 103, 0.3);
}

.language-switcher .lang-btn.active {
    background: var(--bs-primary);
    color: var(--bs-white);
    border-color: var(--bs-primary);
    box-shadow: 0 4px 15px rgba(181, 161, 103, 0.4);
}

.language-switcher .lang-btn i {
    font-size: 12px;
    margin-right: 4px;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #c9b87a 100%);
    box-shadow: 0 4px 15px rgba(181, 161, 103, 0.3);
}

.btn.btn-primary:hover {
    background: linear-gradient(135deg, #c9b87a 0%, var(--bs-primary) 100%);
    color: var(--bs-white);
    box-shadow: 0 8px 30px rgba(181, 161, 103, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    box-shadow: 0 8px 25px rgba(181, 161, 103, 0.3);
    transform: translateY(-3px);
}

/*** Navbar Start ***/
.header-top .topbar {
    padding: 12px 0;
    transition: all 0.3s ease;
}

.header-top.sticky .topbar {
    display: none;
}

/* Contact Info Frame */
.header-top .topbar .contact-info-frame,
.header-top .contact-info-frame {
    background: linear-gradient(135deg, rgba(181, 161, 103, 0.05) 0%, rgba(181, 161, 103, 0.02) 100%);
    border: 2px solid rgba(181, 161, 103, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(181, 161, 103, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-top .topbar .contact-info-frame::before,
.header-top .contact-info-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--bs-primary), #c9b87a, var(--bs-primary));
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.header-top .topbar .contact-info-frame:hover::before,
.header-top .contact-info-frame:hover::before {
    opacity: 0.3;
}

/* Decorative corners for contact frame */
.header-top .topbar .contact-info-frame::after,
.header-top .contact-info-frame::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--bs-primary);
    border-left: 2px solid var(--bs-primary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.header-top .topbar .contact-info-frame:hover,
.header-top .contact-info-frame:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(181, 161, 103, 0.2);
}

.header-top .topbar .contact-info-frame:hover::after,
.header-top .contact-info-frame:hover::after {
    opacity: 0.6;
    width: 25px;
    height: 25px;
}

/* Social Icons Frame */
.header-top .topbar .social-frame {
    background: linear-gradient(135deg, rgba(181, 161, 103, 0.05) 0%, rgba(181, 161, 103, 0.02) 100%);
    border: 2px solid rgba(181, 161, 103, 0.2);
    border-radius: 50px;
    padding: 8px 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(181, 161, 103, 0.1);
    transition: all 0.3s ease;
}

.header-top .topbar .social-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(181, 161, 103, 0.2);
}

.header-top .topbar a {
    transition: all 0.3s ease;
    position: relative;
}

.header-top .topbar a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bs-primary);
    transition: width 0.3s ease;
}

.header-top .topbar a:hover::after {
    width: 100%;
}

.header-top .topbar a:hover {
    color: var(--bs-primary) !important;
    transform: translateY(-2px);
}

/* Icon animations in contact frame */
.contact-info-frame i {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-info-frame .d-flex:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--bs-primary) !important;
}

/* Social icons styling */
.social-frame .btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(181, 161, 103, 0.1);
    border: 1px solid rgba(181, 161, 103, 0.2);
    transition: all 0.3s ease;
}

.social-frame .btn:hover {
    background: var(--bs-primary);
    color: var(--bs-white) !important;
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 6px 20px rgba(181, 161, 103, 0.3);
    border-color: var(--bs-primary);
}

.header-top .topbar .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-top .topbar .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(181, 161, 103, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.header-top .topbar .btn:hover::before {
    width: 300px;
    height: 300px;
}

.header-top .topbar .btn:hover {
    transform: scale(1.1);
}

.header-top .topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.header-top .topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 12px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

.header-top {
    height: auto;
    min-height: 125px;
    position: relative;
    background: var(--bs-white);
    border-bottom: 1px solid rgba(181, 161, 103, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 15px 0;
}

.header-top.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: auto;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.5s ease;
}

.header-top.sticky .row:first-child {
    display: none;
}

.header-top.sticky .navbar-brand .logo-frame img {
    max-height: 50px !important;
}

.header-top.sticky .navbar-brand-2 img {
    max-height: 45px !important;
}

.header-top.sticky .language-switcher-mobile .lang-btn {
    padding: 5px 10px;
    font-size: 11px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-brand {
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease;
}

/* Logo Frame */
.logo-frame {
    background: var(--bs-white);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 15px;
    padding: 15px 25px;
    box-shadow: 0 8px 25px rgba(181, 161, 103, 0.15), 
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
}

.logo-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--bs-primary), #c9b87a, var(--bs-primary));
    border-radius: 15px;
    z-index: -1;
    transition: all 0.6s ease;
}

/* Decorative corner accent */
.logo-frame::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    border-top: 3px solid var(--bs-primary);
    border-right: 3px solid var(--bs-primary);
    border-radius: 0 8px 0 0;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-frame:hover::before {
    background: linear-gradient(135deg, #c9b87a, var(--bs-primary), #c9b87a);
}

.logo-frame:hover::after {
    opacity: 1;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
}

.logo-frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(181, 161, 103, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Logo pulse animation on load */
@keyframes logoPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(181, 161, 103, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 12px 35px rgba(181, 161, 103, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }
}

.logo-frame {
    animation: logoPulse 2s ease-in-out 0.5s;
}

/* Shine effect animation */
@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.contact-info-frame,
.social-frame,
.menu-frame {
    position: relative;
}

.contact-info-frame::before,
.menu-frame::before {
    animation: shine 3s ease-in-out 1s;
}

.navbar-brand:hover {
    transform: translateY(-3px);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

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

.header-top.sticky .navbar-brand img {
    max-height: 60px !important;
}

/* Removed dark background element for modern clean design */

@media (min-width: 992px) {
    .header-top .topbar {
        background: transparent;
    }

    .navbar-brand {
        display: flex !important;
    }

    .navbar-brand-2 {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 80px;
    }

    .navbar {
        justify-content: space-between;
    }

    .header-top .container {
        max-height: 80px;
    }

    .navbar-brand {
        display: none !important;
    }

    .navbar-brand-2 {
        display: flex !important;
        align-items: center;
        padding: 10px 0;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: 0;
    }
}

.nav-bar .navbar {
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.navbar-light .navbar-brand:hover img {
    filter: brightness(1.1);
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 70px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 10px 16px;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 25px;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.navbar .navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--bs-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-item:hover .nav-link,
.navbar .navbar-nav .nav-item.active .nav-link {
    background: rgba(188, 170, 122, 0.08);
    color: var(--bs-primary);
}

.navbar .navbar-nav .nav-item:hover .nav-link::before,
.navbar .navbar-nav .nav-item.active .nav-link::before {
    width: 60%;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .navbar-nav .nav-item:first-child {
    margin-left: 0;
}

.navbar .navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.navbar .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
}

/* Action buttons in menu */
.menu-frame .d-flex.align-items-center {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(188, 170, 122, 0.2);
}

.menu-frame .btn-search {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.menu-frame .btn-primary.px-4 {
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 24px !important;
    white-space: nowrap;
}

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

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

.btn-search {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-search::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-search:hover::after {
    width: 200px;
    height: 200px;
}

.btn-search:hover {
    transform: rotate(90deg) scale(1.1);
}

.btn.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(181, 161, 103, 0.3);
}

.btn.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn.btn-primary:hover::before {
    left: 100%;
}

.btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(181, 161, 103, 0.4);
}

@media (max-width: 991px) {
    .header-top {
        max-height: none;
    }
    
    .header-top .row:first-child {
        display: none;
    }

    .navbar {
        padding: 20px 0;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-brand-2 {
        flex: 0 0 auto;
    }
    
    /* Mobile language switcher in navbar */
    .language-switcher-mobile {
        display: flex;
        gap: 6px;
        align-items: center;
    }
    
    .language-switcher-mobile .lang-btn {
        font-size: 12px;
        padding: 6px 12px;
        min-width: 60px;
        border-radius: 20px;
    }
    
    .navbar-toggler {
        flex: 0 0 auto;
        margin-left: 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
    
    /* Hide desktop language switcher on mobile */
    .language-switcher {
        display: none !important;
    }
    
    .header-top .container {
        max-height: none;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown .dropdown-menu .dropdown-item {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    margin: 4px 8px;
}

.dropdown .dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--bs-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.dropdown .dropdown-menu .dropdown-item:hover::before {
    transform: translateX(0);
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: rgba(188, 170, 122, 0.1);
    color: var(--bs-primary);
    padding-left: 28px;
}

@media (min-width: 992px) {
    .navbar {
        padding: 15px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        margin: 0;
        padding: 0;
    }

    /* Menu Frame */
    .menu-frame {
        background: linear-gradient(135deg, rgba(188, 170, 122, 0.03) 0%, rgba(255, 255, 255, 0.9) 100%);
        border: 2px solid rgba(188, 170, 122, 0.25);
        border-radius: 60px;
        padding: 8px 30px;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(188, 170, 122, 0.12),
                    inset 0 1px 0 rgba(255, 255, 255, 0.6);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        max-width: 100%;
    }

    .menu-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(188, 170, 122, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .menu-frame:hover::before {
        left: 100%;
    }

    /* Decorative dots for menu frame */
    .menu-frame::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 20px;
        width: 4px;
        height: 4px;
        background: var(--bs-primary);
        border-radius: 50%;
        transform: translateY(-50%);
        box-shadow: 0 0 8px rgba(188, 170, 122, 0.4),
                    6px 0 0 var(--bs-primary),
                    -6px 0 0 var(--bs-primary);
        opacity: 0.4;
        transition: all 0.3s ease;
    }

    .menu-frame:hover::after {
        opacity: 0.7;
        box-shadow: 0 0 12px rgba(188, 170, 122, 0.6),
                    8px 0 0 var(--bs-primary),
                    -8px 0 0 var(--bs-primary);
    }

    .menu-frame:hover {
        box-shadow: 0 6px 30px rgba(188, 170, 122, 0.18),
                    inset 0 1px 0 rgba(255, 255, 255, 0.8);
        border-color: rgba(188, 170, 122, 0.4);
        transform: translateY(-2px);
    }

    .menu-frame .navbar-nav {
        gap: 5px;
        flex-wrap: nowrap;
    }

    .navbar .navbar-nav .nav-btn {
        width: auto;
        display: flex;
        margin-left: 20px;
        align-items: center;
        gap: 10px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 15px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .header-top .navbar-brand {
        position: relative;
        padding: 0;
        display: flex;
        align-items: center;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.hero-section {
    background-image: url(../img/carousel-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(181, 161, 103, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.hero-section .carousel-caption {
    z-index: 2;
}

.hero-section h1, .hero-section h4, .hero-section p {
    animation: fadeInUp 1s ease;
}

.hero-section .btn {
    animation: fadeInUp 1.2s ease;
}

.hero-bg-half-1 {
    background-image: url(../img/header-2.jpg);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
    animation: slideInRight 1.2s ease;
    transition: transform 0.3s ease;
}

.hero-section:hover .hero-bg-half-1 {
    transform: scale(1.05);
}

.hero-bg-half-2 {
    background-image: url(../img/header-1.jpg);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-shape-1 {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #c9b87a 100%);
    width: 150px;
    height: 50%;
    position: absolute;
    left: 54%;
    top: 0;
    transform: translateY(-50%) skew(-26deg, 0deg);
    position: relative;
    animation: bounceIn 1.5s ease;
}

.hero-shape-1:before {
    background-color: var(--bs-dark);
    content: "";
    width: 50%;
    height: 80%;
    position: absolute;
    right: 0;
    top: 0;
}

.hero-shape-2 {
    background-color: var(--bs-dark);
    width: 150px;
    height: 50%;
    position: absolute;
    right: -43%;
    bottom: 0;
    transform: translateY(50%) skew(-25deg, 0deg);
    position: relative;
    z-index: 1;
}

.hero-shape-2::after {
    background-color: var(--bs-primary);
    content: "";
    width: 75px;
    height: 80%;
    position: absolute;
    right: 0;
    bottom: 0;
}

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bs-white);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(181, 161, 103, 0.4);
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 0;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 0;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 65px 0 var(--bs-primary);
    color: var(--bs-dark);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    z-index: 9;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 700px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/banner-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Banner Start ***/
.banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/banner-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.banner .container {
    position: relative;
    z-index: 99;
}

.banner::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    top: -200px;
    left: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    bottom: -200px;
    right: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner .banner-design-1 {
    position: absolute;
    width: 30px;
    height: 500px;
    top: -165px;
    left: 0;
    background: var(--bs-dark);
    transform: rotate(45deg);
    z-index: 2;
}

.banner .banner-design-2 {
    position: absolute;
    width: 30px;
    height: 500px;
    bottom: -165px;
    right: 0;
    background: var(--bs-dark);
    transform: rotate(45deg);
    z-index: 2;
}
/*** Banner End ***/

/*** Service Start ***/
.service .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
}


.owl-stage-outer {
    margin-right: -1px;
}
.service .nav-item a.active {
    background: var(--bs-primary);
}

.service .nav-item a span {
    color: var(--bs-dark);
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    background: var(--bs-light);
    transition: 0.5s;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .service-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }
    
    .service-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 991px) {
    .owl-stage-outer {
        margin-bottom: 70px;
    }
    .service-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .service .nav {
        display: flex;
        justify-content: center;
    }
}
/*** Service End ***/

/*** Projects Start ***/
.projects .nav-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .09);
}

.projects-item .projects-content {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.projects .nav-item a.active {
    background: var(--bs-primary);
}

.projects .nav-item a span {
    color: var(--bs-dark);
}

.projects .nav-item a.active span {
    color: var(--bs-white);
}

.projects .nav-item a.active .projects-icon {
    background: var(--bs-dark) !important;
}

.projects .nav-item a.active .projects-icon span {
    color: var(--bs-primary);
}
/*** Projects End ***/


/*** Blog Start ***/
.blog .blog-item {
    height: 100%;
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    background: rgba(246, 138, 10, .3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    width: 100%;
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-heading {
    position: relative;
    background: var(--bs-white);
}

.blog .blog-item .blog-heading a.h4 {
    position: relative;
    width: 100%;
    display: inline-flex;
    transition: 0.5s;
    z-index: 2;
}

.blog .blog-item .blog-heading::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    right: 0;
    bottom: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-heading::after {
    width: 100%;
    background: var(--bs-primary);
}

.blog .blog-item:hover .blog-heading a.h4 {
    color: var(--bs-white);
}

.blog .blog-item:hover .blog-heading a.h4:hover {
    color: var(--bs-dark);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px; right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}
/*** Team End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item {
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border: none;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(246, 138, 10, .9);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
    background: var(--bs-light);
}
/*** FAQs End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
}

.testimonial .testimonial-item .customer-text {
    border: 1px solid var(--bs-primary);
    border-top: none;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--bs-dark);
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px;
    border: 2px solid var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

/*** Contact Form Start ***/
#contactForm {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

#contactForm .form-floating {
    position: relative;
}

#contactForm .form-control,
#contactForm .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.625rem 0.75rem 0.625rem 0.75rem;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s ease;
    background: #f8f9fa;
    height: calc(3.5rem + 2px);
}

#contactForm textarea.form-control {
    height: auto;
    min-height: 125px;
    padding-top: 1.875rem;
    padding-bottom: 0.625rem;
}

/* Floating label improvements */
#contactForm .form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 2px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    color: #6c757d;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.65;
    z-index: 1;
}

#contactForm .form-floating > .form-control:focus ~ label,
#contactForm .form-floating > .form-control:not(:placeholder-shown) ~ label,
#contactForm .form-floating > .form-select:not([value=""]):valid ~ label,
#contactForm .form-floating > .form-select.has-value ~ label,
#contactForm .form-floating > .form-select:focus ~ label {
    opacity: 1;
    transform: scale(0.75) translateY(-0.75rem) translateX(0.15rem);
    padding: 0.25rem 0.5rem;
    background: linear-gradient(to bottom, transparent 50%, #ffffff 50%);
    border-radius: 5px;
    color: var(--bs-primary);
    font-weight: 600;
    height: auto;
}

/* Icon styling in labels */
#contactForm .form-floating > label i {
    font-size: 14px;
}

#contactForm .form-control:focus,
#contactForm .form-select:focus {
    background: #ffffff;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(181, 161, 103, 0.15);
    outline: 0;
}

/* Valid state */
#contactForm .form-control.is-valid,
#contactForm .form-select.is-valid {
    border-color: #198754;
    background-color: #f8fff8;
    padding-right: calc(1.5em + 0.75rem);
}

#contactForm .form-control.is-valid:focus,
#contactForm .form-select.is-valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.15);
}

/* Invalid state */
#contactForm .form-control.is-invalid,
#contactForm .form-select.is-invalid {
    border-color: #dc3545;
    background-color: #fff8f8;
    padding-right: calc(1.5em + 0.75rem);
}

#contactForm .form-control.is-invalid:focus,
#contactForm .form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15);
}

/* Validation feedback */
#contactForm .invalid-feedback,
#contactForm .valid-feedback {
    display: none;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

#contactForm .invalid-feedback {
    color: #dc3545;
}

#contactForm .valid-feedback {
    color: #198754;
}

#contactForm .form-control.is-invalid ~ .invalid-feedback,
#contactForm .form-select.is-invalid ~ .invalid-feedback,
#contactForm .form-check-input.is-invalid ~ .invalid-feedback {
    display: block;
}

#contactForm .form-control.is-valid ~ .valid-feedback,
#contactForm .form-select.is-valid ~ .valid-feedback {
    display: block;
}

/* Checkbox styling */
#contactForm .form-check {
    padding-left: 0;
    margin-bottom: 1rem;
}

#contactForm .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #dee2e6;
    margin-top: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

#contactForm .form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

#contactForm .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(181, 161, 103, 0.15);
    border-color: var(--bs-primary);
}

#contactForm .form-check-label {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
    user-select: none;
}

/* Select dropdown arrow */
#contactForm .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

/* Textarea resize */
#contactForm textarea.form-control {
    resize: vertical;
}

/* Alert messages */
#contactForm .alert {
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border: none;
    animation: slideInDown 0.5s ease;
    font-weight: 500;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#contactForm .alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

#contactForm .alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Submit button */
#submitBtn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#submitBtn .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}

#submitBtn i {
    transition: transform 0.3s ease;
}

#submitBtn:hover:not(:disabled) i {
    transform: translateX(5px);
}

/* Contact info cards hover effect */
.contact .bg-white {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.contact .bg-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact .fa-map-marker-alt,
.contact .fa-envelope,
.contact .fa-phone-alt {
    transition: all 0.3s ease;
}

.contact .bg-white:hover .fa-map-marker-alt,
.contact .bg-white:hover .fa-envelope,
.contact .bg-white:hover .fa-phone-alt {
    transform: scale(1.1) rotate(5deg);
}

/* Google Maps styling */
.contact iframe {
    border: 3px solid rgba(181, 161, 103, 0.2);
    transition: all 0.3s ease;
}

.contact iframe:hover {
    border-color: var(--bs-primary);
    box-shadow: 0 10px 40px rgba(181, 161, 103, 0.2);
}

/* Mobile responsive */
@media (max-width: 991px) {
    #contactForm .form-control,
    #contactForm .form-select {
        font-size: 14px;
    }
    
    #contactForm {
        padding: 1rem !important;
    }
    
    #contactForm .form-floating > label {
        font-size: 14px;
    }
}

/* Contact page layout improvements */
.contact .container {
    max-width: 1400px;
}

.contact .row {
    margin: 0 auto;
}

.contact .col-lg-6 {
    padding-left: 1rem;
    padding-right: 1rem;
}
/*** Contact Form End ***/





