



/* Default Light Mode */
:root {
    --accent-color: #008767;



    --site-secondary: #6c757d;
    --color-primary: #D35400;
    --color-secondary: #6b7280;
    --bg-color: #FCFCFC;
    --box-bg-color: #ffffff;

    --text-color: #2F2F2F;
    --text-color-light: #333333;
    --card-bg-color: #ffffff;
    --font-family: 'Arial', sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
    --letter-spacing-base: 1.3px;
}

/* Dark Mode */
.dark-mode {
    --bg-color: #29303C;
    --card-bg-color: #425265;
    --text-color: #f9fafb;
}

/* Body and text color adjustments */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
}





.bg-pinki {
    background: var(--box-bg-color);
}



/* Ensuring h1 text turns white in dark mode */
.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode .text-grey, .dark-mode h4,.dark-mode p, .dark-mode .services-content {
    color: #ffffff;
}

/* Text color in .bg-pinki and other sections */
.dark-mode .bg-pinki {
    background-color: #333C4B !important; /* Darker background for sections */
    color: #ffffff; /* Ensure text is white in dark mode */
}

#navbar-wrapper {
    box-shadow: 0 3px 6px rgba(0,0,0,0.07);
}
.dark-mode #navbar-wrapper {
    box-shadow: none;
}

#home, #services, #about_us, #testimonials, #contact {
    scroll-margin-top: 80px;
}

/* Specific classes for text content */
.dark-mode .services-content {
    color: #333C4B;
}


/* Ensuring navbar text turns white in dark mode */
.dark-mode .navbar-nav .nav-link,
.dark-mode .navbar-brand,
.dark-mode .topbar a {
    color: #ffffff !important;  /* Ensuring the text is white */
}

/* Optional: Hover and active states for navbar links in dark mode */
.dark-mode .navbar-nav .nav-link:hover,
.dark-mode .navbar-nav .nav-link:active {
    color: var(--accent-color) !important;  /* Optional: Color change on hover */
}



/* Ensure specific text turns white in dark mode */
.dark-mode .contact-text, 
.dark-mode .contact-heading, 
.dark-mode .contact-info {
    color: #ffffff !important;  /* Make the text white */
}

.dark-mode .text-dark {
    color: #ffffff !important;  /* Make any 'text-dark' class turn white */
}

.text-custom-secondary {
    color: var(--site-secondary) !important;
}


.bg-custom-secondary {
    background: var(--site-secondary) !important;
}





/* COLOR : ORANGE */


.text-orange {
  color: var(--accent-color);
}





.bg-orange {
  color: rgb(255, 255, 255);
  background: var(--accent-color);

}




.border-orange {
    border: 5px solid  var(--accent-color);
}

.border-orange-end {
    border-right: 4px solid var(--accent-color);
}


.btn-orange {
    background-color: var(--accent-color);
    color: white;
    
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}



/* Hover effect */
.btn-orange:hover {
    background-color: #04765B;
    color: white;

}

/* Active (clicked) effect */
.btn-orange:active {
    background-color: #c25e00;
    border-color: #c25e00;
}

/* Disabled button */
.btn-orange:disabled {
    background-color: #ffcc80;
    border-color: #ffcc80;
    cursor: not-allowed;
}





/* COLOR : MANAGEMENT */

.text-management {
  color: var(--accent-color);
}


.bg-management {
  color: rgb(255, 255, 255);
  background: var(--accent-color);

}


.border-management {
    border: 5px solid  var(--accent-color);
}

.border-management-end {
    border-right: 4px solid var(--accent-color);
}


.btn-management {
    background-color: var(--accent-color);
    color: white;
    
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Hover effect */
.btn-management:hover {
    background-color: darkorange;
    color: white;

}

/* Active (clicked) effect */
.btn-management:active {
    background-color: #c25e00;
    border-color: #c25e00;
}

/* Disabled button */
.btn-management:disabled {
    background-color: #ffcc80;
    border-color: #ffcc80;
    cursor: not-allowed;
}








/* COLOR : MANAGEMENT */

.text-management {
  color: var(--accent-color);
}


.bg-management {
  color: rgb(255, 255, 255);
  background: var(--accent-color);

}


.border-management {
    border: 5px solid  var(--accent-color);
}

.border-management-end {
    border-right: 4px solid var(--accent-color);
}


.btn-management {
    background-color: var(--accent-color);
    color: white;
    
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Hover effect */
.btn-management:hover {
    background-color: darkorange;
    color: white;

}

/* Active (clicked) effect */
.btn-management:active {
    background-color: #c25e00;
    border-color: #c25e00;
}

/* Disabled button */
.btn-management:disabled {
    background-color: #ffcc80;
    border-color: #ffcc80;
    cursor: not-allowed;
}






















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

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

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

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

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

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

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

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


.btn-primary-outline-0 {
    border: 0;
    color: var(--bs-white) !important;
}

.btn-light-outline-0 {
    border: 0;
    color: var(--accent-color) !important;
}

.btn-primary-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.btn-light-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-white);
}

.topbar {
    padding: 10px 0;
    background: var(--accent-color) !important;
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 8px 10px;
    font-size: 16px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--accent-color);
}

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

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #04765B;
    color: #04765B;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Navbar End ***/

/*** Carousel Start ***/
.carousel-item {
    position: relative;
    min-height: 90vh
    
}

.carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    background-size: cover;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
}

.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
    background: transparent;
}

#carouselId .carousel-indicators {
    padding-bottom: 30px;
}

#carouselId .carousel-indicators li {
    border-top: 10px solid var(--bs-white);
    border-bottom: 10px solid var(--bs-white);
    border-right: 5px solid var(--bs-white);
    border-left: 5px solid var(--bs-white);
    margin-right: 10px;
    border-radius: 10px;
    transition: 0.5s;
}

#carouselId .carousel-indicators li.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    border-right: 15px solid var(--accent-color);
    border-left: 15px solid var(--accent-color);
}
/*** Carousel End ***/


.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Services Start ***/
.services .services-item {
    transition: 0.5s;
}

.services .services-item:hover {
    background: var(--accent-color) !important;
    border-color: var(--bs-secondary) !important;
}

.services .services-item:hover .services-content p,
.services .services-item:hover .services-content h3 {
    color: var(--bs-white);
    transition: 0.5s;
}

.services .services-item:hover .services-content a.btn {
    background: var(--bs-white);
    color: var(--accent-color) !important;
}

.services .services-item:hover .services-content a.btn:hover {
    color: var(--bs-white) !important;
}

.services .services-item .services-img {
    overflow: hidden;
}

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

.services .services-item .services-img img:hover {
    transform: scale(1.3);
}
/*** Services End ***/



/*** About Start ***/
/*** Youtube Video start ***/
.video {
    position: relative;
    padding-right: 70px; 
    padding-bottom: 70px;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    margin-left: -35px;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** About End ***/


/*** Appointment  Start ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.appointment .appointment-form {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4));
    object-fit: cover;
    border-radius: 10px;
}

.appointment .appointment-time {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, .2));
    object-fit: cover;
    border-radius: 10px;
}
/*** Appointment End ***/

/*** Counter Start ***/
.counter-section .counter-item .counter-content {
    position: relative;
    margin-bottom: 60px;
    background-image: linear-gradient(rgba(252, 152, 195, 0.3), rgba(255, 255, 255, 0.3), rgba(136, 76, 210, 0.3));
    border-radius: 10px;
    z-index: 9;
}

.counter-section .counter-item {
    text-align: center;
    background: rgba(255, 255, 255, .5) !important;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    object-fit: cover;
    border-radius: 0 25% 0 25%;
}

.counter-section .counter-item .counter-content .svg-img {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    margin-bottom: -50px; 
    margin-left: -45px; 
    transform: rotate(180deg);
}

.counter-section .counter-item .counter-quantity {
    width: 110px;
    height: 110px;
    border-radius: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
}
/*** Counter End ***/


/*** Events Start ***/
.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--accent-color) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.gallery .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-img img {
    transition: 0.5s;
}

.gallery .gallery-img:hover img {
    transform: scale(1.3);
}

.gallery .gallery-img .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.gallery .gallery-img .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
    
}

.gallery .gallery-img:hover .gallery-overlay,
.gallery .gallery-img:hover .search-icon {
    opacity: 1;
}
/*** Events End ***/


/*** Pricing Start ***/
.pricing {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing .pricing-item {
    color: var(--bs-white);
}

.pricing .pricing-item .pricing-content {
    background: rgba(255, 255, 255, 0.4);
}

.pricing .owl-carousel.pricing-carousel {
    position: relative;
}

.pricing .owl-carousel.pricing-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);

}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev:hover,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next:hover {
    color: var(--accent-color);
}
/*** Pricing End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team .team-item .team-text {
    background: var(--bs-secondary);
}

.team .team-item .team-social {
    position: absolute;
    top: -180px; 
    left: 20px; 
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-social {
    top: 20px; 
    left: 20px;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    width: 100%;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

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

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

.team .team-item:hover .team-text {
    background: var(--accent-color);
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/testimonial-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .testimonial-item {
    background: rgba(0, 0, 0, 0.4);
}

.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--accent-color);
}
/*** testimonial end ***/

/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact .contact-form {
    background: rgba(255, 255, 255, 0.6);
}
/*** Contact End ***/

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

.footer .footer-item a,
.footer .footer-item p {
    color: var(--bs-white);
    line-height: 40px;
    font-size: 17px;
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--accent-color) !important;
}

/*** Footer End ***/

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


.text-grey {
    color: #515151;
}


.s-para
{
  font-size: 17px;

}

.m-para
{
  font-size: 22px;

}

p {
    line-height: 1.5;
    letter-spacing: 0.5px;
}


.text-justify {
  text-align: justify;
  text-justify: inter-word;
}


.pointer {
  cursor: pointer;

}



.fa-1-5x {
    font-size: 1.5em !important;
}




.xs-para
{
  font-size: 14px;
}



.s-para
{
  font-size: 18px;

}

.m-para
{
  font-size: 22px;
}

.l-para
{
  font-size: 26px;

}


.xl-para
{
  font-size: 36px;

}


.xxl-para
{
  font-size: 42px;

}

.space-0-5 {
    letter-spacing: 0.5px;
}


.space-0-7 {
    letter-spacing: 0.7px;
}


.space-1 {
    letter-spacing: 1px;
}


.space-1-3 {
    letter-spacing: 1.3px;
}


.space-1-5 {
    letter-spacing: 1.5px;
}


.space-2-5 {
    letter-spacing: 2.5px;
}

.lh-1-6 {
    line-height: 1.6;
}



.bold {
  font-weight: bold;
}


.bold-light {
  font-weight: 500; /* Semi-bold */
}

.bold-medium {
  font-weight: 700; /* Bold */
}

.bold-heavy {
    font-weight: bolder;
}


.bold-ultra {
  font-weight: 900;
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}


.form-check-input.larger-checkbox {
  transform: scale(1.25); /* LIGHT/DARK MODE FORM-SWITCH*/
}

/* Container for light/dark model */
.switch {
  position: relative;
  display: inline-block;
  width: 2.8rem; /* Reduced from 3.5rem (20% smaller) */
  height: 1.2rem; /* Reduced from 1.5rem (20% smaller) */
}

/* Hide the default checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* Background of the switch */
.slider {
  position: absolute;
  cursor: pointer;
  background-color: #3a4553; /* Changed from #29303C to a slightly lighter dark gray */
  border: 1px solid #ced4da;
  border-radius: 1.2rem;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: background-color 0.3s;
}

/* The ball inside the slider */
.slider::before {
  content: "";
  position: absolute;
  height: 1rem; /* Reduced from 1.25rem (20% smaller) */
  width: 1rem; /* Reduced from 1.25rem (20% smaller) */
  left: 0.16rem; /* Reduced from 0.2rem (20% smaller) */
  bottom: 0.16rem; /* Reduced from 0.2rem (20% smaller) */
  background-color: #6c757d; /* dark grey for light mode */
  border-radius: 50%;
  transition: transform 0.3s, background-color 0.3s;
}

/* When the toggle is ON */
input:checked + .slider::before {
  transform: translateX(0.96rem); /* Reduced from 1.2rem (20% smaller) */
  background-color: #404040; /* color for ball when in dark mode */
}

/* The knob (the slider circle) */
.slider::before {
  content: "";
  position: absolute;
  height: 0.8rem; /* Reduced from 1rem (20% smaller) */
  width: 0.88rem; /* Reduced from 1.1rem (20% smaller) */
  left: 0.16rem; /* Reduced from 0.2rem (20% smaller) */
  bottom: 0.16rem; /* Reduced from 0.2rem (20% smaller) */
  background-color: white;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

/* Checked state styles */
input:checked + .slider {
  background-color: #ffffff;
}

input:checked + .slider::before {
  transform: translateX(1.6rem); /* Reduced from 2rem (20% smaller) */
}

/* Add top margin to the switch only inside navbar collapse */
#navbarCollapse .switch {
  margin-top: 0.5rem; /* adjust as needed */
}

@media (min-width: 1200px) {
  #navbarCollapse .switch {
    margin-top: 0rem; /* no extra margin on larger screens */
  }
}


/* Add this to your CSS file */
.fa-mode {
    color: var(--accent-color); /* Orange in light mode */
    transition: color 0.3s ease;
}

.dark-mode .fa-mode {
    color: var(--site-secondary); /* Muted in dark mode */
}


/* Bold Classes */
.bold {
  font-weight: 600; /* Semi-bold */
}

.bold-medium {
  font-weight: 700; /* Standard bold */
}

.bold-heavy {
  font-weight: 800; /* Extra bold */
}

.bold-ultra {
  font-weight: 1000; /* Black/heaviest weight */
}

/* Text Shadow Variants (for extra emphasis) */
.bold-shadow {
  font-weight: 700;
  text-shadow: 0.5px 0 0 currentColor;
}

.bold-shadow-heavy {
  font-weight: 800;
  text-shadow: 1px 0 0 currentColor, 
              -1px 0 0 currentColor;
}

/* ===== MODERN FEATURES (from armour_roofing) ===== */

/* --- Noise Texture Overlay --- */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4xIiAvPjwvc3ZnPg==');
    opacity: 0.025;
    z-index: 9999;
    mix-blend-mode: overlay;
}
.dark-mode body::after {
    opacity: 0.04;
}

/* --- Aurora / Bubble Accent --- */
.hero-accent {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 84, 0, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    animation: floatAurora 20s infinite alternate ease-in-out;
    z-index: -1;
    pointer-events: none;
    top: -10%;
    left: -10%;
}
.dark-mode .hero-accent {
    background: radial-gradient(circle, rgba(100, 149, 237, 0.1) 0%, transparent 70%);
}
@keyframes floatAurora {
    0% { transform: translate(-10%, -10%) scale(0.8); opacity: 0.4; }
    100% { transform: translate(10%, 15%) scale(1.3); opacity: 0.8; }
}

/* --- Glass Navigation --- */
#navbar-wrapper {
    background: rgba(0, 135, 103, 0.08) !important;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}
.dark-mode #navbar-wrapper {
    background: rgba(41, 48, 60, 0.55) !important;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}
#navbar-wrapper.scrolled {
    background: rgba(0, 135, 103, 0.12) !important;
    backdrop-filter: blur(24px) saturate(200%);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}
.dark-mode #navbar-wrapper.scrolled {
    background: rgba(41, 48, 60, 0.7) !important;
    backdrop-filter: blur(24px) saturate(200%);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.75);
}
/* Make the inner navbar area transparent since wrapper handles the glass */
#navbar-wrapper .bg-pinki {
    background: transparent !important;
}
.dark-mode #navbar-wrapper .bg-pinki {
    background: transparent !important;
}
/* Navbar link hover enhancement */
.navbar .navbar-nav .nav-link {
    position: relative;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 2px;
}
.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 60%;
}
.dark-mode .navbar .navbar-nav .nav-link::after {
    background: var(--accent-color);
}
.dark-mode .navbar .navbar-nav .nav-link:hover {
    text-shadow: 0 0 12px rgba(5, 176, 136, 0.4);
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Modern Card Lift Effects --- */
.bg-pinki.border-orange-end,
.services .services-item,
[class*="border-orange-end"] {
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bg-pinki.border-orange-end:hover,
.services .services-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2) !important;
}
.dark-mode .bg-pinki.border-orange-end:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6) !important;
}
.dark-mode .bg-pinki {
    backdrop-filter: blur(8px);
}

/* --- Button Modern Style --- */
.btn-orange {
    border-radius: 60px;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px -8px rgba(5, 176, 136, 0.3);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-orange:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 30px -10px rgba(5, 176, 136, 0.45);
}
.dark-mode .btn-orange {
    box-shadow: 0 8px 25px rgba(5, 176, 136, 0.25);
}
.dark-mode .btn-orange:hover {
    box-shadow: 0 16px 35px rgba(5, 176, 136, 0.4);
}



/* --- Legal Modals --- */
.trust-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}
.trust-modal.active { display: flex; }
.trust-modal-content {
    background: var(--bs-body-bg, #fff);
    border-radius: 40px;
    padding: 40px 36px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    border: 3px solid var(--accent-color, #05B088);
}
.trust-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color, #05B088);
    color: #fff;
    border: 2px solid var(--bs-body-bg, #fff);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    line-height: 1;
}
.trust-modal-close:hover { transform: scale(1.1); background: #048a6b; }
.trust-modal-content i {
    font-size: 3.5rem;
    color: var(--accent-color, #05B088);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}
.trust-modal-content h3 {
    text-align: center;
    color: var(--bs-body-color, #1E293B);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.trust-modal-content .modal-description {
    text-align: left;
    color: var(--bs-body-color, #475569);
    line-height: 1.7;
    font-size: 1.05rem;
    max-height: 270px;
    overflow-y: auto;
}
.trust-modal-content .modal-description p {
    margin-bottom: 10px;
}
.trust-modal-content .modal-description ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}
.trust-modal-content .modal-description li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    line-height: 1.5;
}
.trust-modal-content .modal-description li::before {
    content: "\2022";
    position: absolute;
    left: 4px;
    color: var(--accent-color, #05B088);
}
.trust-modal-content .modal-description::-webkit-scrollbar {
    width: 6px;
}
.trust-modal-content .modal-description::-webkit-scrollbar-track {
    background: var(--bs-tertiary-bg, #f1f5f9);
    border-radius: 3px;
}
.trust-modal-content .modal-description::-webkit-scrollbar-thumb {
    background: var(--accent-color, #05B088);
    border-radius: 3px;
}
.dark-mode .trust-modal-content i {
    background: var(--bs-secondary-bg, #1E293B);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}
.dark-mode .trust-modal-content {
    background: var(--bs-secondary-bg, #1E293B);
    border-color: var(--accent-color, #05B088);
}
.dark-mode .trust-modal-content h3 {
    color: #F8FAFC;
}
.dark-mode .trust-modal-content .modal-description {
    color: #F8FAFC;
}

/* Responsive Bold Classes */
@media (max-width: 768px) {

