/* Header Logo Styling */
.custom-header__brand img {
    display: block;
    width: auto;
    max-width: 180px;
    margin: 0 0.5rem 0 0;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
    padding: 4px 8px;
}
.custom-header__brand {
    display: flex;
    align-items: center;
    height: 64px;
}
/* Hamburger and Sidebar Styles */
.custom-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.custom-header__hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 991.98px) {
    .custom-header__nav {
        display: none;
    }
    .custom-header__hamburger {
        display: flex;
    }
}

.custom-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 260px;
    height: 100vh;
    background: rgba(28, 30, 50, 0.98);
    box-shadow: -2px 0 16px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.custom-sidebar.open {
    transform: translateX(0);
}
.custom-sidebar__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 1.5rem;
}
.custom-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.custom-sidebar__nav > a,
.custom-sidebar__dropdown > span {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.custom-sidebar__nav > a:hover,
.custom-sidebar__dropdown > span:hover {
    background: var(--primary);
    color: #fff;
}
.custom-sidebar__dropdown {
    position: relative;
}
.custom-sidebar__dropdown-menu {
    display: none;
    flex-direction: column;
    background: rgba(28, 30, 50, 0.95);
    margin-top: 0.25rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.custom-sidebar__dropdown.open .custom-sidebar__dropdown-menu {
    display: flex;
}
.custom-sidebar__dropdown-menu a {
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}
.custom-sidebar__dropdown-menu a:hover {
    background: var(--primary);
    color: #fff;
}
.custom-sidebar__dropdown > span::after {
    content: '\25BC';
    font-size: 0.7em;
    margin-left: 0.5em;
}
.custom-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
}
.custom-header__container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}
.custom-header__brand {
    color: var(--primary);
    font-size: 2rem;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
}
.custom-header__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.custom-header__nav > a,
.custom-header__dropdown > span {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
    cursor: pointer;
}
.custom-header__nav > a:hover,
.custom-header__dropdown > span:hover {
    color: var(--primary);
}
.custom-header__dropdown {
    position: relative;
}
.custom-header__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(28, 30, 50, 0.95);
    min-width: 160px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-radius: 0 0 8px 8px;
    flex-direction: column;
    z-index: 1001;
}
.custom-header__dropdown:hover .custom-header__dropdown-menu {
    display: flex;
}
.custom-header__dropdown-menu a {
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}
.custom-header__dropdown-menu a:hover {
    background: var(--primary);
    color: #fff;
}
@media (max-width: 768px) {
    .custom-header__container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1rem;
    }
    .custom-header__nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
}
/* Responsive */
@media (max-width:991.98px) {
    .custom-header__nav {
        display:none
    }
    .custom-header__hamburger {
        display:flex
    }
}
@media (max-width:768px) {
    .custom-header__container {
        flex-direction:row; /* Change from column to row */
        align-items:center; /* Keep items centered vertically */
        justify-content:space-between; /* Space between logo and hamburger */
        padding:0 1rem
    }
    .custom-header__nav {
        display:none; /* Keep nav hidden */
    }
}
/* Merged Hero and Navbar Customization */
.hero-merged .nav-bar {
    background: transparent !important;
    box-shadow: none;
}

.hero-merged .navbar {
    background: rgba(28, 30, 50, 0.5) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.hero-merged .navbar .navbar-nav .nav-link {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-merged .navbar .navbar-nav .nav-link.active,
.hero-merged .navbar .navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .hero-merged .navbar {
        background: rgba(28, 30, 50, 0.95) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
}

/********** Template CSS **********/
:root {
    --primary: #F77D0A;
    --secondary: #2B2E4A;
    --light: #F4F5F8;
    --dark: #1C1E32;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px 15px;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 30, 50, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.page-header {
    height: 400px;
    margin-bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(../img/bg-banner.jpg);
    background-attachment: fixed;
}

@media (max-width: 991.98px) {
    .page-header {
        height: 300px;
    }
}

.service-item {
    height: 320px;
    background: var(--light);
    transition: .5s;
}

.service-item:hover,
.service-item.active {
    background: var(--secondary);
}

.service-item h1,
.service-item h4 {
    transition: .5s;
}

.service-item:hover h1,
.service-item.active h1 {
    color: var(--dark) !important;
}

.service-item:hover h4,
.service-item.active h4 {
    color: var(--light);
}

.rent-item {
    padding: 30px;
    text-align: center;
    background: var(--light);
    transition: .5s;
}

.rent-item:hover,
.rent-item.active {
    background: var(--secondary);
}

.rent-item h4 {
    transition: .5s;
}

.rent-item:hover h4,
.rent-item.active h4 {
    color: var(--light);
}

.team-item {
    padding: 30px 30px 0 30px;
    text-align: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover,
.owl-item.center .team-item {
    background: var(--secondary);
}

.team-item h4 {
    transition: .5s;
}

.owl-item.center .team-item h4,
.owl-item.center .rent-item h4 {
    color: var(--light);
}

.team-item .team-social {
    top: 0;
    left: 0;
    opacity: 0;
    transition: .5s;
    background: var(--light);
}

.owl-item.center .team-item .team-social,
.owl-item.center .rent-item {
    background: var(--secondary);
}

.team-item:hover .team-social {
    opacity: 1;
    background: var(--secondary);
}

.team-carousel .owl-nav,
.related-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next,
.related-carousel .owl-nav .owl-prev,
.related-carousel .owl-nav .owl-next {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover,
.related-carousel .owl-nav .owl-prev:hover,
.related-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.vendor-carousel .owl-dots,
.testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-carousel .owl-dot,
.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    transition: .5s;
}

.vendor-carousel .owl-dot.active,
.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 80px;
    height: 80px;
}

.testimonial-carousel .owl-item .testimonial-item {
    height: 350px;
    transition: .5s;
    background: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--secondary);
}

.testimonial-carousel .owl-item .testimonial-item h1,
.testimonial-carousel .owl-item .testimonial-item h4 {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item h1 {
    color: var(--dark) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h4 {
    color: var(--light);
}

.bg-banner {
    background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(../img/bg-banner.jpg);
    background-attachment: fixed;
}

        .testimonials-container {
            max-width: 1200px;
            width: 100%;
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 40px;
        }

        .testimonials-wrapper {
            position: relative;
            overflow: hidden;
            padding: 0 40px;
        }

        .testimonials-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
        }

        .testimonial-card {
            flex: 0 0 calc(33.333% - 20px);
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            position: relative;
            min-height: 320px;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #3498db;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
        }

        .user-details h3 {
            font-weight: 700;
            color: #2c3e50;
            font-size: 18px;
            margin-bottom: 4px;
        }

        .user-details .time {
            color: #7f8c8d;
            font-size: 14px;
        }

        .google-logo {
            color: #5f6368;
            font-size: 22px;
        }

        .rating-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .stars {
            color: #FFD700;
            font-size: 18px;
        }

        .verified-badge {
            background-color: #e8f5e9;
            color: #2e7d32;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .testimonial-text {
            color: #34495e;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
        }

        .read-more {
            color: #2980b9;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            align-self: flex-start;
            transition: color 0.3s;
        }

        .read-more:hover {
            color: #1a5276;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            color: #2c3e50;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            z-index: 10;
        }

        .slider-btn:hover {
            background-color: #f1f8ff;
            transform: translateY(-50%) scale(1.05);
        }

        .slider-btn.prev {
            left: 0;
        }

        .slider-btn.next {
            right: 0;
        }

        .slider-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .indicator.active {
            background-color: #3498db;
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 15px);
            }
            
            .testimonials-wrapper {
                padding: 0 30px;
            }
        }

        @media (max-width: 768px) {
            .testimonial-card {
                flex: 0 0 100%;
            }
            
            .testimonials-wrapper {
                padding: 0 20px;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .testimonials-container {
                padding: 25px 15px;
            }
            
            .testimonials-wrapper {
                padding: 0 10px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .testimonial-card {
                padding: 20px;
            }
        }
.nav-bar .navbar {
  background: rgba(0, 0, 0, 0.65);
}
#header-carousel,
#header-carousel .carousel-item {
  height: 100vh;
}
#header-carousel .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
a{
  text-decoration:none;
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}
a{
    text-decoration:none;
}
@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}
.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
  
  /* Added for left positioning */
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
}

.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
  
  /* Added for left positioning */
  position: fixed;
  left: 20px;
  bottom: 85px;
  z-index: 1000;
  text-align: center;
  width: 60px;
}