:root {
    --primary-color: #D3AF36;
    --primary-dark: #D3AF36;
    --secondary-color: #1A2A44;
    --secondary-light: #2E4372;
    --accent-color: #8B0000;
    --accent-bright: #006B3C;
    --light-color: #F8F1E9;
    --light-soft: #EDE4D8;
    --dark-color: #1F2521;
    --neutral-gray: #4A4E49;
    --counter-color-1: #FFD700;
    --counter-color-2: #D4A017;
    --counter-color-3: #8B0000;
    --counter-color-4: #1A2A44;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-color);
    line-height: 1.8;
    margin: 0;
    overflow-x: hidden;
    color: var(--neutral-gray);
}

/* Common CSS */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
}

p {
    color: var(--neutral-gray);
}

.fw-bold {
    text-shadow: 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.7);
}

.clearfix {
    overflow: auto;
}

.visible-xs {
    display: none !important; 
}

.hidden-xs {
    display: block !important; 
}

.navbar {
    padding: 2px !important; 
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: var(--bs-navbar-brand-margin-end);
    font-size: var(--bs-navbar-brand-font-size);
    color: var(--bs-navbar-brand-color);
    text-decoration: none;
    white-space: nowrap;
}

.btn {
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-bright));
    color: var(--light-soft);
    border: none;
}

.btn-primary:hover {
    background: var(--accent-bright);
    transform: translateY(-0.1875rem);
    color: var(--light-soft);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--accent-bright);
    color: var(--light-soft);
    border-color: var(--accent-bright);
    transform: translateY(-0.1875rem);
}

.title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    position: relative;
}

.title::after {
    content: '';
    position: absolute;
    width: 3.75rem;
    height: 0.1875rem;
    background: #ffffff26;
    bottom: -12px;
    left: 0;
}

.no-underline {
    text-decoration: none;
}




/* Header CSS */
.top-header {
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    color: var(--light-soft);
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.3);
}

.top-header a {
    color: var(--light-soft);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-header a:hover {
    color: var(--accent-bright);
}

.top-header i {
    margin-right: 0.375rem;
}

.social-icons a {
    color: var(--light-soft);
    margin-left: 0.9375rem;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-bright);
    transform: scale(1.2);
}

.main-header {
    background: rgba(248, 241, 233, 0.98);
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in;
}

.navbar-brand img {
    width: 180px;
    height: auto;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 600;
    margin: 0 0.9375rem;
    text-transform: uppercase;
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.05em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
}


.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-bright);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.menu_btn {
    background: var(--light-soft);
    border: 2px solid var(--primary-dark);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: none; 
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu_btn:hover {
    background: var(--accent-bright);
    border-color: var(--secondary-light);
}

.menu_btn i {
    font-size: 35px;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.menu_btn:hover i {
    color: var(--light-soft);
}

.fixed-top-item {
    display: flex;
    gap: 0.625rem;
    align-items: center;
}

.fixed-top-item.fixed {
    position: fixed;
    top: 0.625rem;
    right: 7.5rem;
    z-index: 2000;
}

/* Offcanvas Menu */
.offcanvas {
    background: var(--light-soft);
    border-left: 0.1875rem solid var(--primary-dark);
}

.offcanvas-header {
    background: #111b2d;
    color: var(--light-soft);
    padding: 1.5rem;
}

.offcanvas-body {
    padding: 1.25rem;
    color: var(--dark-color);
}

.offcanvas-body h6 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.offcanvas-body a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.offcanvas-body a:hover {
    color: var(--accent-bright);
}

.button-cta {
    background: var(--primary-dark);
    color: var(--light-soft);
    padding: 0.625rem;
    border-radius: 0.3125rem;
    display: block;
    text-align: center;
    margin-bottom: 0.625rem;
    transition: all 0.3s ease;
}

.button-cta:hover {
    background: var(--accent-bright);
    transform: translateY(-0.125rem);
    color: var(--light-soft);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(29, 48, 82, 0.9), rgba(0, 0, 0, 0.8)); 
    backdrop-filter: blur(10px); 
    border-radius: 20px 20px 0 0; 
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.2); 
    justify-content: space-around; 
    align-items: center;
    padding: 4px 0px;
}


.mobile-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20%;
    max-width: 71px;
    padding: 3px 0!important;
    border-radius: 15px;
    position: relative;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}



.mobile-menu a i {
    font-size: 28px;
    margin-bottom: 8px;
    color: #f5f5f5;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}


.mobile-menu a span {
    font-size: 11px; 
    font-weight: 500;
    color: #f5f5f5;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3); 
    transition: color 0.3s ease;
}



/* Animation on Load */
.mobile-menu {
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}



/* Banner Section CSS */
.hero-banner {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-bannerdetails {
    position: relative;
    height: 65vh;
    overflow: hidden;
}

.owl-carousel .item {
    position: relative;
    height: 90vh;
}

.owl-carousel .breadcumbs {
    position: relative;
    height: 65vh;
}

.owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 768px) {
    .hero-content-wrapper {
        top: 30%!important;
    }
}

.hero-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 0.9375rem;
    z-index: 2;
}

.hero-content {
    max-width: 43.75rem;
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    text-shadow: 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.7);
    color: var(--primary-dark);
    text-transform: uppercase;
}

.hero-titledetails {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 12.25rem;
    text-shadow: 0.1875rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.7);
    color: var(--primary-dark);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 1.875rem;
    text-shadow: 0.0625rem 0.0625rem 0.1875rem rgba(0, 0, 0, 0.5);
    color: var(--light-soft);
}

.owl-carousel .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 42, 68, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.booking-form {
    background: rgba(248, 241, 233, 0.97);
    padding: 1.5rem;
    border-radius: 0.9375rem;
    box-shadow: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    top: -38px;
    position: relative;
}

.booking-form:hover {
    transform: translateY(-0.3125rem);
}

.booking-form h3 {
    color: var(--primary-dark);
}

.form-control, .form-select {
    height: 2.65rem;
    border-radius: 0.625rem;
    border: 1px solid var(--dark-color);
    padding: 0.55rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-soft);
    color: var(--dark-color);
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0.625rem rgba(255, 215, 0, 0.5);
    border-color: var(--primary-dark);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-bright));
    color: var(--light-soft);
    width: 100%;
    padding: 0.4rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent-bright);
    transform: translateY(-0.1875rem);
    color: var(--light-soft);
}


/* Hero Info Section */
.hero-info {
    padding: 5rem 0; 
    background: linear-gradient(135deg, var(--light-color) 60%, var(--light-soft) 100%); /* Subtle gradient */
    position: relative;
    overflow: hidden;
}



.hero-info img {
    max-width: 100%;
    border-radius: 10px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 4px solid #f8f1e9;
}

.hero-info img:hover {
    transform: rotate(0deg) scale(1.05); 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Content Column */
.hero-info h4 {
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 2rem;
    position: relative;
    text-align: left;
    animation: fadeInLeft 1s ease-out forwards;
}



.hero-info h4 span {
    color: var(--accent-bright);
    font-style: italic;
}

/* Paragraph */
.hero-info p.lead {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--neutral-gray);
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: justify;
    animation: fadeInRight 1.2s ease-out forwards;
}

  /* ================================
   Contact Section Styles
================================== */

.sec {
  padding: 10px 30px;
}


.sssn {
    height: 29px;
    width: 29px;
    padding: 0px;
    border: none;
    color: #006B3C;
    background: transparent;
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .sec {
    padding: 30px 5px!important;
}
}

.contact-page-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-md);
  padding: 30px;
  position: relative;
  margin-bottom: 30px;
  border-radius: 30px 30px 30px 0;
  background: #c1c1c1;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-page-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.contact-page-info::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -4px;
  background: #006B3C;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  height: 20px;
  z-index: -1;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  font-size: 28px;
  color: #fff;
  background: var(--primary-dark);
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  position: relative;
}

.contact-info-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid var(--primary-dark);
  border-radius: 50%;
}

.contact-info-content h5 {
  font-size: 22px;
  font-weight: 600;
  color: #006B3C;
  margin-bottom: 15px;
  margin-top: 25px;
}

.contact-info-content p,
.contact-info-content a {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--secondary-gray);
}

/* ================================
   Contact Form Section
================================== */
.contact-wrapper {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 1px 1px 11px rgba(0, 0, 0, 1);
  z-index: 1;
  overflow: hidden;
  min-height: 450px; 
}


.contact-map {
  position: relative;
  padding-left: 10px;
}

.contact-form {
  padding: 20px;
}

.contact-form-header {
  margin-bottom: 15px;
}

.contact-form-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.contact-form-header p {
  font-size: var(--font-size-base);
  color: var(--secondary-gray);
}


.contact-form .form-control {
  border: 1px solid var(--primary-dark);
  border-radius: 6px;
  font-size: 14px!important;
  width: 100%;
  background: var(--white);
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: #006B3C;
  box-shadow: 0 0 0 2px rgba(230, 149, 0, 0.2);
  outline: none;
}

.contact-form .form-label {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  margin-bottom: 15px;
}


















/* Counter Items */
.hero-info .counter-item {
    width: 13rem;
    height: 11rem;
    background: linear-gradient(145deg, var(--light-soft), var(--light-color));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary-dark); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 215, 0, 0.3); 
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    margin: 6px auto;
}

.hero-info .counter-item:hover {
    transform: scale(1.1) translateY(-10px); /* Lift and scale */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 215, 0, 0.5);
    border-color: var(--accent-bright);
}

.hero-info .counter-item h2 {
    font-size: 3.5rem; 
    font-weight: 900;
    color: var(--primary-dark);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); 
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.hero-info .counter-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 0.06rem;
    text-align: center;
    padding: 0 10px;
    transition: color 0.3s ease;
}

.hero-info .counter-item:hover h2,
.hero-info .counter-item:hover h4 {
    color: var(--accent-bright); /* Gold on hover */
}

.hero-info .counter-item {
    opacity: 0;
    transform: rotateY(90deg); 
    animation: flipIn 0.8s ease-out forwards;
}

.hero-info .counter-item:nth-child(1) { animation-delay: 0.2s; }
.hero-info .counter-item:nth-child(2) { animation-delay: 0.4s; }
.hero-info .counter-item:nth-child(3) { animation-delay: 0.6s; }
.hero-info .counter-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes flipIn {
    0% { opacity: 0; transform: rotateY(90deg); }
    100% { opacity: 1; transform: rotateY(0deg); }
}

/*end info css*/

/* Service Section CSS */
.hero-service {
    padding: 3.125rem 0;
    background: linear-gradient(rgba(26, 42, 68, 0.9), rgba(0, 0, 0, 0.6)), url('https://luxurylimoatl.com/wp-content/uploads/2024/08/limo-background.jpg') center/cover no-repeat fixed;
}

.hero-service h2 {
    color: var(--primary-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
}

.serviceIcon i {
    color: var(--primary-dark);
}

.hero-service p {
    color: var(--light-soft);
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(31, 37, 33, 0.9);
}

.service-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.25rem rgba(255, 215, 0, 0.2);
    border-color: var(--primary-dark);
}

.service-card h3 {
    color: var(--primary-dark);
}

.divider {
    background: linear-gradient(to right, transparent, var(--primary-dark), transparent);
    width: 5rem;
    height: 0.1875rem;
    margin: 1.25rem auto;
}

/* Hero Fleets Section */
.hero-fleets {
    padding: 15px 0;
    background: #fff;
}

.section-title {
    letter-spacing: 0.125rem;
    margin-bottom: 3.125rem;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-size: 38px;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--accent-bright);
    margin: 1rem auto;
}

.filter-button {
    width: 160px;
    padding: 10px;
    margin: 0.3125rem;
    border: 2px solid var(--primary-dark);
    border-radius: 10px;
    background: transparent;
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.filter-button:hover,
.filter-button.active {
    background: var(--accent-bright);
    color: var(--light-soft);
    border-color: var(--accent-bright);
    transform: translateY(-0.1875rem);
}

.gallery_product {
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.fleet-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-card img {
    width: 100%;
    object-fit: cover;
    border: 1px solid#D3AF36;
}

.fleet-card .card-body {
    padding: 1.5rem;
}

.fleet-card h4 {
    font-size: 24px;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 0.9375rem;
    color: var(--primary-dark);
}

.fleet_details hr {
    width: 50%;
    height: 4px;
    background: var(--accent-bright);
    border: none;
    margin: 0 auto 0.9375rem;
}

.fleet_info {
    display: flex;
    justify-content: center;
    gap: 53px;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}



.fleet_info p,
.fleet_details p {
    margin: 0;
    font-size: 0.9rem;
}


.start_point_key{
   margin-left: 28px;
}

/* Review Section CSS */
.hero-review {
    padding-top: 40px;
    padding-bottom: 20px;
    background-image: url(../images/reviewbg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.hero-review:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 48, 82, 0.9);
    z-index: -1;
    opacity: 0.6;
    border-top: 3px solid rgba(255, 255, 255, 0.15);
}

.review-box {
    padding: 24px;
    background-color: transparent;
    border-radius: 25px;
    box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 20%);
    color: var(--tertiary-color);
    position: relative;
    display: inline-block;
    transition: all .3s;
    border: 1px solid #cececec9;
}

.leftReview {
    margin-top: 100px;
}

.review-box:hover {
    transform: translateY(-0.625rem);
}

.review-box p {
    color: var(--light-soft);
}

.review-stars i {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

/* Hero Choose Section */
.hero-choose {
    padding: 80px 0; 
    background-image: url(../images/reviewbg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    overflow: hidden;


}
.hero-choose::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 48, 82, 0.9);
    z-index: -1;
    opacity: 0.6;
    border-top: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-choose .section-title {
    color: #f5f5f5;
}

.section-title b {
    color: #D3AF36;
}


.feature-item {
    position: relative;
    padding: 17px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 220px;
    margin: 0 20px;
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

.feature-item img {
    width: 130px;
    height: 130px;
    filter: brightness(1.2) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

.feature-item:hover img {
    transform: scale(1.15);
}

.feature-item p {
    font-size: 1.3rem;
    margin-top: 20px;
    font-weight: 600;
    color: #f5f5f5;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -42px;
    width: 0;
    height: 4px;
    background: repeating-linear-gradient(to right, #D3AF36 0, #D3AF36 6px, transparent 6px, transparent 12px);
    transform: translateY(-50%);
    z-index: 1;
}

.feature-item.visible:not(:last-child)::after {
    animation: growDashedLine 1s ease forwards;
}

@keyframes growDashedLine {
    0% { width: 0; opacity: 0; }
    70% { width: 90px; opacity: 1; }
    100% { width: 40px; opacity: 1; }
}

.animate-item {
    opacity: 0;
}

/* General Footer Styles */
.footer {
    background-color: #111B2D; 
    color: #f8f1e9;    
    padding: 4rem 0 0;
    border-top: 3px solid rgba(255, 255, 255, 0.15);
}

.footer p {
    color: #f8f1e9; 
    font-size: 1rem;
    line-height: 1.8;
}
.footer-logo img {
    height: 115px;
    margin-bottom: 1.5625rem;
}
.footer-about {
    margin-bottom: 2rem;
}

.footer .title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #f8f1e9;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: rgba(248, 241, 233, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d4a017; 
    padding-left: 0.75rem;
}

/* Footer Contact Section */
.footer-contact p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    margin-right: 0.75rem;
    color: #d4a017;
    font-size: 1.2rem;
}

.footer-social a {
    color: #f8f1e9;
    width: 2.8125rem;
    height: 2.8125rem;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    transition: all 0.4s ease;
}

.footer-social a:hover {
    background: #dc3545; /* Accent color */
    transform: translateY(-0.5rem);
}
.footer-bottom {
    padding: 1.5625rem 0;
    margin-top: 0.625rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #f8f1e9;
}

/* Scrollbar CSS */
.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    color: #015b90;
    width: 50px;
    height: 48px;
    line-height: 48px;
    right: 30px;
    bottom: 30px;
    padding-top: 2px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.scroll-top-wrapper.show {
    border-radius: 50%;
    background: #D3AF36;
    visibility: visible;
    cursor: pointer;
    opacity: 1.0;
}

.show {
    display: block !important;
}

.scroll-top-inner i {
    font-size: 40px;
}

.boxneww1 {
    padding: 25px 35px 7px;
    border-radius: 10px;
    background: var(--secondary-color);
}

.abtp {
    padding: 25px;
}

.abtpad {
    padding: 3rem 0;
}


@media only screen and (max-width:767px) {
    .process-steps::before {
        display: none;
    }
}

@media only screen and (max-width:767px) {
    .pddm {
        padding: 0px;
    }
}

.yopara {
    background:url(../images/servicepara.jpg);
    background-size: cover;
    min-height: 200px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media only screen and (max-width:768px) {
    .areaserv-item {
        width: 100%!important;
        height: auto!important;
        margin-bottom: 20px!important;
    }
}

.areaserv-item {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 20px 20px 20px;
    margin-top: 0px;
    z-index: 1;
    width: 100%;
    height: 250px;
}

.areaserv-item i {
    display: inline-block;
    width: 80px;
    height: 80px;   
    text-align: center;
    line-height: 61px;
    font-size: 40px;
    color: #D3AF36;
    background-color: #006B3C;
    border: 10px solid #006B3C;
    border-radius: 50%;
    position: absolute;
    top: -35px;
    left: 35px;
    transition: .5s;
}                                                                                                                                                               

.areaserv-item i:hover {
    opacity: 0.8;
}

.areaserv-item img {
    display: inline-block;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 61px;
    font-size: 33px;
    color: #d4af37;
    background-color: #006B3C;
    border: 10px solid #006B3C;
    border-radius: 50%;
    position: absolute;
    top: -35px;
    left: 35px;
    transition: .5s;
}                                                                                                                                                               

.areaserv-item img:hover {
    opacity: 0.8;
}
.areaserv-item h3 {
    color: #D3AF36;
    margin-bottom: 10px;
    font-size: 24px;
    margin-top: 45px;   
}

.areaserv-item p {
    margin-bottom: 0;
    color: #333;
}