/********** Template CSS **********/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


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

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-dark,
.btn.btn-outline-dark:hover {
    color: var(--bs-white);
    font-weight: 500;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    border-color: var(--bs-dark);
}

.btn.btn-dark:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

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

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

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

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


/*** Navbar ***/
.navbar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.navbar .navbar-brand {
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    margin-left: 0.5rem;
}

.navbar .navbar-toggler {
    padding: 0.5rem 1.5rem;
    padding-left: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    border: 2px solid #CD5F37;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav {
    text-align: center;
    justify-content: center;
}

.navbar .navbar-nav .nav-item {
    text-align: center;
}

.navbar .navbar-collapse {
    justify-content: center;
}

/* Smooth collapse animation - slower like about2 */
.navbar-collapse {
    transition: height 0.5s ease-in-out !important;
}

.navbar-collapse.collapsing {
    transition: height 0.5s ease-in-out !important;
}

/* Mobile navbar brand responsive text - Smaller text, same icon size */
.navbar-brand h1 {
    font-size: clamp(0.9rem, 3.5vw, 1.2rem) !important;
    margin-bottom: 0 !important;
}

.navbar-brand h1 i {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
}

@media (max-width: 991px) {
    .navbar {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .navbar .navbar-brand {
        padding: 0.5rem 0.75rem;
        margin-left: 0.25rem;
    }
    
    .navbar .navbar-brand h1 {
        font-size: clamp(0.85rem, 3vw, 1.1rem) !important;
    }
    
    .navbar .navbar-brand h1 i {
        font-size: clamp(1.6rem, 6vw, 2rem) !important;
        margin-right: 0.5rem !important;
    }
    
    .navbar .navbar-toggler {
        padding: 0.5rem 1rem;
        padding-left: 1.5rem;
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 10px 0;
    color: var(--bs-secondery);
    font-size: 17px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .navbar-nav .dropdown-item:hover,
.navbar .navbar-nav .dropdown-item.active {
    background: var(--bs-primary);
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-light {
    font-weight: 500;
    color: var(--bs-secondery);
}

.navbar .btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Hero ***/
.hero-header {
    background: url(../img/Adobe\ Express\ -\ file\ \(1\).jpg) top right no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-primary);
}

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

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-primary);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px 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(2);
        opacity: 0;
    }
}

#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: var(--bs-white);
    background: #000000;
    opacity: 1;
}

.page-header {
    background: url(../img/hero.jpg) center right no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-secondery)
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--bs-primary);
}


/*** Appointment ***/
@media (min-width: 992px) {
    .container.appointment {
        max-width: 100% !important;
    }

    .container.appointment .appointment-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.appointment .appointment-form {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.appointment .appointment-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.appointment .appointment-form  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.appointment .appointment-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.appointment .appointment-form  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.appointment .appointment-text {
    background: linear-gradient(rgba(205, 95, 55, .95), rgba(205, 95, 55, .95)), url(../img/service-4.jpg) center center no-repeat;
    background-size: cover;
}

.container.appointment .appointment-form {
    background: linear-gradient(rgba(72, 30, 11, .95), rgba(72, 30, 11, .95)), url(../img/service-1.jpg) center center no-repeat;
    background-size: cover;
}

.container.appointment .appointment-text .h-100,
.container.appointment .appointment-form .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item .service-text {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.service-item .service-img {
    transition: .5s;
}

.service-item:hover .service-img {
    transform: scale(1.2) rotate(7deg);
}



/*** Features ***/
.feature .feature-item .btn-square {
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    border: 15px solid var(--bs-white);
}

.twentytwenty-wrapper {
    height: 100%;
}


/*** Team ***/
.team {
    position: relative;
}

.team::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 110px;
    left: 0;
    bottom: 3rem;
    background: var(--bs-light);
    z-index: -1;
}

.team .team-item {
    position: relative;
    overflow: hidden;
}

.team .team-item img {
    position: relative;
    transform: scale(1.1);
    transition: .5s;
}

.team .team-item:hover img {
    margin-top: -30px;
    padding-bottom: 30px;
}

.team .team-text {
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team .team-text-overflow {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-text-overflow {
    bottom: 0;
    opacity: 1;
}



/*** Testimonial ***/
.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    animation: pulse-img 5s ease-out infinite;
}

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

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

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

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-dark);
}


/*** Footer ***/
.footer {
    color: rgba(256, 256, 256, .6);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(256, 256, 256, .6);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(256, 256, 256, .6);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(256, 256, 256, .6);
    border: 1px solid rgba(256, 256, 256, .6);
}

.footer .btn.btn-square:hover {
    color: var(--bs-white);
    border-color: var(--bs-primary);
    background: var(--bs-primary);
}

.footer .form-control {
    color: var(--bs-light);
    border-color: rgba(256, 256, 256, .6);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}











































  .SerK1 {
            max-width: 1400px;
            margin: 0 auto;
        }

        .SerK2 {
            text-align: center;
            margin-bottom: 50px;
            padding: 20px;
        }

        .SerK2 h1 {
            font-size: 2.2rem;
            color: #1a1a1a;
            margin-bottom: 12px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            position: relative;
            display: inline-block;
        }

        .SerK2 h1::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #CD5F37 0%, #e07e5a 100%);
            border-radius: 2px;
        }

        .SerK2 p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
            font-family: 'Inter', sans-serif;
        }

        .SerK3 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }

        .SerK4 {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            border: 1px solid #e9ecef;
        }

        .SerK4::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #CD5F37 0%, #e07e5a 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .SerK4:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 50px rgba(205, 95, 55, 0.15);
        }

        .SerK4:hover::before {
            transform: scaleX(1);
        }

        .SerK5 {
            padding: 20px 20px 15px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            position: relative;
            background: white;
        }

        .SerK6 {
            position: relative;
            flex-shrink: 0;
        }

        .SerK7 {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #CD5F37 0%, #e07e5a 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(205, 95, 55, 0.3);
        }

        .SerK4:hover .SerK7 {
            transform: rotate(10deg) scale(1.1);
        }

        .SerK8 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: radial-gradient(circle, rgba(205, 95, 55, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .SerK4:hover .SerK8 {
            opacity: 1;
        }

        .SerK9 {
            flex: 1;
        }

        .SerK9 h3 {
            font-size: 1.2rem;
            color: #1a1a1a;
            margin-bottom: 6px;
            line-height: 1.3;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
        }

        .SerK10 {
            font-size: 0.75rem;
            color: #CD5F37;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            padding: 4px 10px;
            background: rgba(205, 95, 55, 0.08);
            border-radius: 10px;
            border: 1px solid rgba(205, 95, 55, 0.2);
        }

        .SerK11 {
            padding: 0 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .SerK12 {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
            font-size: 0.9rem;
            font-weight: 400;
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 12px 15px;
            border-radius: 10px;
            border-left: 3px solid #CD5F37;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .SerK13 {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 15px;
        }

        .SerK14 {
            background: linear-gradient(135deg, rgba(205, 95, 55, 0.08) 0%, rgba(232, 150, 120, 0.08) 100%);
            color: #1a1a1a;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            border: 1px solid rgba(205, 95, 55, 0.15);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

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

        .SerK14:hover {
            background: linear-gradient(135deg, #CD5F37 0%, #e07e5a 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(205, 95, 55, 0.3);
        }

        .SerK15 {
            margin-top: auto;
            padding: 16px;
            background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
            border-radius: 16px;
            border-left: 4px solid #CD5F37;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            min-height: 140px;
            position: relative;
            overflow: hidden;
        }

        .SerK15::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(205, 95, 55, 0.02) 0%, transparent 100%);
            pointer-events: none;
        }

        .SerK16 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .SerK17 {
            color: #1a1a1a;
            font-size: 0.9rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .SerK17 i {
            color: #CD5F37;
            font-size: 0.9rem;
        }

        .SerK18 {
            background: #CD5F37;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 2px 8px rgba(205, 95, 55, 0.3);
        }

        .SerK19 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            list-style: none;
            position: relative;
            z-index: 1;
        }

        .SerK20 {
            padding: 6px 8px;
            background: white;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            color: #666;
            font-size: 0.8rem;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            position: relative;
            padding-left: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .SerK20:hover {
            border-color: #CD5F37;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .SerK20::before {
            content: '▸';
            position: absolute;
            left: 6px;
            top: 50%;
            transform: translateY(-50%);
            color: #CD5F37;
            font-weight: bold;
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .SerK20:hover::before {
            transform: translateY(-50%) translateX(2px);
        }

        .SerK21 {
            padding: 15px 20px;
            background: white;
            border-top: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .SerK21::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(205, 95, 55, 0.3), transparent);
        }

        .SerK22 {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .SerK23 {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.75rem;
            color: #666;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
        }

        .SerK23 i {
            color: #CD5F37;
            font-size: 0.8rem;
        }

        .SerK24 {
            background: linear-gradient(135deg, #CD5F37 0%, #e07e5a 100%);
            color: white;
            padding: 6px 12px;
            border-radius: 10px;
            font-size: 0.75rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #CD5F37;
            box-shadow: 0 4px 12px rgba(205, 95, 55, 0.3);
            position: relative;
            overflow: hidden;
        }

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

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

        .SerK24:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(205, 95, 55, 0.4);
        }

        .SerK25 {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #CD5F37;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.65rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            z-index: 2;
            box-shadow: 0 4px 12px rgba(205, 95, 55, 0.3);
        }

        @media (max-width: 768px) {
            .SerK3 {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 20px;
            }
            
            .SerK2 h1 {
                font-size: 1.8rem;
            }
            
            .SerK5 {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            
            .SerK7 {
                align-self: center;
            }
            
            .SerK19 {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .SerK3 {
                grid-template-columns: 1fr;
            }
            
            body {
                padding: 30px 15px;
            }
            
            .SerK2 h1 {
                font-size: 1.6rem;
            }
            
            .SerK2 p {
                font-size: 1rem;
            }
            
            .SerK5, .SerK11, .SerK21 {
                padding: 15px;
            }
        }

















































 .aboutG1 {
            width: 100%;
            max-width: 100%;
           
            background: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(205, 95, 55, 0.15);
            display: flex;
            flex-direction: column;
            min-height: auto;
            border: 1px solid #f0e6e2;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.3s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Image Section */
        .aboutG2 {
            width: 100%;
            background: linear-gradient(135deg, #fdf6f3, #ffffff);
            position: relative;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .aboutG3 {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .aboutG4 {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(205, 95, 55, 0.2);
            height: 180px;
            background: #fdf6f3;
            transform: scale(0.95);
            opacity: 0;
            animation: zoomIn 0.6s ease-out 0.5s forwards;
        }

        @keyframes zoomIn {
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .aboutG4 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .aboutG4:hover img {
            transform: scale(1.05);
        }

        .aboutG8 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            height: 120px;
        }

        .aboutG9 {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(205, 95, 55, 0.15);
            background: #fdf6f3;
            transform: translateY(20px);
            opacity: 0;
            animation: slideUp 0.5s ease-out forwards;
        }

        .aboutG9:nth-child(1) {
            animation-delay: 0.7s;
        }

        .aboutG9:nth-child(2) {
            animation-delay: 0.9s;
        }

        @keyframes slideUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .aboutG9 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .aboutG9:hover img {
            transform: scale(1.1);
        }

        .aboutG9:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(205, 95, 55, 0.25);
        }

        /* Contact Info */
        .aboutG11 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 12px;
        }

        .aboutG12 {
            display: flex;
            align-items: center;
            background: #ffffff;
            padding: 10px 12px;
            border-radius: 8px;
            border-left: 2px solid #CD5F37;
            box-shadow: 0 2px 8px rgba(205, 95, 55, 0.1);
            border: 1px solid #f0e6e2;
            transform: scale(0.9);
            opacity: 0;
            animation: popIn 0.4s ease-out forwards;
            transition: all 0.3s ease;
        }

        .aboutG12:nth-child(1) { animation-delay: 1.1s; }
        .aboutG12:nth-child(2) { animation-delay: 1.2s; }
        .aboutG12:nth-child(3) { animation-delay: 1.3s; }
        .aboutG12:nth-child(4) { animation-delay: 1.4s; }

        @keyframes popIn {
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .aboutG12:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 6px 20px rgba(205, 95, 55, 0.2);
            background: #fdf6f3;
        }

        .aboutG12 i {
            color: #CD5F37;
            margin-right: 8px;
            font-size: 0.9rem;
            width: 14px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .aboutG12:hover i {
            transform: scale(1.2);
        }

        .aboutG12 span {
            font-weight: 600;
            color: #2c3e50;
            font-size: 0.75rem;
        }

        /* Text Section */
        .aboutG13 {
            width: 100%;
            padding: 25px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #ffffff;
        }

        .aboutG14 {
            margin-bottom: 15px;
            transform: translateX(-30px);
            opacity: 0;
            animation: slideInLeft 0.6s ease-out 0.8s forwards;
        }

        @keyframes slideInLeft {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .aboutG14 h1 {
            font-size: 1.6rem;
            margin-bottom: 6px;
            color: #2c3e50;
            font-weight: 800;
            line-height: 1.1;
        }

        .aboutG14 .specialty {
            font-size: 1rem;
            color: #CD5F37;
            margin-bottom: 3px;
            font-weight: 700;
        }

        .aboutG14 .sub-specialty {
            font-size: 0.8rem;
            color: #7f8c8d;
            font-weight: 500;
        }

        .aboutG15 {
            margin-bottom: 15px;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.5s ease-out 1s forwards;
        }

        .aboutG15 p {
            color: #555;
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .aboutG16 {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 15px 0;
        }

        .aboutG17 {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .aboutG18 {
            display: flex;
            align-items: center;
            background: #fdf6f3;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #f0e6e2;
            box-shadow: 0 2px 8px rgba(205, 95, 55, 0.08);
            transform: translateX(-20px);
            opacity: 0;
            animation: slideInLeftItem 0.4s ease-out forwards;
            transition: all 0.3s ease;
        }

        .aboutG18:nth-child(1) { animation-delay: 1.2s; }
        .aboutG18:nth-child(2) { animation-delay: 1.3s; }
        .aboutG18:nth-child(3) { animation-delay: 1.4s; }
        .aboutG18:nth-child(4) { animation-delay: 1.5s; }

        @keyframes slideInLeftItem {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .aboutG18:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 6px 20px rgba(205, 95, 55, 0.15);
            background: #ffffff;
        }

        .aboutG18 i {
            color: #CD5F37;
            margin-right: 10px;
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .aboutG18:hover i {
            transform: rotate(15deg) scale(1.2);
        }

        .aboutG18 span {
            font-weight: 600;
            color: #2c3e50;
            font-size: 0.8rem;
        }

        .aboutG19 {
            background: #fdf6f3;
            padding: 15px;
            border-radius: 10px;
            border-left: 2px solid #CD5F37;
            box-shadow: 0 3px 10px rgba(205, 95, 55, 0.1);
            transform: translateX(20px);
            opacity: 0;
            animation: slideInRight 0.5s ease-out 1.1s forwards;
        }

        @keyframes slideInRight {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .aboutG19 h3 {
            color: #2c3e50;
            margin-bottom: 12px;
            font-size: 1rem;
            font-weight: 700;
        }

        .aboutG20 {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0e6e2;
            transform: translateY(10px);
            opacity: 0;
            animation: fadeInUpItem 0.4s ease-out forwards;
        }

        .aboutG20:nth-child(1) { animation-delay: 1.4s; }
        .aboutG20:nth-child(2) { animation-delay: 1.5s; }
        .aboutG20:nth-child(3) { animation-delay: 1.6s; }

        @keyframes fadeInUpItem {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .aboutG20:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .aboutG21 {
            background: #CD5F37;
            color: white;
            font-weight: 800;
            font-size: 0.75rem;
            padding: 5px 10px;
            border-radius: 5px;
            min-width: 60px;
            text-align: center;
            margin-right: 12px;
            box-shadow: 0 2px 8px rgba(205, 95, 55, 0.3);
            transition: transform 0.3s ease;
        }

        .aboutG20:hover .aboutG21 {
            transform: scale(1.1) rotate(5deg);
        }

        .aboutG22 {
            color: #555;
            font-size: 0.8rem;
            font-weight: 600;
            flex: 1;
            transition: color 0.3s ease;
        }

        .aboutG20:hover .aboutG22 {
            color: #CD5F37;
        }

        .aboutG23 {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 0.5s ease-out 1.3s forwards;
        }

        .aboutG24 {
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            flex: 1;
            position: relative;
            overflow: hidden;
            text-align: center;
            transition: all 0.4s ease;
        }

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

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

        .aboutG25 {
            background: linear-gradient(135deg, #CD5F37, #b84c2a);
            color: white;
            box-shadow: 0 4px 15px rgba(205, 95, 55, 0.4);
        }

        .aboutG25:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(205, 95, 55, 0.6);
        }

        .aboutG26 {
            background: #ffffff;
            color: #CD5F37;
            border: 2px solid #CD5F37;
            box-shadow: 0 2px 8px rgba(205, 95, 55, 0.1);
        }

        .aboutG26:hover {
            background: #fdf6f3;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 20px rgba(205, 95, 55, 0.2);
        }

        .aboutG24 i {
            margin-left: 6px;
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .aboutG24:hover i {
            transform: translateX(5px) scale(1.1);
        }

        /* Professional Accents */
        .aboutG28 {
            position: absolute;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #CD5F37, #b84c2a);
            border-radius: 50%;
            filter: blur(20px);
            opacity: 0.1;
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }

        .aboutG29 {
            top: 8%;
            left: 8%;
            animation-delay: 0s;
        }

        .aboutG30 {
            bottom: 12%;
            right: 8%;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-10px) scale(1.05); }
        }

        /* Pulse Animation */
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .aboutG31 {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Desktop styles */
        @media (min-width: 768px) {
            body {
                padding: 20px;
            }
            
            .aboutG1 {
                max-width: 1200px;
                flex-direction: row;
                min-height: 500px;
                border-radius: 20px;
            }
            
            .aboutG2 {
                width: 45%;
                padding: 30px;
            }
            
            .aboutG13 {
                width: 55%;
                padding: 35px;
            }
            
            .aboutG16 {
                flex-direction: row;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            
            .aboutG23 {
                flex-direction: row;
                gap: 15px;
            }
            
            .aboutG4 {
                height: 220px;
                border-radius: 16px;
            }
            
            .aboutG8 {
                height: 140px;
                gap: 15px;
            }
            
            .aboutG11 {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
                margin-top: 15px;
            }
            
            .aboutG14 h1 {
                font-size: 2.2rem;
            }
            
            .aboutG14 .specialty {
                font-size: 1.2rem;
            }
            
            .aboutG14 .sub-specialty {
                font-size: 0.9rem;
            }
            
            .aboutG15 p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 380px) {
            .aboutG2, .aboutG13 {
                padding: 15px;
            }
            
            .aboutG4 {
                height: 150px;
            }
            
            .aboutG8 {
                height: 100px;
            }
            
            .aboutG11 {
                grid-template-columns: 1fr;
            }
            
            .aboutG14 h1 {
                font-size: 1.4rem;
            }
            
            .aboutG14 .specialty {
                font-size: 0.9rem;
            }
            
            .aboutG12 {
                padding: 8px 10px;
            }
            
            .aboutG18 {
                padding: 10px;
            }
        }







































           .ba1 {
            max-width: 1200px;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(205, 87, 55, 0.25);
            overflow: hidden;
            margin: 20px auto;
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
        }

        .ba2 {
            background: white;
            color: #333;
            padding: 50px 30px;
            text-align: center;
            position: relative;
            border-bottom: 3px solid #CD5737;
        }

        .ba2::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #CD5737, #E57A5C, #CD5737);
            background-size: 200% 100%;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .ba2 h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 800;
            background: linear-gradient(135deg, #CD5737, #E57A5C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }

        .ba2 h1::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #CD5737, transparent);
            border-radius: 2px;
        }

        .ba2 p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 20px auto 0;
            font-weight: 400;
            position: relative;
            padding: 0 20px;
        }

        .ba2 p::before,
        .ba2 p::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 40px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #CD5737);
        }

        .ba2 p::before {
            left: -30px;
        }

        .ba2 p::after {
            right: -30px;
            background: linear-gradient(90deg, #CD5737, transparent);
        }

        .ba3 {
            display: grid;
            grid-template-columns: 300px 1fr;
            min-height: 550px;
        }

        .ba4 {
            background: linear-gradient(180deg, #FFF8F6 0%, #FFEFEB 100%);
            padding: 30px 20px;
            border-right: 1px solid #FFE5DD;
        }

        .ba5 {
            text-align: center;
            color: #CD5737;
            margin-bottom: 25px;
            font-size: 1.3rem;
            font-weight: 600;
            position: relative;
        }

        .ba5::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #CD5737, #E57A5C);
            border-radius: 3px;
        }

        .ba6 {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .ba7 {
            background: white;
            padding: 18px 15px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 4px 15px rgba(205, 87, 55, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #FFE5DD;
            position: relative;
            overflow: hidden;
        }

        .ba7::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(205, 87, 55, 0.1), transparent);
            transition: left 0.5s ease;
        }

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

        .ba7:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(205, 87, 55, 0.2);
        }

        .ba7 i {
            font-size: 22px;
            color: #CD5737;
            width: 30px;
            text-align: center;
            flex-shrink: 0;
        }

        .ba7 span {
            font-size: 0.95rem;
            color: #333;
            font-weight: 500;
        }

        .ba8 {
            padding: 30px;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ba9 {
            position: relative;
            width: 100%;
            height: 420px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(205, 87, 55, 0.15);
            border: 1px solid #FFE5DD;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ba10 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ba10 img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background-color: #f8f9fa;
        }

        .ba11 {
            width: 50%;
        }

        .ba12 {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #CD5737, #E57A5C);
            transform: translateX(-50%);
            cursor: ew-resize;
            z-index: 10;
        }

        .ba13 {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 50px;
            height: 50px;
            background: white;
            border: 3px solid #CD5737;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(205, 87, 55, 0.3);
            cursor: grab;
            z-index: 11;
            touch-action: none;
        }

        .ba13:active {
            cursor: grabbing;
            transform: translate(-50%, -50%) scale(0.95);
        }

        .ba13:hover {
            background: #CD5737;
        }

        .ba13 i {
            color: #CD5737;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .ba13:hover i {
            color: white;
        }

        .ba14 {
            position: absolute;
            top: 20px;
            padding: 10px 20px;
            background: rgba(205, 87, 55, 0.9);
            color: white;
            font-weight: 600;
            border-radius: 20px;
            z-index: 5;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(205, 87, 55, 0.3);
        }

        .ba15 {
            left: 20px;
        }

        .ba16 {
            right: 20px;
        }

        .ba17 {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .ba18 {
            padding: 14px 24px;
            border: none;
            border-radius: 25px;
            background: white;
            color: #CD5737;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(205, 87, 55, 0.15);
            border: 2px solid #CD5737;
            font-weight: 500;
            min-width: 140px;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .ba18::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, #CD5737, #E57A5C);
            transition: width 0.3s ease;
            z-index: -1;
        }

        .ba18:hover::before {
            width: 100%;
        }

        .ba18:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(205, 87, 55, 0.3);
            color: white;
        }

        .ba19 {
            text-align: center;
            padding: 25px;
            background: linear-gradient(180deg, #FFF8F6 0%, #FFEFEB 100%);
            border-top: 1px solid #FFE5DD;
            color: #555;
            font-size: 0.95rem;
        }

        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
            100% { transform: translate(-50%, -50%) scale(1); }
        }

        .ba13 {
            animation: pulse 2s infinite;
        }

        /* Mobile First Responsive Design */
        @media (max-width: 1200px) {
            .ba1 {
                margin: 15px auto;
            }
            
            .ba2 {
                padding: 40px 25px;
            }
            
            .ba2 h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 1024px) {
            .ba3 {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            
            .ba4 {
                border-right: none;
                border-bottom: 1px solid #FFE5DD;
                padding: 25px 20px;
            }

            .ba6 {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px;
            }

            .ba7 {
                flex: 1;
                min-width: 180px;
                max-width: 200px;
                padding: 16px 12px;
            }
            
            .ba8 {
                padding: 25px;
            }
            
            .ba9 {
                height: 380px;
            }
        }

        @media (max-width: 900px) {
            .ba2 {
                padding: 35px 20px;
            }
            
            .ba2 h1 {
                font-size: 2rem;
                letter-spacing: 1.5px;
            }
            
            .ba2 p {
                font-size: 1.1rem;
            }
            
            .ba7 {
                min-width: 160px;
                max-width: 180px;
            }
        }

        @media (max-width: 768px) {
            .ba1 {
                border-radius: 16px;
                margin: 10px auto;
            }
            
            .ba2 {
                padding: 30px 20px;
            }
            
            .ba2 h1 {
                font-size: 1.8rem;
                margin-bottom: 12px;
            }
            
            .ba2 p {
                font-size: 1rem;
                margin-top: 15px;
            }
            
            .ba2 p::before,
            .ba2 p::after {
                width: 30px;
            }
            
            .ba2 p::before {
                left: -20px;
            }
            
            .ba2 p::after {
                right: -20px;
            }
            
            .ba9 {
                height: 350px;
            }
            
            .ba18 {
                padding: 12px 20px;
                font-size: 0.9rem;
                min-width: 130px;
            }
            
            .ba17 {
                gap: 12px;
                margin-top: 20px;
            }
        }

        @media (max-width: 640px) {
            .ba2 {
                padding: 25px 15px;
            }
            
            .ba2 h1 {
                font-size: 1.6rem;
                letter-spacing: 1px;
            }
            
            .ba2 p {
                font-size: 0.95rem;
                padding: 0 15px;
            }
            
            .ba2 p::before,
            .ba2 p::after {
                display: none;
            }
            
            .ba4 {
                padding: 20px 15px;
            }
            
            .ba5 {
                font-size: 1.2rem;
                margin-bottom: 20px;
            }
            
            .ba6 {
                flex-direction: column;
                gap: 10px;
            }
            
            .ba7 {
                min-width: 100%;
                max-width: 100%;
                padding: 16px 15px;
                gap: 15px;
            }
            
            .ba7 i {
                font-size: 20px;
                width: 25px;
            }
            
            .ba7 span {
                font-size: 0.9rem;
            }
            
            .ba8 {
                padding: 20px 15px;
            }
            
            .ba9 {
                height: 300px;
                border-radius: 12px;
            }
            
            .ba14 {
                top: 15px;
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            
            .ba15 {
                left: 15px;
            }
            
            .ba16 {
                right: 15px;
            }
            
            .ba13 {
                width: 45px;
                height: 45px;
            }
            
            .ba13 i {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .ba1 {
                border-radius: 14px;
                margin: 5px auto;
            }
            
            .ba2 {
                padding: 25px 15px;
            }
            
            .ba2 h1 {
                font-size: 1.4rem;
                margin-bottom: 10px;
            }
            
            .ba2 p {
                font-size: 0.9rem;
                padding: 0 10px;
            }
            
            .ba3 {
                min-height: auto;
            }
            
            .ba4 {
                padding: 20px 15px;
            }
            
            .ba5 {
                font-size: 1.1rem;
            }
            
            .ba6 {
                gap: 8px;
            }
            
            .ba7 {
                padding: 14px 12px;
                gap: 12px;
            }
            
            .ba7 i {
                font-size: 18px;
                width: 22px;
            }
            
            .ba7 span {
                font-size: 0.85rem;
            }
            
            .ba8 {
                padding: 20px 15px;
            }
            
            .ba9 {
                height: 280px;
                border-radius: 10px;
            }
            
            .ba10 img {
                object-fit: cover;
            }
            
            .ba14 {
                top: 12px;
                padding: 6px 12px;
                font-size: 0.85rem;
            }
            
            .ba15 {
                left: 12px;
            }
            
            .ba16 {
                right: 12px;
            }
            
            .ba13 {
                width: 40px;
                height: 40px;
            }
            
            .ba13 i {
                font-size: 14px;
            }
            
            .ba17 {
                flex-direction: column;
                align-items: center;
                gap: 10px;
                margin-top: 20px;
            }
            
            .ba18 {
                width: 100%;
                max-width: 220px;
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            
            .ba19 {
                padding: 20px 15px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 375px) {
            .ba2 {
                padding: 20px 12px;
            }
            
            .ba2 h1 {
                font-size: 1.3rem;
            }
            
            .ba2 p {
                font-size: 0.85rem;
            }
            
            .ba9 {
                height: 250px;
            }
            
            .ba7 {
                padding: 12px 10px;
            }
            
            .ba7 i {
                font-size: 16px;
            }
            
            .ba7 span {
                font-size: 0.8rem;
            }
            
            .ba18 {
                padding: 10px 18px;
                font-size: 0.85rem;
                min-width: auto;
            }
        }

        @media (max-width: 320px) {
            .ba1 {
                border-radius: 12px;
            }
            
            .ba2 h1 {
                font-size: 1.2rem;
            }
            
            .ba9 {
                height: 220px;
            }
            
            .ba14 {
                top: 10px;
                padding: 5px 10px;
                font-size: 0.8rem;
            }
            
            .ba13 {
                width: 35px;
                height: 35px;
            }
        }

        /* Better touch experience for mobile */
        @media (hover: none) {
            .ba7:hover {
                transform: none;
            }
            
            .ba18:hover {
                transform: none;
            }
            
            .ba13:hover {
                background: white;
            }
            
            .ba13:hover i {
                color: #CD5737;
            }
        }

        /* Prevent text selection on mobile */
        .ba13, .ba18 {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        /* Improved touch targets for mobile */
        @media (max-width: 768px) {
            .ba7, .ba18, .ba13 {
                min-height: 44px;
            }
            
            .ba13 {
                min-width: 44px;
            }
        }












































        
        .appo1 {
            min-height: 70vh;
            padding: 80px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: 
                radial-gradient(circle at 10% 20%, rgba(205, 95, 55, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(212, 165, 116, 0.03) 0%, transparent 40%);
        }

        .appo1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23CD5F37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            animation: appoFloat 30s linear infinite;
        }

        @keyframes appoFloat {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(50px, 50px) rotate(360deg); }
        }

        .appo2 {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, var(--copper) 0%, var(--copper-gold) 50%, var(--copper-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: appoSlide 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
            text-shadow: 0 4px 20px rgba(205, 95, 55, 0.15);
            letter-spacing: -0.5px;
        }

        .appo2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--copper-gold), var(--copper), transparent);
            border-radius: 4px;
            animation: appoLine 3s ease-in-out infinite;
            box-shadow: 0 2px 10px rgba(205, 95, 55, 0.2);
        }

        @keyframes appoLine {
            0%, 100% { width: 120px; opacity: 0.8; }
            50% { width: 180px; opacity: 1; }
        }

        @keyframes appoSlide {
            0% {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .appo3 {
            font-size: 1.15rem;
            color: var(--gray-medium);
            max-width: 500px;
            text-align: center;
            margin-bottom: 4rem;
            line-height: 1.6;
            animation: appoFade 1.2s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
            font-weight: 400;
            position: relative;
        }

        .appo3::before, .appo3::after {
            content: '✦';
            color: var(--copper-gold);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            opacity: 0.6;
            animation: appoSpin 4s linear infinite;
        }

        .appo3::before { left: -30px; }
        .appo3::after { right: -30px; }

        @keyframes appoSpin {
            0% { transform: translateY(-50%) rotate(0deg); }
            100% { transform: translateY(-50%) rotate(360deg); }
        }

        @keyframes appoFade {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .appo4 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            align-items: stretch;
        }

        .appo5 {
            background: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.1),
                0 5px 20px rgba(205, 95, 55, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(205, 95, 55, 0.12);
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            animation: appoCard 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
            
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            min-height: 420px;
            backdrop-filter: blur(10px);
        }

        .appo5::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
            transition: left 0.8s ease;
        }

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

        .appo5:nth-child(1) { animation-delay: 0.3s; }
        .appo5:nth-child(2) { animation-delay: 0.5s; }
        .appo5:nth-child(3) { animation-delay: 0.7s; }

        @keyframes appoCard {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.95) rotateX(10deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1) rotateX(0);
            }
        }

        .appo5:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 15px 35px rgba(205, 95, 55, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .appo6 {
            margin-bottom: 25px;
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
            flex-shrink: 0;
        }

        .appo7 {
            width: 90px;
            height: 90px;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
            box-shadow: 
                0 10px 30px rgba(205, 95, 55, 0.15),
                0 4px 15px rgba(0, 0, 0, 0.1),
                inset 0 2px 0 rgba(255, 255, 255, 0.9),
                inset 0 -2px 0 rgba(205, 95, 55, 0.1);
            border: 2px solid rgba(205, 95, 55, 0.15);
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            flex-shrink: 0;
        }

        .appo7::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(212, 165, 116, 0.2), transparent);
            transform: rotate(45deg);
            transition: all 0.8s ease;
        }

        .appo5:hover .appo7::before {
            transform: rotate(45deg) translateX(100%);
        }

        .appo5:hover .appo7 {
            transform: rotate(8deg) scale(1.12);
            box-shadow: 
                0 15px 40px rgba(205, 95, 55, 0.25),
                0 6px 20px rgba(0, 0, 0, 0.15),
                inset 0 2px 0 rgba(255, 255, 255, 0.95);
        }

        .appo7 i {
            font-size: 2.2rem;
            color: var(--copper);
            position: relative;
            z-index: 1;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            text-shadow: 0 2px 8px rgba(205, 95, 55, 0.2);
        }

        .appo5:hover .appo7 i {
            color: var(--copper-gold);
            transform: scale(1.2) rotate(-8deg);
        }

        .appo8 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gray-dark);
            margin-bottom: 15px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            width: 100%;
            flex-shrink: 0;
            letter-spacing: -0.3px;
        }

        .appo5:hover .appo8 {
            color: var(--copper);
            transform: translateY(-2px);
        }

        .appo9 {
            color: var(--gray-medium);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: center;
            transition: all 0.4s ease;
            width: 100%;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 10px;
            font-weight: 400;
        }

        .appo5:hover .appo9 {
            color: var(--gray-dark);
        }

        .appo10 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
            color: var(--white);
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            width: 100%;
            max-width: 200px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 
                0 8px 25px rgba(205, 95, 55, 0.35),
                0 4px 15px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
            letter-spacing: 0.3px;
        }

        .appo10:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 
                0 15px 35px rgba(205, 95, 55, 0.45),
                0 8px 25px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, var(--copper-light) 0%, var(--copper) 100%);
        }

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

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

        .appo10 i {
            font-size: 1.1rem;
            transition: all 0.4s ease;
        }

        .appo10:hover i {
            transform: translateX(3px) scale(1.1);
        }

        .appo11 {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--copper-gold), var(--copper), transparent);
            margin: 0 auto 20px;
            border-radius: 3px;
            opacity: 0.7;
            transition: all 0.5s ease;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(205, 95, 55, 0.2);
        }

        .appo5:hover .appo11 {
            width: 80px;
            opacity: 1;
            background: linear-gradient(90deg, transparent, var(--copper), var(--copper-gold), transparent);
        }

        .appo12 {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(205, 95, 55, 0.06) 0%, transparent 70%);
            z-index: 0;
            animation: appoOrbit 25s linear infinite;
            filter: blur(1px);
        }

        .appo12:nth-child(1) {
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .appo12:nth-child(2) {
            bottom: -80px;
            left: -80px;
            animation-delay: -12s;
        }

        @keyframes appoOrbit {
            0% {
                transform: rotate(0deg) translateX(25px) rotate(0deg) scale(1);
            }
            50% {
                transform: rotate(180deg) translateX(35px) rotate(-180deg) scale(1.1);
            }
            100% {
                transform: rotate(360deg) translateX(25px) rotate(-360deg) scale(1);
            }
        }

        /* Premium decorative elements */
        .appo13 {
            position: absolute;
            font-size: 1.5rem;
            color: rgba(205, 95, 55, 0.08);
            animation: appoFloatElement 20s linear infinite;
            z-index: 0;
        }

        .appo13:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
        .appo13:nth-child(2) { top: 25%; right: 10%; animation-delay: -5s; }
        .appo13:nth-child(3) { bottom: 20%; left: 12%; animation-delay: -10s; }
        .appo13:nth-child(4) { bottom: 30%; right: 8%; animation-delay: -15s; }

        @keyframes appoFloatElement {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg) scale(1);
                opacity: 0.1;
            }
            25% { 
                transform: translateY(-25px) rotate(90deg) scale(1.3);
                opacity: 0.2;
            }
            50% { 
                transform: translateY(0px) rotate(180deg) scale(1);
                opacity: 0.1;
            }
            75% { 
                transform: translateY(25px) rotate(270deg) scale(0.8);
                opacity: 0.05;
            }
        }

        /* Perfect responsive grid */
        @media (max-width: 1024px) {
            .appo4 {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                max-width: 700px;
            }
            
            .appo5 {
                min-height: 400px;
            }
        }

        @media (max-width: 768px) {
            .appo2 {
                font-size: 2.5rem;
            }
            
            .appo3 {
                font-size: 1.05rem;
                margin-bottom: 3rem;
            }
            
            .appo3::before, .appo3::after {
                display: none;
            }
            
            .appo4 {
                grid-template-columns: 1fr;
                gap: 25px;
                max-width: 450px;
            }
            
            .appo5 {
                min-height: 380px;
                padding: 30px 25px;
            }
            
            .appo7 {
                width: 85px;
                height: 85px;
            }
            
            .appo7 i {
                font-size: 2rem;
            }
            
            .appo8 {
                font-size: 1.3rem;
            }
            
            .appo9 {
                font-size: 0.9rem;
                margin-bottom: 25px;
            }
            
            .appo10 {
                padding: 0.8rem 1.8rem;
                font-size: 0.9rem;
                max-width: 180px;
            }
        }

        @media (max-width: 480px) {
            .appo1 {
                padding: 60px 15px;
            }
            
            .appo2 {
                font-size: 2rem;
            }
            
            .appo5 {
                padding: 25px 20px;
                min-height: 360px;
                border-radius: 18px;
            }
            
            .appo7 {
                width: 75px;
                height: 75px;
                border-radius: 18px;
            }
            
            .appo7 i {
                font-size: 1.8rem;
            }
            
            .appo8 {
                font-size: 1.2rem;
            }
            
            .appo9 {
                font-size: 0.85rem;
            }
        }

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   FOR ALL DEVICES (Mobile, Tablet, Desktop)
   ======================================== */

/* Extra Small Devices (Phones, 320px - 575px) */
@media (max-width: 575px) {
    /* Global */
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.3rem !important; }
    h4 { font-size: 1.1rem !important; }
    h5 { font-size: 1rem !important; }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Navbar */
    .navbar-brand img {
        max-height: 45px;
    }
    
    .navbar-nav {
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 15px;
        font-size: 15px;
    }
    
    /* Hero Section */
    .display-1,
    .display-2,
    .display-3,
    .display-4,
    .display-5 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-header {
        min-height: 400px !important;
    }
    
    .carousel-caption h1 {
        font-size: 1.8rem !important;
    }
    
    .carousel-caption p {
        font-size: 14px !important;
    }
    
    /* Service Cards */
    .service-item {
        margin-bottom: 20px;
    }
    
    .service-item h3 {
        font-size: 1.2rem !important;
    }
    
    .service-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .service-icon img {
        width: 30px !important;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    /* Contact Page Elements */
    .contact-card {
        margin-bottom: 15px;
    }
    
    .emergency-banner {
        padding: 20px 15px !important;
    }
    
    .emergency-banner h3 {
        font-size: 1.3rem !important;
    }
    
    .faq-item {
        margin-bottom: 12px;
    }
    
    .faq-question {
        font-size: 1rem !important;
        padding: 15px !important;
    }
    
    .credentials-section {
        padding: 20px 15px !important;
    }
    
    .stat-card {
        padding: 20px 15px !important;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 13px !important;
    }
    
    /* Gallery */
    .portfolio-item {
        margin-bottom: 15px;
    }
    
    /* Blog */
    .blog-item,
    .featured-blog {
        margin-bottom: 20px;
    }
    
    .featured-blog-title {
        font-size: 1.4rem !important;
    }
    
    .featured-blog-badge {
        font-size: 11px !important;
        padding: 5px 12px !important;
    }
    
    /* About Page */
    .aboutttt8 {
        font-size: 13px !important;
        padding: 10px 15px !important;
    }
    
    .aboutttt23 {
        font-size: 1.1rem !important;
    }
    
    /* Footer */
    .footer-item {
        margin-bottom: 30px;
    }
    
    .footer-item h4 {
        font-size: 1.2rem !important;
    }
    
    /* Maps */
    iframe {
        height: 300px !important;
    }
    
    /* Forms */
    .form-control {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .form-label {
        font-size: 14px;
    }
}

/* Small Devices (Phones Landscape, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.7rem !important; }
    h3 { font-size: 1.4rem !important; }
    
    .display-5 {
        font-size: 2.2rem !important;
    }
    
    .hero-header {
        min-height: 450px !important;
    }
    
    .service-icon {
        width: 55px !important;
        height: 55px !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .featured-blog-title {
        font-size: 1.6rem !important;
    }
}

/* Medium Devices (Tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    /* Navbar */
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    /* Hero */
    .hero-header {
        min-height: 500px !important;
    }
    
    .display-5 {
        font-size: 2.5rem !important;
    }
    
    /* Service Grid */
    .service-item {
        min-height: 400px;
    }
    
    /* Statistics */
    .stat-card {
        padding: 25px 20px !important;
    }
    
    .stat-number {
        font-size: 3rem !important;
    }
    
    /* Contact Cards */
    .contact-card {
        padding: 25px !important;
    }
    
    /* Blog */
    .featured-blog {
        flex-direction: column;
    }
    
    .featured-blog-image {
        width: 100% !important;
        max-height: 350px;
    }
    
    .featured-blog-title {
        font-size: 1.8rem !important;
    }
    
    /* Gallery Grid */
    .col-md-6 .portfolio-item {
        margin-bottom: 20px;
    }
    
    /* About Tabs */
    .aboutttt8 {
        padding: 12px 18px !important;
        font-size: 14px !important;
    }
}

/* Large Devices (Desktops, 992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 14px;
        font-size: 15px;
    }
    
    .service-item {
        min-height: 420px;
    }
    
    .stat-number {
        font-size: 3.5rem !important;
    }
    
    .featured-blog-title {
        font-size: 2rem !important;
    }
}

/* Extra Large Devices (Large Desktops, 1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .service-item {
        min-height: 450px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .service-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }
    
    .stat-number {
        font-size: 4rem !important;
    }
    
    .featured-blog {
        display: flex;
        align-items: stretch;
    }
    
    .featured-blog-image {
        width: 45%;
    }
    
    .featured-blog-content {
        width: 55%;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .btn,
    .nav-link,
    .faq-question,
    .aboutttt8 {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove hover effects on touch devices */
    .service-item:hover,
    .portfolio-item:hover,
    .blog-item:hover {
        transform: none;
    }
    
    /* Larger form inputs for mobile */
    .form-control {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Landscape Orientation (Phones) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-header {
        min-height: 350px !important;
    }
    
    .carousel-item {
        min-height: 350px !important;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .contact-card a,
    .emergency-banner,
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    a {
        text-decoration: underline;
        color: #000 !important;
    }
    
    .container {
        max-width: 100%;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .wow {
        animation-name: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .service-item,
    .contact-card,
    .stat-card {
        border: 2px solid #000;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles if needed */
    /* Currently not implemented, but structure is here for future */
}

/* Enhanced Testimonial Section Styles */
.testimonial-left > div:hover img,
.testimonial-right > div:hover img {
    transform: scale(1.05);
}

.testimonial-left > div:hover,
.testimonial-right > div:hover {
    box-shadow: 0 12px 30px rgba(205, 95, 55, 0.3) !important;
    border-color: #CD5F37 !important;
}

.testimonial-item {
    transition: all 0.4s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(205, 95, 55, 0.2) !important;
}

/* Responsive adjustments for testimonial section */
@media (max-width: 991px) {
    .testimonial-left,
    .testimonial-right {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .container-xxl > .container[style*=" dotted\] {
 padding: 30px 20px !important;
 border-width: 2px !important;
 }
 
 .testimonial-item {
 padding: 30px 20px !important;
 }
 
 .testimonial-item img {
 width: 80px !important;
 height: 80px !important;
 }
}
