/*

Theme Name: njcc

Theme URI: 

Author:  njcc

Author URI: 

Description: Responsive theme for njcc.

Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready

Version: 1.0

License: GNU General Public License v2 or later

Text Domain: NJCC

*/

/* Reset and Base Styles */
        /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #0d2d4e;
    --secondary: #e67e22;
    --accent: #3498db;
    --light: #f8f9fa;
    --dark: #1a1a2e;
    --text: #2c3e50;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --gradient: linear-gradient(135deg, var(--primary) 0%, #1a5276 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #d35400 100%);
}

body {
    line-height: 1.7;
    color: var(--text);
    background-color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0px;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 6px 15px rgba(230, 126, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(230, 126, 34, 0.4);
}
img.width-100.wp-post-image {
    height: auto;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--secondary);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.8;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    background: #fff !important;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    width:150px;
}

.logo h1 {
    font-size: 2.2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
    padding: 8px 0;
    font-size: 1rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    /* position: absolute; */
    width: 0;
    height: 3px;
    /* background: var(--gradient-secondary); */
    bottom: 0;
    left: 0;
    /* transition: var(--transition); */
    /* border-radius: 10px; */
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(230, 126, 34, 0.1);
    color: var(--secondary);
    padding-left: 30px;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown > a::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
    z-index: 1001;
}

/* Banner Swiper Styles */
.banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.swiper-slide-active {
    transform: scale(1);
}

.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 850px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease;
}

.swiper-slide-active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.9;
}

.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 12px !important;
    transition: var(--transition);
    position: relative;
}

.swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.3);
}

.swiper-pagination-bullet-active::after {
    opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Business Categories Styles */
.categories {
    padding: 60px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.05);
    top: -150px;
    right: -150px;
}

.categories::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.05);
    bottom: -100px;
    left: -100px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.category-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 50px 30px;
    position: relative;
    z-index: 1;
    border-bottom: 4px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient);
    transition: var(--transition);
    z-index: -1;
    opacity: 0;
}

.category-card:hover::before {
    height: 100%;
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-bottom: 4px solid var(--secondary);
    color: white;
}

.category-card:hover .category-icon {
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.category-card:hover h3 {
    color: white;
}

.category-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.category-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 25px;
    transition: var(--transition);
    display: inline-block;
}

.category-card h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: var(--primary);
    transition: var(--transition);
    font-weight: 700;
}

.category-card p {
    color: #666;
    margin-bottom: 25px;
    transition: var(--transition);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.05);
    bottom: -150px;
    right: -150px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-secondary);
    transition: var(--transition);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
    transition: var(--transition);
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio {
    padding: 60px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.portfolio::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.05);
    top: -125px;
    left: -125px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.portfolio-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.portfolio-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.portfolio-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 45, 78, 0.7);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-img::after {
    opacity: 1;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 25px;
    position: relative;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 700;
}

.portfolio-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.portfolio-tag {
    display: inline-block;
    background: var(--light);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(13, 45, 78, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.05);
    bottom: -125px;
    right: -125px;
}

.testimonial-slider {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    margin: 20px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    border-radius: var(--radius) var(--radius) 0 0;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    position: relative;
    line-height: 1.8;
}

.testimonial-text::before {
    content: '"';
    font-size: 5rem;
    color: var(--secondary);
    position: absolute;
    top: -25px;
    left: -10px;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--secondary);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.author-info p {
    color: #777;
    font-size: 0.9rem;
}

.swiper-pagination-testimonials {
    position: relative;
    margin-top: 40px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.05);
    top: -150px;
    right: -150px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -200px;
    right: -200px;
}

.contact-cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -150px;
    left: -150px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-btn {
    background: white;
    color: var(--primary);
    font-weight: 700;
}

.cta-btn:hover {
    background: var(--light);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.05);
    top: -175px;
    right: -175px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-info p {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-details h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-details p {
    margin-bottom: 0;
    color: #666;
}

.contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: var(--shadow-hover);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: #f9f9f9;
}

.form-control:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
    background: white;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer Styles */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.05);
    top: -200px;
    left: -200px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    transition: var(--transition);
    color: #bbb;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #bbb;
    position: relative;
    z-index: 1;
}

/* Floating Action Button */
.fab-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.fab-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.6);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide-content h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 3rem;
    }
    
    .banner {
        height: 80vh;
        min-height: 600px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        background: white;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
        width: 100%;
    }

    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        margin-top: 10px;
        margin-left: 20px;
    }

    .dropdown > a::after {
        content: '\f078';
        float: right;
    }

    .dropdown.active > a::after {
        content: '\f077';
    }

    .dropdown-menu li {
        margin: 5px 0;
    }

    .dropdown-menu a {
        padding: 8px 15px;
        font-size: 0.95rem;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }

    .slide-content {
        padding: 0 15px;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .banner {
        height: 60vh;
        min-height: 450px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .service-grid,
    .testimonial-grid,
    .features-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .fab-icon {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}




/* ================================
   MAIN MENU (DESKTOP)
================================ */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    color: #222;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 0;
    font-weight: 500;
    display: block;
    transition: 0.3s ease;
}

.nav-menu > li > a:hover {
    color: #e63946; /* hover highlight */
}

/* Arrow for dropdown */
.nav-menu .menu-item-has-children > a::after {
    content: "\f107"; /* FontAwesome arrow-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 6px;
    font-size: 15px;
    transition: 0.3s ease;
}

.nav-menu .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* ================================
   DROPDOWN MENU
================================ */
.nav-menu .sub-menu {
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease;
    border-radius: 10px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
    z-index: 99;
}

.nav-menu .sub-menu li a {
    padding: 12px 18px;
    display: block;
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s ease;
}

.nav-menu .sub-menu li a:hover {
    background: #f7f7f7;
    color: #e63946;
}

/* Show dropdown on hover */
.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/* ================================
   SUB-MENU → SUB-SUB MENU (Right Side)
================================ */
.nav-menu .sub-menu .menu-item-has-children {
    position: relative;
}

.nav-menu .sub-menu .menu-item-has-children > a::after {
    content: "\f105"; /* arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
}

.nav-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

/* ================================
   MOBILE MENU
================================ */
@media (max-width: 992px) {

    .nav-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0px 10px 20px rgba(0,0,0,0.10);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu .menu-item-has-children > a::after {
        float: right;
        transform: rotate(0deg);
    }

    .nav-menu .submenu-active > a::after {
        transform: rotate(180deg);
    }

    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }

    .nav-menu .submenu-open > .sub-menu {
        display: block;
    }
}

/*Start Inner Page banner*/
.banner.inner-page {
    background: url('https://reshapehome.com/backup/wp-content/uploads/2025/09/slider-1-1.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.banner.inner-page:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(245 245 245 / 85%);
    z-index: -1;
}
.banner-wrap {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding: 40px 0px;
}
.banner-wrap h1 {
    /* text-transform: uppercase; */
    color: #333;
    font-size: 32px;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0px;
}
.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #ffffff !important;
    border-radius: 0.25rem;
    margin-top: 20px;
}
.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #6c757d;
    content: "/";
}

/*End Inner Page banner*/
/*Start Main Blog Page*/
.blog-media img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    margin-bottom: 24px;
}
.blog-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: .8px;
}
.blog-content p {
    color: #666;
}
.blog-content .blog-btn {
    background: #264fa2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    letter-spacing: .4px;
    margin-top: 5px;
    transition: ease-in-out .3s;
}
.blog-sidebar {
    position: sticky;
    top: 100px;
    /* border: 2px solid #e9e9e9; */
}
.blog-list ul {
    list-style: none;
    padding: 0;
}
.blog-posts li a {
    font-size: 15px;
    color: #505050;
    transition: ease-in-out .3s;
    display: block;
}
.blog-posts li span {
    color: #1474b6;
    /* font-size: 16px; */
    display: block;
    margin-top: 5px;
    text-decoration: none;
}
.blog-list {
    padding: 20px;
}
.category-name h3 {
    font-size: 20px;
    /* margin-bottom: 20px; */
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.category-name h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #1474b6;
}
.blog-list ul {
    list-style: none;
    padding: 10px 0 0;
}
.blog-categories li a {
    color: #444;
    transition: ease-in-out .3s;
    position: relative;
    padding-left: 25px;
    font-size: 18px;
}
.blog-categories li a:before {
    position: absolute;
    content: '\f054';
    left: 0;
    font-family: fontawesome;
    font-size: 14px;
    top: 0;
    color: #264fa2;
}
.blog-col {
    margin: 5px 0px;
}
/*End Main Blog Page*/

/*Start about us Page*/
section.about-us-home {
    padding: 60px 0px 0px;
    background: linear-gradient(45deg, #154489, #00c2d0), linear-gradient(45deg, #8534ff, #4d90ff);
}
section.about-us {
    padding: 60px 0px 15px;
    background:#fff !important;
}
section.about-us .text{
    padding: 15px 15px 60px 15px;
}
section.about-us .text h3{
    font-size: 30px;
    line-height: 44px;
    color: #fff;
    margin-bottom: 20px;
}
section.about-us .text P{
    line-height: 30px;
    color: #fff;
}
section.about-us .text .sn-nav-btn {
    background-color: #333;
    float: left;
    margin-bottom: 70px;
}
section.about-us .content {
    padding: 20px;
    border: 2px solid #ededed;
    border-radius: 10px;
}
section.about-us .content ul{
    padding: 0 0 0 20px;
}
section.about-us .content ul li{
    margin-bottom: 15px;
}
section.about-us .image {
    padding: 15px;
    border: 2px solid #ededed;
    border-radius: 10px;
    margin-bottom: 10px;
}
/*End about us page*/

.top-banner {
    background: #f1feff;
    background-image: url(images/pattern-img.png);
    position: fixed;
    padding: 5px;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-box-shadow: 0 -5px 18px 0 rgba(0,0,0,4%);
    -moz-box-shadow: 0 -5px 18px 0 rgba(0, 0, 0, 4%);
    box-shadow: 0 -5px 18px rgba(0,0,0,4%);
}
.top-banner h3{
    font-size: 30px;
    font-weight: 600;
}
.inner-ban {
    display: flex;
    margin: 0 auto;
}
.ban-rght {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1em;
}
.img-block {
    margin-right: 2em;
    width: 127px;
}
section.about-us-home p{
    color: #fff;
}
section.about-us-home h3{
    color: #fff;
    font-size: 35px;
    margin-bottom: 30px;
}
section.about-us-home a.sn-nav-btn{
    text-align:left;
    float:left;
}
section.single-service.inner-page {
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
section.single-service.inner-page:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(245 245 245 / 85%);
    z-index: -1;
}

/*single blog page start */

.blog-posts {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%
}

.blog-post-item {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin-bottom: 20px
}

.post-link {
    display: block;
    text-decoration: none;
    color: inherit
}

.post-thumbnail img {
    width: 100%;
    height: auto
}

.post-text {
    text-align: center;
    border: 2px solid #e9e9e9;
    background: #fff;
    padding: 15px
}

.post-text h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px
}

.post-title {
    display: block;
    font-weight: 700;
    margin-bottom: 5px
}

.post-date {
    display: block;
    color: #666;
    font-size: .9em
}

.post-thumbnail-container .post-thumbnail {
    height: 210px
}

.post-thumbnail-container .post-thumbnail img {
    overflow: hidden;
    height: 210px;
    object-fit: cover
}

.blog-main .blog-overlay {
    padding: 15px;
    border: 2px solid #ebebeb;
    -webkit-box-shadow: 0 6px 15px 0 rgba(64,79,104,.05);
    box-shadow: 0 6px 15px 0 rgba(64,79,104,.05)
}

.blog-main .blog-media img {
    margin-bottom: 0
}

section.blogs .blog-text a {
    color: #505050!important;
    font-weight: 600
}

section.blogs .blog-text a:hover {
    color: #1474b6 !important
}

.blog-main .blog-overlay .blog-text h3 a {
    color: #505050;
    font-family: 'Montserrat',sans-serif;
    font-weight: 600
}

.heading-section.d-flex.justify-content-between.align-items-center {
    margin-bottom: 20px
}

.view-all a {
    font-weight: 700;
    color: #e60001;
}

.title {
    text-align: center;
    padding: 0 10% 3%
}

.blog-posts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.post {
    width: calc(33% - 10px);
    overflow: hidden;
    margin: 10px 0
}

.post img {
    width: 100%;
    border-radius: 0;
    transition: .3s linear;
    height: auto;
    object-fit: cover
}

.post-content {
    background-color: #fff;
    margin: 0;
    padding: 15px;
    transform: translateY(0px);
    transition: .3s linear;
    -webkit-box-shadow: 0 0px 25px rgba(0,0,0,.07);
    box-shadow: 0 0px 25px rgba(0,0,0,.07);
    border-radius: 0;
    border: 2px solid rgba(0,0,0,.07);
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all .5s ease 0s
}

.post-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 30px
}

.post-content h3 a {
    color: #505050;
    font-family: 'Montserrat',sans-serif;
    font-weight: 600
}

.blog-sidebar-wrap.home {
    margin-top: 0
}

.blog-sidebar-wrap {
    padding: 15px;
    border: 2px solid #ebebeb
}

.blog-sidebar-wrap ul {
    list-style: none
}

.blog-sidebar-wrap ul li {
    padding: 20px 0;
    border-bottom: 2px solid #f3f3f3
}

.blog-sidebar-wrap ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #505050
}

.blog-sidebar h4 {
    margin-top: 10px
}

.blog-sidebar button.btn.btn-danger {
    position: relative;
    z-index: 1;
    float: right;
    background: #1474b6;
    border-color: #1474b6
}

.recent-post-img {
    height: 70px;
    width: 100px;
    border: 2px solid #f3f3f3;
    float: left;
    margin-right: 10px;
    overflow: hidden
}

.recent-post-img img {
    width: 100%;
    height: 70px;
    overflow: hidden;
    object-fit: cover
}

.blog-details-content {
    padding: 15px;
    border: 2px solid #ebebeb
}

.blog-details-content h3 {
    font-weight: 700;
    color: #333
}

.blog-details-content ul.blog-icons {
    list-style: none;
    padding: 20px 0;
    display: flex
}

.blog-details-content ul.blog-icons li {
    padding-right: 34px;
    font-size: 16px;
    font-weight: 700;
    color: #1474b6
}

.blog-details-content ul {
    padding: 20px
}

.blog-details-content ul li {
    line-height: 30px;
    margin: 5px 0
}

.recent-post-info h5 {
    font-size: 17px;
    font-weight: 600
}

.date {
    font-size: 14px;
    font-style: italic;
    color: #e60001;
}

.post:hover .post-img {
    transform: translateY(20px)
}

.post:hover .post-content {
    transform: translateY(-20px)
}

@media screen and (max-width: 1200px) {
    .blog-posts {
        justify-content:center
    }

    .post {
        width: min(600px, 100%)
    }
}


.search-bar form {
    display: flex;
    justify-content: space-between
}

.search-bar form input.form-control {
    border: 2px solid #e5e5e5;
    border-radius: 0
}

.search-bar form button.btn {
    background: red;
    border-radius: 0;
    color: #fff
}


section.single-page .content {
    width: 100%;
    text-align: center;
    padding: 30px 15px;
    background: #ebebeb
}

section.single-page .content h3 {
    font-size: 22px;
    font-weight: 700
}

.wp-block-image {
    margin-bottom: 20px
}

section.contact-us {
    padding: 60px 0
}

section.contact-us .content {
    text-align: center
}

section.contact-us .content h3 {
    line-height: 35px
}



section.blogs.col-4-items .blog-media img {
    height: auto;
    overflow: hidden
}

section.blogs.col-4-items .blog-main .blog-overlay .blog-text h3 a {
    font-size: 18px;
    line-height: 1.3
}

section.blogs .image {
    height: auto;
    overflow: hidden
}

section.blogs .image.must-read {
    height: 400px
}
.blog-main {
    width: 100%;
}
.blog-details-main {
    margin-bottom: 20px;
}

img.custom-logo {
    height: auto;
}
/*Single blog page End*/


/* About Us Section */
.about-us {
    padding: 60px 0 !important;
    background-color: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text .section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.about-text .section-title p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.about-description p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.about-features {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features .feature i {
    color: #3498db;
    font-size: 1.2rem;
}

.about-features .feature span {
    color: #2c3e50;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px;
    color: white;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.overlay-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 60px 0;
    }
    
    .about-text .section-title h2 {
        font-size: 2rem;
    }
    
    .about-image img {
        height: 400px;
    }
}



/* Video Section */
.video-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.video-section .section-title h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.video-section .section-title p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-placeholder:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.play-button i {
    margin-left: 5px;
}

.video-embed {
    border-radius: 15px;
    overflow: hidden;
}

.video-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.video-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin: 0px auto 20px;
}

.feature-text h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.feature-text p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.video-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.video-stats .stat h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 10px;
    font-weight: 700;
}

.video-stats .stat p {
    color: #7f8c8d;
    font-size: 0.95rem;
    font-weight: 500;
}

section.dr-profile.pt.pb
 {
    padding: 50px 0px;
}
section.dr-profile.pt.pb .appoinment {
    padding: 15px;
    border: 2px solid #d7d7d7;
    text-align: center;
}
section.dr-profile .profile {
    position: sticky;
    top: 100px;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 14px;
}

.copyright p {
    margin: 0;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}

/* Responsive Design for Video Section */
@media (max-width: 1200px) {
    .video-container {
        grid-template-columns: 1fr;
    }
    
    .video-thumbnail,
    .video-embed iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-section .section-title h2 {
        font-size: 2rem;
    }
    
    .video-thumbnail,
    .video-embed iframe {
        height: 300px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .video-stats .stat h3 {
        font-size: 2rem;
    }
    
    .video-feature {
        padding: 15px;
    }
    section.dr-profile.pt.pb
     {
        padding: 30px 0px;
    }
}

@media (max-width: 480px) {
    .video-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

section#services {
    background: #fff;
}