:root {
    --theme-color: #1f1d1e; 
    --accent: #FB1B15; 
    --text: #000000; 
    --text-secondary: #495057; 
    --white: #fdfcfd; 
    --background: #F5F7FA;
    --border: #9e9e9e;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --section-padding: 50px;
    --spacing-xs: 0.4rem;
    --spacing-sm: 0.6rem;
    --spacing-md: 30px;
    --spacing-lg: 60px;
    --accent-gradient: linear-gradient(135deg, #FB1B15, #FB1B15);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

.section {
    padding: 30px 0px;
}

a, button {
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

a:focus, button:focus {
    outline: 2px solid var(--theme-color);
    outline-offset: 2px;
}

.visible-xs { display: none; }
.hidden-xs { display: block; }
.text-uppercase {
    text-transform: uppercase;
}

.text-justify{text-align: justify;}


.title {
    font-size: 2rem; 
    line-height: 1.3;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}
.sub_title {
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.sub_title::after {
    content: '';
    display: block;
    width: 100px; 
    height: 3px;
    background: #009688; 
    margin-top: 8px;
    transition: width 0.5s ease-in-out; 
    box-shadow: 0 0 8px rgba(160, 1, 9, 0.3); 
}


.sub_sub_title {
    font-size: 16px; 
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-secondary);
}


h1, h2, h3, h4, h5, h6 {
    color: var(--accent);
}

p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 5px;
}

.form-control {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: var(--spacing-sm);
  font-size: 16px;
  color: var(--text);
  background: var(--background);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 5px rgba(30, 136, 229, 0.3);
  outline: none;
}

.form-label {
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}


.site-header {

    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header_site_logo {
    flex: 0 0 200px;
}

.header_site_logo img {
    display: block;
    max-width: 215px;
    padding: 6px;
    height: auto;
}

.header-group {
    height: 100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top_header_contact {
/*    border-bottom: 0.5px solid#009688;*/
align-items: center;
justify-content: space-between;
padding: 5px 10px;
}

.left_side_contact_info {
    float: right;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.left_side_contact_info dl {
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.left_side_contact_info dt {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.left_side_contact_info dt a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.left_side_contact_info dt a i {
    font-size: 16px;
    color: var(--accent);
}

.left_side_contact_info dd {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
}

.left_side_contact_info dd a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.left_side_contact_info dd a:hover,
.left_side_contact_info dt a:hover {
    color: var(--accent);
}

.right_side_social_icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.right_side_social_icon ul li a {
    color: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    background: var(--theme-color);
    transition: var(--transition);
    font-size: 17px;
}

.right_side_social_icon ul li a:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.nav_header {
    padding: 1px 10px;
    background: transparent;
}

.navbar-nav {
    display: flex;
    justify-content: flex-end;
    gap: 35px;
    align-items: center;
    padding: 0px 0px;
}

.nav-item .nav-link {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
    color: var(--accent);
    font-weight: 800;
}

.custom-owl-carousel {
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    margin-top: 0;
    position: relative;
}

.custom-owl-carousel .item {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.custom-owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-content {
    position: absolute;
    top: 3%;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    color: var(--white);
/*    background: rgba(0, 0, 0, 0.6);*/
display: flex;
flex-direction: column;
justify-content: center;
padding: 40px 60px;
}

.slide-content p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--white);
}

/* Info Section CSS */
.info_section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.img-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(to right, rgba(251, 27, 21, 0.5) 1%, rgba(0, 0, 0, 0) 100%);
    transition: left 0.5s ease;
    z-index: 1;
}

.info-img {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.info-img img {
    transition: var(--transition);
    position: relative;
    z-index: 0;
}

.info-img:hover .img-overlay {
    left: 0;
}

.info-content {
    padding: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-item {
    padding: 10px;
    background: var(--background);
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--background);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-icon i {
    color: var(--theme-color);
    font-size: 20px!important;
    transition: var(--transition);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
}

.feature-list li {
    font-size: 1.1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.feature-list i {
    color: var(--theme-color);
    font-size: 1.3rem;
}

.border-color {
    padding: 20px;
    text-align: center;
    border-color: var(--accent)!important;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Hero Choose Section */
.why-choose {
    background: linear-gradient(#f0629261, rgb(30 136 229 / 45%)), url(../images/pppp1.jpg) no-repeat center center;
    background-size: cover;
    color: var(--white);
    position: relative;
    background-attachment: fixed;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.choose-item {
    position: relative;
    padding: 10px;
    background: linear-gradient(306deg, #1f1d1e91, #fe473659);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 185px;
    margin: 0 20px;
    transition: all 0.4s ease;
}

.choose-item:hover {
    transform: translateY(-5px);
    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));
}

.choose-item i {
    width: 130px;
    height: 130px;
    filter: brightness(1.2) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
    color: var(--white);
    display: inline-block;
    text-align: center;
}

.choose-item:hover i {
    transform: scale(1.1);
}

.choose-item p {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;
    color: var(--white);
}

.choose-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -42px;
    width: 0;
    height: 4px;
    background: repeating-linear-gradient(to right, #DB9C9E 0, #DB9C9E 6px, transparent 6px, transparent 12px); 
    transform: translateY(-50%);
    z-index: 1;
}

.choose-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: 1;
}
/* Service Section */
.service_section{
    background: var(--white);
}
.service-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border-color: var(--accent);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.service-card .serial {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.service-card .service-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: var(--white);
}

.service-top-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.service-top-content i {
    font-size: 2rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.service-card:hover .service-top-content i {
    transform: scale(1.2);
}

.service-top-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    transition: var(--transition);
}

.service-top-content h3:hover {
    color: var(--accent);
}

.service-content p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white); 
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(to right, var(--theme-color) 1%, rgba(0, 0, 0, 0) 100%);
    transition: left 0.5s ease;
    z-index: 1;
}

.service-card:hover .service-overlay {
    left: 0;
}


/*why choose section*/
.process_section {
    background: var(--backg round);
}

.feature-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-grow: 1;
}

.feature-card {
    background: var(--white);
    padding: 26px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid #009688;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.feature-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.feature-image {
    display: flex;
    align-items: stretch;
    min-height: 0;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

/* Gallery CSS */
.gallery-section {
    background: var(--white);
}

.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    padding: 15px 0;
}

.filter-btn {
    padding: 8px 15px;
    background: var(--white);
    border: 2px solid var(--accent);
    color: var(--text);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    min-width: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.filter-btn:hover,
.filter-btn.active,
.filter-btn:focus {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    outline: none;
}

.filter-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
}

.filter-btn:active::after {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.gallery-grid {
    margin: 0 -15px;
    padding: 15px;
}

.gallery-grid .row {
    margin-left: 0;
    margin-right: 0;
}

.gallery-grid .col-md-3 {
    padding: 8px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--order) * 0.1s);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E88E580, #A0010975);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    transform: scale(0.9);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: scale(1);
}

.gallery-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Review Section */
.review-section {
    background: var(--background);
    color: var(--text);
    position: relative;
}


.review-section * {
    position: relative;
    z-index: 1;
}

.review-section p {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-md);
}

.review-card {
    background: linear-gradient(135deg, #1f1d1e, #2a2728);
    padding: var(--spacing-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.review-card::before {
    content: '“';
    font-size: 2.5rem;
    color: var(--accent);
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 0;
}

.review-card::after {
    content: '”';
    font-size: 2.5rem;
    color: var(--accent);
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 0;
}

.review-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 20px rgba(253, 44, 25, 0.4);
}


.review-card p {
    font-size: 16px;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    flex-grow: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(253, 44, 25, 0.3), rgba(255, 94, 77, 0.4));
    padding: calc(var(--spacing-sm) + 2px);
    border-radius: 5px;
    border-left: 4px solid #009688;
    transition: var(--transition);
}

.reviewer-info:hover {
    background: linear-gradient(135deg, rgba(253, 44, 25, 0.5), rgba(255, 94, 77, 0.6));
}


.reviewer-details {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    flex-grow: 1;
}

.reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reviewer-info .reviewer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.read-more {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    background: var(--accent);
    padding: 3px 10px;
    border-radius: 6px;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.read-more:hover {
    background: #ff5e4d;
    transform: translateX(4px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.read-more:focus {
    outline: 2px solid var(--theme-color);
    outline-offset: 2px;
    background: rgba(253, 44, 25, 0.5);
}

.reviewer-info .stars {
    color: #FFD700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.reviewer-info .stars:hover {
    animation: starPulse 1.5s ease-in-out infinite;
}

@keyframes starPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.reviewer-info .stars i {
    margin-left: 2px;
}


/* Quote Section */
.quote-section {
    background: linear-gradient(#f0629261, rgb(30 136 229 / 45%)), url(../images/pppp.jpg) no-repeat center center;
    background-size: cover;
    color: var(--white);
    position: relative;
    background-attachment: scroll;
    overflow: hidden;
}

@media only screen and (max-width:767px) {
    .quote-section {
        background: linear-gradient(#f0629261, rgb(30 136 229 / 45%)), url(../images/ppppp.png) no-repeat center center;
        background-position: bottom;
        height: 500px;
    }
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.quote-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-sm);
}


.quote-content p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    color: var(--white);
}


.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.cat_item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px); 
    transition: var(--transition);
}

@media only screen and (max-width:767px) {
   .cat_item {
       margin-bottom: 10px; 
   }
}

.cat_item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cat_item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.cat_item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
}


/* Footer Section */
.footer {
    background: var(--theme-color);
    color: var(--white);
    position: relative;
    padding: var(--section-padding) 0 1rem;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 1;
}




.footer .footer-logo {
    max-width: 100px; 
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}



.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--accent);
    transform: translateX(5px); 
}

.footer .contact-info p {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    display: flex;
    align-items: center;
}

.footer .contact-info h5 {
    color: var(--white);
    font-size: clamp(0.95rem, 2.5vw, 1rem);
    font-weight: 500;
    margin-bottom: 0;
    word-break: break-word; 
}

.footer .contact-info h5 a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer .contact-info h5 a:hover {
    color: var(--accent);
}

.footer .contact-info i {
    margin-right: var(--spacing-xs);
    color: var(--accent);
    font-size: 1.2rem;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.3);
    margin: var(--spacing-md) 0;
}

.footer .copyright {
    text-align: center;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 0;
}















 /* ================================
   Contact Section Styles
================================== */
.contact-page-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-sm);
  position: relative;
  margin-bottom: var(--spacing-md);
  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: #009688;
  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(--accent);
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  position: relative;
}

.contact-info-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.contact-info-content h5 {
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--spacing-xs);
}

.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: var(--spacing-md);
}

.contact-form-header {
  margin-bottom: var(--spacing-md);
}

.contact-form-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--accent);
}

.contact-form-header p {
  font-size: var(--font-size-base);
  color: var(--secondary-gray);
}


.contact-form .form-control {
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: var(--spacing-sm);
  font-size: 14px!important;
  width: 100%;
  background: var(--white);
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(230, 149, 0, 0.2);
  outline: none;
}

.contact-form .form-label {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: var(--spacing-xs);
}



















/*booking form css*/

.booking-info {
  position: relative;
  background: var(--background);
  border: 2px solid var(--border);
  padding: var(--spacing-md);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.booking-info:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


@keyframes fadeHot {
  0%, 100% {
    opacity: 0.7;
    transform: scale(0.9);
}
50% {
    opacity: 1;
    transform: scale(1);
}
}



/* ------------------ Service Section ------------------ */

.servvimg {
    width: 30px!important;
    height: 30px!important;
    position: relative!important;
    top: -3px!important;
}

.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    border: none;
    gap: var(--spacing-xs);
}

.nav-tabs .nav-link {
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    margin: 0.25rem;
    padding: var(--spacing-sm) 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    min-width: 150px; /* Ensure tabs don’t shrink too much */
    text-align: center;
}

.nav-tabs .nav-link:hover {
    background: #009688;
    color: var(--white);
}

.nav-tabs .nav-link.active {
    background: #009688;
    color: var(--white);
    box-shadow: var(--shadow);
}

.content-section {
    display: none;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 450px;
    background: var(--white);
    box-shadow: var(--shadow);
    animation: fadeIn 0.5s ease-in-out;
}

.content-section.active {
    display: flex;
    flex-direction: row; 
}

.content-section .text-content {
    padding: var(--spacing-md);
    width: 55%;
    position: relative;
    z-index: 1;
    color: var(--white);
    clip-path: circle(76.6% at 33% 45%);
/*      background: linear-gradient(#f0629261, rgb(30 136 229 / 45%));*/
background: #009688;
}

.content-section img {
    width: 55%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
}

