body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #f5f7fa;
}

a{text-decoration: none; color: #474e16;}
footer a{color: #7a8629;}
.navbar {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    max-width: 180px;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-left: 20px;
    padding: 10px 18px !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #474e16 !important;
    border-bottom: 2px solid #474e16;
}

.nav-link.btn {
    background: #474e16;
    color: #fff !important;
    border: none;
    padding: 12px 30px !important;
    border-radius: 8px;
}

.nav-link.btn:hover {
    background: #3b4113;
}

.hero {

    overflow: hidden;
    margin-top: 92px;
}

.hero-slider .slide {
    height: 100%;
    position: relative;
}

/* Slick Slider Custom Styles */
.slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.slick-dots li {
    margin: 0 8px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 4px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: #ccc;
}

.slick-dots li.slick-active button {background: #474e16 !important;}

.slick-dots li button:before {
   
    display: none !important;
}


.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 10;
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev:before {
    content: '←';
}

.slick-next:before {
    content: '→';
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.6);
    z-index: 1;
}

.hero-slider .slide .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 40px;
    max-width: 900px;
}

.hero-slider .hero-content h1 {

    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.hero-slider .hero-content h2 {

    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.hero-slider .hero-content p {

    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

.hero-slider .btn-main {
    background: #fff;
    color: #474e16 !important;
    padding: 15px 45px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.hero-slider .btn-main:hover {
    background: #474e16;
    color: #fff !important;
    border-color: #474e16;
}

.section {
    padding: 120px 0;
    background: #ffffff;
}

.feature-card {
display: block;
}


.feature-card h3 {

    margin-bottom: 10px;
}

.feature-card p {
    color: #555;
    line-height: 1.8;
}

.procedure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  gap: 30px;
    margin-top: 40px;
}

.procedure-item {
    padding: 15px 15px 0 15px;
    border-radius: 10px;
    background: #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.procedure-item:hover {
    background: #751918;
}

.procedure-item h4 {

    margin-bottom: 15px;
}

.procedure-item:hover h4 {
    color: #e9ecef;
}

.procedure-item p {
    color: #555;
}

.procedure-item:hover p {
    color: #e9ecef;
}

.before-after-card {
    padding: 30px;
    border-radius: 15px;
    background: #f5f7fa;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.before-after-slider {
    margin-top: 40px;
}

.before-after-item {
    padding: 20px;
}

.before-after-item .before-after-card {
    margin: 0 auto;
    max-width: 800px;
}

.before-after-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-wrapper {
    height: 350px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.card-content h3 {
    font-size: 24px;
    color: #474e16;
    margin-bottom: 15px;
}

.card-content p {
    color: #555;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    color: #474e16;
    position: relative;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #474e16;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.before-after-content p {
    font-size: 18px;
    color: #666;
   
    margin: 0 auto;
}
.before-after-content ul li{
    font-size: 18px;
    color: #666;
   
    margin: 0 auto;
}
.before-after-content h2 {
    color: #474e16;
    position: relative;
    margin-bottom: 20px;
}

.before-after-content h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #474e16;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}


.list-unstyled li{margin-bottom: 15px;}

.text-primary{color: #474e16 !important;}
.bg-primary{background: #474e16 !important;}
.text-white, .text-white  h2, .text-white  p{color: #fff !important;}
.btn-white{background: #fff !important; border-color:#fff !important ; color: #000 !important;}

/* Procedure Cards Styling */

.feature-tag {
    background: linear-gradient(135deg, #474e16, #7a8629);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.arrow-icon {
    color: #7a8629; /* Change to your preferred color */
    margin-right: 10px;
    font-size: 1.2em;
    vertical-align: middle;
}

.list-unstyled11 {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
.procedure-card:hover .feature-tag {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .procedure-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .procedure-title {
        font-size: 1.2rem;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 2rem !important;
    }
}

/* Service Cards Design */
.service-card {
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid #e9ecef;
    background: #fff;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.service-card:hover {
    box-shadow: 0 8px 32px rgba(71, 78, 22, 0.12), 0 1.5px 6px rgba(71, 78, 22, 0.08);
    transform: translateY(-6px) scale(1.03);
    border-color: #7a8629;
}
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5f7fa 60%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(71, 78, 22, 0.07);
}
.service-card h3 {
    color: #474e16;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 18px;
}
.service-card ul {
    padding-left: 0;
    margin-bottom: 0;
}
.service-card ul li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    text-align: left;
}



@media (max-width: 991px) {
    .service-card {
        min-height: 0;
        margin-bottom: 24px;
    }
}

@media (max-width: 1450px) {
    .hero {
        margin-top: 75px !important;
    }
}

.list-unstyled11 li {
    position: relative;
    padding-left: 28px;
}
.arrow-list li:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../images/arrow-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 5px;
}


.social-icons a{width: 30px; height: 30px; display: inline-block; text-align: center; line-height: 30px; border-radius: 50%; transition: all 0.3s ease; background: #fff;}
.social-icons a i{color: #7a8629;}
.social-icons a:hover{background: #7a8629; color: #fff;}
.social-icons a:hover i{color: #fff;}