html {
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Times New Roman',sans-serif;
}

.navbar-brand img {
    height: 70px;
    object-fit: contain;
}

h2, h3, h4, h5 {
    color: #333 !important;
}

.navbar {
    background: #ffffff;
}

.nav-link {
    font-weight: 600 !important;
    color: #222 !important;
    transition: 0.3s ease;
}

    .nav-link:hover,
    .nav-link.active {
        color: #d4af37 !important;
    }

.navbar .dropdown-menu {
    border-radius: 0px;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
}


.navbar .dropdown-item {
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 400 !important;
    transition: all 0.3s ease;
    color: #d4af37 !important;
}

.navbar .dropdown-toggle::after {
    display: none !important;
}

.navbar .dropdown-item:hover {
    border-bottom: 1px solid #d4af37;
    color: #032c1e;
}

.dropdown-item i {
    opacity: 0;
    margin-left: -10px;
    transition: 0.3s ease;
}

.dropdown-item:hover i {
    opacity: 1;
    margin-left: 0;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.btn-pathology {
    background: #111111;
    color: #fff;
    border: 2px solid #d4af37;
    padding: 8px 20px;
    border-radius: 5px;
    transition: 0.3s ease;
}

    .btn-pathology:hover {
        background: #d4af37;
        color: #111111;
    }

.slider-img {
    height: 85vh;
    object-fit: cover;
}

.custom-caption {
    top: 50%;
    left: 8%;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
    max-width: 500px;
}

.carousel-caption {
    position: absolute;
    top: 10%;
    left: 5% !important;
}

.animate-text {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeLeft 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
    color: #333;
    font-size: 20px;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#outer-box-1 {
    background: #470e39;
    margin-top: -125px;
    z-index: 99 !important;
}

#outer-box-2 {
    background: #856113;
    margin-top: -125px;
    z-index: 99 !important;
}

#outer-box-3 {
    background: #032c1e;
    margin-top: -125px;
    z-index: 99 !important;
}

#outer-box-4 {
    background: #7f1624;
    margin-top: -125px;
    z-index: 99 !important;
}

.box-1 {
    position: relative;
    height: 300px;
    padding: 45px 30px !important;
    overflow: hidden;
    color: #fff;
}

    .box-1 table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 10px;
    }

.about1-img-shape {
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.service-section {
    background-color: #f4f4f4;
    background-image: radial-gradient(rgba(0,0,0,0.05) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
}

.service-box {
    margin: 30px 0;
}

    .service-box .icon {
        width: 60px;
        height: 60px;
        background: #032c1e;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        color: #fff !important;
        font-size: 25px;
    }

        .service-box .icon img {
            width: 30px;
        }

.btn-pathology {
    background-color: #d4af37 !important;
    color: #fff !important;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .btn-pathology :hover {
        background-color: #d4af37;
        color: #032c1e;
    }



.center-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    margin: auto;
}

.rotating-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px dotted #032c1e;
    animation: rotateBorder 10s linear infinite;
}


.center-image {
    position: absolute;
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f2f2ff;
}

    .center-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.why-card {
    background: url('/assests/Images/photos/yellow-dotted.png');
    padding: 50px 30px;
    color: #fff;
    height: 540px !important;
}

.bordered-img {
    border: 2px solid #f0be09;
    padding: 20px;
    height: 120px;
    width: 120px;
    border-radius: 20%;
}



@media (max-width: 767px) {

    /* Slider Fix */
    .slider-img {
        height: 60vh;
        object-fit: cover;
    }

    .carousel-caption {
        position: absolute;
        bottom: 20px;
        left: 15px;
        right: 15px;
        text-align: center !important;
        padding: 10px;
    }

        .carousel-caption h1,
        .carousel-caption h2 {
            font-size: 20px;
        }

        .carousel-caption p {
            font-size: 13px;
        }


    #outer-box-1,
    #outer-box-2,
    #outer-box-3,
    #outer-box-4 {
        margin-bottom: 20px;
    }

    .box-1 {
        margin-top: 0 !important;
    }


    .mt-md-n5 {
        margin-top: 0 !important;
    }

    .about1-img-shape img {
        width: 100%;
        height: auto;
    }

    .mt-6 {
        margin-top: 20px !important;
    }

    /* Why Choose Us */
    .why-card {
        margin-bottom: 30px;
        text-align: center;
    }

    .inner-box {
        text-align: center;
    }

    .icon-img-box {
        margin: auto;
    }

    .text,
    .text-muted {
        margin-left: 0 !important;
    }

    /* Services Section */
    .service-left,
    .service-right {
        text-align: center !important;
        margin-bottom: 30px;
    }

    .service-box {
        margin-bottom: 20px;
    }

    .center-wrapper {
        width: 200px;
        height: 200px;
        margin: 20px auto;
    }

    .center-image {
        width: 160px;
        height: 160px;
    }

    .mt-120 {
        margin-top: 40px !important;
    }

    /* Process Section */
    .process-img {
        margin-bottom: 10px;
    }

    /* Testimonial */
    .testimonial-card {
        padding: 20px !important;
        text-align: center;
    }

    .testimonial {
        flex-direction: column;
        align-items: center;
    }

        .testimonial .img {
            margin-bottom: 15px;
        }

    .star-rating {
        font-size: 18px;
        color: #FFD700;
    }
}

.bottom-section {
    background: #000;
}

    .bottom-section h5 {
        font-size: 18px;
        color: #fff;
    }

    .bottom-section li {
        margin-bottom: 8px;
    }

    .bottom-section a {
        color: #ffffff;
        text-decoration: none;
        transition: 0.3s;
    }

        .bottom-section a:hover {
            color: #90caf9;
            padding-left: 5px;
        }

    .bottom-section hr {
        opacity: 0.2;
    }

.subtitle {
    color: #856113 !important;
}

.icon-style {
    font-size: 40px;
    color: #032c1e;
}

.icon-circle {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #032c1e, #0b4a33);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon {
    font-size: 35px;
    color: #fff;
}

.service-section {
    background-color: #f8f6f1;
    background-image: radial-gradient(rgba(0,0,0,0.06) 1.5px, transparent px);
    background-size: 22px 22px;
}

.star-rating {
    color: #FFD700 !important;
    font-size: 28px;
}

.breadcrumb-section {
    background: url('/assests/Images/padam-breadcrumb-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    height: 400px;
}


.page-title {
    font-weight: 600;
    margin-bottom: 0 !important;
}

.breadcrumb {
    background: none;
    margin-bottom: 0;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #00a3c8;
}

.breadcrumb-item.active {
    color: #6c757d;
}


.padam-services-section {
    background-color: #f8fafc;
    padding: 60px 0;
}


.service-card {
    border: none;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    height: 100%;
    overflow: hidden;
    position: relative;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
    }


.icon-container {
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: pulseIcon 2s infinite;
    font-size: 30px;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}




.service-card:hover .icon-container {
    background: linear-gradient(135deg, #032c1e, #0b4a33);
    color: #ffffff;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.test-group-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .test-group-list li {
        font-size: 0.95rem;
        color: #4a5568;
        padding: 8px 0;
        border-bottom: 1px solid #edf2f7;
        display: flex;
        align-items: center;
    }

        .test-group-list li:last-child {
            border-bottom: none;
        }

        .test-group-list li i {
            font-size: 10px;
            color: #007bff;
            margin-right: 12px;
            opacity: 0.7;
        }

@media (max-width: 768px) {
    .padam-services-section {
        padding: 40px 0;
    }
}

.padam-services-section {
    position: relative;
    overflow: hidden;
}

.corner-icon {
    position: absolute;
    width: 70px;
    opacity: .8;
    z-index: 0;
}


.icon-top-left {
    top: 40px;
    left: 40px;
    animation: float1 6s ease-in-out infinite;
}

.icon-top-right {
    top: 30px;
    right: 50px;
    animation: float2 7s ease-in-out infinite;
}

.icon-bottom-left {
    bottom: 40px;
    left: 50px;
    animation: float3 8s ease-in-out infinite;
}

.icon-bottom-right {
    bottom: 40px;
    right: 40px;
    animation: float4 7s ease-in-out infinite;
}

/* animations */

@keyframes float1 {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float2 {
    0%,100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

@keyframes float3 {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

@keyframes float4 {
    0%,100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-10deg);
    }
}


.collection-section {
    background: #ffffff;
    padding: 80px 0;
}

.location-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 5px solid #0b4a33 !important;
}

    .location-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
        border-left-color: #856113 !important;
    }

.loc-icon {
    font-size: 1.5rem;
    color: #0b4a33 !important;
    margin-bottom: 15px;
}

    .loc-icon:hover {
        color: #0b4a33 !important
    }

.loc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.loc-address {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}



.image-box {
    overflow: hidden;
    border-radius: 12px;
}

    .image-box img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 12px;
        transition: 0.4s;
    }

        .image-box img:hover {
            transform: scale(1.05);
        }

a {
    text-decoration: none !important;
    color: #fff !important;
}

.top-offer-bar {
    background: #0b4a33;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

    .top-offer-bar .offer-btn {
        background: #fff;
        color: #0b4a33 !important;
        padding: 4px 14px;
        border-radius: 20px;
        margin-left: 10px;
        text-decoration: none;
        font-weight: 600;
        font-size: 13px;
    }

.home-offer-section {
    background: #f5f9ff;
    padding: 70px 0;
}

.offer-list {
    list-style: none;
    padding: 0;
}

    .offer-list li {
        margin-bottom: 8px;
        font-size: 16px;
    }

.offer-img {
    max-height: 350px;
}

.floating-offer-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d4af37;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

.floating-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.call-float {
    background: #198754;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
}

.whatsapp-float {
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
}

.call-float:hover {
    background: #157347;
}

.whatsapp-float:hover {
    background: #1ebe5d;
}
