/********** Template CSS **********/
:root {
    --primary: #009CFF;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}

.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 {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.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 .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

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

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

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

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

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

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.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 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    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: var(--secondary);
    margin-right: 10px;
}

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

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

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

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











































    .serJ1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .serJ2 {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }

        .serJ3 {
            width: 300px;
            height: 300px;
            background: #009CFF;
            top: -150px;
            right: -50px;
        }

        .serJ4 {
            width: 200px;
            height: 200px;
            background: #009CFF;
            bottom: -100px;
            left: -50px;
        }

        .serJ5 {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .serJ6 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.8rem;
            font-weight: 600;
            color: #1a3a5f;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            letter-spacing: -0.3px;
            line-height: 1.3;
        }

        .serJ6::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: #009CFF;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .serJ7 {
            font-family: 'Open Sans', sans-serif;
            font-size: 1.15rem;
            font-weight: 400;
            color: #5a6c7d;
            max-width: 800px;
            margin: 35px auto 0;
            line-height: 1.7;
            letter-spacing: 0.1px;
        }

        .serJ8 {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .serJ9 {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 0;
            flex: 1;
            max-width: 32%;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .serJ9:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .serJ10 {
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(0, 156, 255, 0.1);
            z-index: 0;
        }

        .serJ10:nth-child(1) { top: 10%; left: 5%; }
        .serJ10:nth-child(2) { top: 15%; right: 10%; }
        .serJ10:nth-child(3) { bottom: 20%; left: 8%; }
        .serJ10:nth-child(4) { bottom: 10%; right: 5%; }
        .serJ10:nth-child(5) { top: 40%; left: 3%; }
        .serJ10:nth-child(6) { top: 30%; right: 3%; }
        .serJ10:nth-child(7) { bottom: 40%; right: 8%; }
        .serJ10:nth-child(8) { top: 60%; left: 10%; }
        .serJ10:nth-child(9) { bottom: 30%; right: 15%; }
        .serJ10:nth-child(10) { top: 20%; left: 15%; }

        .serJ11 {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .serJ12 {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

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

        .serJ9:hover .serJ13 {
            transform: scale(1.05);
        }

        .serJ14 {
            font-size: 2.2rem;
            color: #009CFF;
            text-align: center;
            margin: 20px 0 12px;
            position: relative;
            z-index: 1;
        }

        .serJ15 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.35rem;
            font-weight: 500;
            color: #1a3a5f;
            text-align: center;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
            padding: 0 20px;
            letter-spacing: 0.2px;
            line-height: 1.4;
        }

        .serJ16 {
            font-family: 'Open Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 400;
            color: #5a6c7d;
            text-align: center;
            margin-bottom: 25px;
            line-height: 1.6;
            position: relative;
            z-index: 1;
            padding: 0 25px;
            letter-spacing: 0.1px;
        }

        .serJ17 {
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .serJ17 i {
            background: #009CFF;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 156, 255, 0.25);
        }

        .serJ9:hover .serJ17 i {
            transform: translateX(6px);
            box-shadow: 0 6px 16px rgba(0, 156, 255, 0.35);
        }

        .serJ18 {
            background: rgba(0, 156, 255, 0.1);
        }

        @media (max-width: 992px) {
            .serJ8 {
                gap: 25px;
            }
            
            .serJ9 {
                max-width: 340px;
            }
        }

        @media (max-width: 768px) {
            .serJ8 {
                flex-direction: column;
                align-items: center;
            }
            
            .serJ9 {
                max-width: 450px;
                width: 100%;
            }
            
            .serJ6 {
                font-size: 2.3rem;
            }
            
            .serJ7 {
                font-size: 1.05rem;
            }
        }

        @media (max-width: 480px) {
            .serJ1 {
                padding: 40px 15px;
            }
            
            .serJ6 {
                font-size: 2rem;
            }
            
            .serJ7 {
                font-size: 0.95rem;
            }
            
            .serJ9 {
                max-width: 100%;
            }
            
            .serJ11 {
                height: 180px;
            }
            
            .serJ15 {
                font-size: 1.25rem;
            }
            
            .serJ16 {
                font-size: 0.9rem;
            }
        }













































































        :root {
            --vid1: #009CFF;
            --vid2: #4DB8FF;
            --vid3: #2C3E50;
            --vid4: #0066CC;
            --vid5: linear-gradient(135deg, #f5fbff 0%, #e6f4ff 100%);
        }
        
        .vid1 {
            font-family: 'Poppins', sans-serif;
            background: var(--vid5);
            color: var(--vid3);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .vid2 {
            min-height: 100vh;
            padding: 40px 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .vid3 {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .vid4 {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: vid5 1s ease 0.5s forwards;
        }
        
        .vid6 {
            display: inline-block;
            background: linear-gradient(135deg, var(--vid1) 0%, var(--vid2) 100%);
            color: #FFFFFF;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 10px 25px;
            border-radius: 50px;
            margin-bottom: 20px;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(0, 156, 255, 0.4);
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            transform: translateY(0);
            transition: all 0.4s ease;
            animation: vid7 3s ease-in-out infinite alternate;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .vid6::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: vid8 3s infinite;
        }
        
        .vid9 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--vid3) 0%, var(--vid1) 50%, var(--vid4) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            position: relative;
            opacity: 0;
            animation: vid5 1s ease 0.7s forwards;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            padding: 0 10px;
        }
        
        .vid10 {
            position: absolute;
            width: 80px;
            height: 80px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23009CFF' d='M50,10 L60,40 L90,40 L65,60 L75,90 L50,70 L25,90 L35,60 L10,40 L40,40 Z'/%3E%3C/svg%3E") no-repeat center;
            opacity: 0.1;
            animation: vid11 20s linear infinite;
        }
        
        .vid12 {
            top: -20px;
            left: 5%;
        }
        
        .vid13 {
            bottom: -15px;
            right: 8%;
        }
        
        .vid14 {
            font-size: 1rem;
            color: #6C757D;
            max-width: 100%;
            margin: 20px auto 0;
            font-weight: 400;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
            animation: vid5 1s ease 0.9s forwards;
            position: relative;
            padding: 0 15px;
        }
        
        .vid15 {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 50px;
        }
        
        .vid16 {
            width: 100%;
            max-width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 156, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            background: #000;
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
            animation: vid17 1s ease 1s forwards, vid18 8s ease-in-out infinite;
            border: 1px solid rgba(0, 156, 255, 0.3);
        }
        
        .vid16::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--vid1), var(--vid2), var(--vid4), var(--vid1));
            z-index: -1;
            border-radius: 22px;
            animation: vid19 3s ease-in-out infinite alternate;
        }
        
        .vid20 {
            width: 100%;
            height: 300px;
            background: #1a1a1a;
            position: relative;
            overflow: hidden;
        }
        
        #vid21 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
            filter: brightness(0.9);
        }
        
        .vid20:hover #vid21 {
            transform: scale(1.03);
            filter: brightness(1);
        }
        
        .vid22 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 156, 255, 0.25) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-align: center;
            padding: 20px;
            opacity: 1;
            transition: all 0.5s ease;
            backdrop-filter: blur(2px);
        }
        
        .vid22.vid23 {
            opacity: 0;
            pointer-events: none;
        }
        
        .vid24 {
            position: relative;
            margin-bottom: 25px;
        }
        
        .vid25 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            border: 2px solid rgba(0, 156, 255, 0.3);
            border-radius: 50%;
            animation: vid26 3s ease-out infinite;
        }
        
        .vid25:nth-child(2) {
            width: 130px;
            height: 130px;
            animation-delay: 0.5s;
        }
        
        .vid25:nth-child(3) {
            width: 160px;
            height: 160px;
            animation-delay: 1s;
        }
        
        .vid27 {
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, var(--vid1) 0%, var(--vid4) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.5),
                inset 0 2px 0 rgba(255, 255, 255, 0.3),
                0 0 0 6px rgba(0, 156, 255, 0.3);
            position: relative;
            overflow: hidden;
            animation: vid28 3s ease-in-out infinite, vid11 10s linear infinite;
            z-index: 10;
        }
        
        .vid27::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: vid11 3s linear infinite;
        }
        
        .vid27:hover {
            transform: scale(1.15) rotate(15deg);
            box-shadow: 
                0 20px 45px rgba(0, 0, 0, 0.6),
                inset 0 2px 0 rgba(255, 255, 255, 0.3),
                0 0 0 10px rgba(0, 156, 255, 0.4);
            animation-play-state: paused;
        }
        
        .vid27 i {
            font-size: 2rem;
            color: white;
            margin-left: 5px;
            transition: transform 0.3s ease;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
        }
        
        .vid27:hover i {
            transform: scale(1.2);
        }
        
        .vid29 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #fff;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: translateY(20px);
            animation: vid5 0.8s ease 1.3s forwards;
            background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            padding: 0 10px;
        }
        
        .vid29::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--vid1), transparent);
            border-radius: 2px;
        }
        
        .vid30 {
            font-size: 0.9rem;
            color: #e8e8e8;
            max-width: 100%;
            line-height: 1.5;
            opacity: 0;
            transform: translateY(20px);
            animation: vid5 0.8s ease 1.5s forwards;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
            padding: 0 10px;
        }
        
        .vid31 {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(0, 156, 255, 0.4);
            opacity: 0;
            animation: vid32 0.8s ease 1.7s forwards;
            position: relative;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .vid33 {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .vid34 {
            background: transparent;
            border: none;
            color: var(--vid1);
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .vid34::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 156, 255, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.3s ease;
        }
        
        .vid34:hover::before {
            transform: scale(1);
        }
        
        .vid34:hover {
            color: var(--vid2);
            transform: scale(1.15);
        }
        
        .vid35 {
            flex-grow: 1;
            height: 6px;
            background: #444;
            border-radius: 3px;
            position: relative;
            cursor: pointer;
            margin: 0 15px;
            overflow: hidden;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
            min-width: 100px;
        }
        
        .vid35::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            animation: vid8 2s infinite;
        }
        
        .vid36 {
            position: absolute;
            height: 100%;
            background: linear-gradient(135deg, var(--vid1) 0%, var(--vid2) 100%);
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s linear;
            box-shadow: 0 0 10px rgba(0, 156, 255, 0.6);
        }
        
        .vid37 {
            color: var(--vid1);
            font-size: 0.9rem;
            font-weight: 600;
            min-width: 100px;
            text-align: center;
            font-family: 'Poppins', sans-serif;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .vid38 {
            display: flex;
            flex-direction: column;
            gap: 30px;
            width: 100%;
            max-width: 100%;
        }
        
        .vid39 {
            text-align: left;
            padding: 30px 25px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 156, 255, 0.2);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: vid40 1s ease 1.9s forwards;
        }
        
        .vid39::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(135deg, var(--vid1) 0%, var(--vid2) 100%);
        }
        
        .vid39::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(0, 156, 255, 0.05), transparent);
            animation: vid11 20s linear infinite;
        }
        
        .vid41 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--vid3);
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .vid42 {
            color: #6C757D;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .vid43 {
            display: flex;
            flex-direction: column;
            gap: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: vid44 1s ease 2.1s forwards;
        }
        
        .vid45 {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-left: 4px solid var(--vid1);
            position: relative;
            overflow: hidden;
        }
        
        .vid45::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 156, 255, 0.03) 0%, rgba(77, 184, 255, 0.03) 100%);
            z-index: 0;
        }
        
        .vid45:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 156, 255, 0.15);
        }
        
        .vid46 {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--vid1) 0%, var(--vid2) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 8px 20px rgba(0, 156, 255, 0.4);
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
            flex-shrink: 0;
            margin-top: 5px;
        }
        
        .vid45:hover .vid46 {
            transform: scale(1.1) rotate(8deg);
            box-shadow: 0 12px 30px rgba(0, 156, 255, 0.6);
        }
        
        .vid47 {
            position: relative;
            z-index: 1;
            flex: 1;
        }
        
        .vid48 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--vid3);
            margin-bottom: 6px;
        }
        
        .vid49 {
            color: #6C757D;
            font-size: 0.85rem;
            line-height: 1.5;
        }
        
        .vid50 {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            pointer-events: none;
        }
        
        .vid51 {
            position: absolute;
            opacity: 0.1;
            animation: vid18 15s infinite ease-in-out;
        }
        
        .vid52 {
            width: 80px;
            height: 80px;
            background: var(--vid1);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .vid53 {
            width: 60px;
            height: 60px;
            background: var(--vid4);
            border-radius: 50%;
            bottom: 15%;
            right: 8%;
            animation-delay: 5s;
        }
        
        .vid54 {
            width: 70px;
            height: 70px;
            background: var(--vid2);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            top: 60%;
            left: 85%;
            animation-delay: 10s;
        }
        
        .vid55 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--vid1) 0%, var(--vid2) 50%, var(--vid1) 100%);
            opacity: 0.03;
            z-index: 0;
        }
        
        .vid56 {
            position: absolute;
            border-radius: 50%;
            background: var(--vid1);
            opacity: 0.05;
            filter: blur(40px);
            animation: vid57 15s ease-in-out infinite;
        }
        
        .vid58 {
            width: 200px;
            height: 200px;
            top: -50px;
            left: -50px;
            animation-delay: 0s;
        }
        
        .vid59 {
            width: 150px;
            height: 150px;
            bottom: -30px;
            right: -30px;
            animation-delay: 5s;
        }
        
        .vid60 {
            width: 120px;
            height: 120px;
            top: 40%;
            left: 70%;
            animation-delay: 10s;
        }
        
        .vid61 {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .vid62 {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--vid1);
            border-radius: 50%;
            animation: vid63 20s infinite linear;
        }
        
        .vid64 {
            position: absolute;
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
            animation: vid65 4s infinite;
            opacity: 0;
        }
        
        .vid66 {
            position: absolute;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(0, 156, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        @keyframes vid5 {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes vid32 {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes vid17 {
            from {
                opacity: 0;
                transform: translateY(50px) perspective(1000px) rotateX(0deg) rotateY(0deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) perspective(1000px) rotateX(0deg) rotateY(0deg);
            }
        }
        
        @keyframes vid40 {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes vid44 {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes vid18 {
            0%, 100% {
                transform: translateY(0) perspective(1000px) rotateX(0deg) rotateY(0deg);
            }
            50% {
                transform: translateY(-10px) perspective(1000px) rotateX(0deg) rotateY(0deg);
            }
        }
        
        @keyframes vid63 {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        @keyframes vid8 {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }
        
        @keyframes vid7 {
            0% {
                box-shadow: 0 8px 25px rgba(0, 156, 255, 0.4);
                transform: scale(1);
            }
            100% {
                box-shadow: 0 12px 35px rgba(0, 156, 255, 0.6);
                transform: scale(1.02);
            }
        }
        
        @keyframes vid28 {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
            }
        }
        
        @keyframes vid11 {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        @keyframes vid19 {
            0% {
                opacity: 0.5;
            }
            100% {
                opacity: 1;
            }
        }
        
        @keyframes vid26 {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0.8;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0;
            }
        }
        
        @keyframes vid57 {
            0%, 100% {
                border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
            }
            25% {
                border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
            }
            50% {
                border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
            }
            75% {
                border-radius: 30% 70% 70% 30% / 30% 50% 50% 70%;
            }
        }
        
        @keyframes vid65 {
            0%, 100% {
                opacity: 0;
                transform: scale(0);
            }
            50% {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* Desktop Styles */
        @media (min-width: 768px) {
            .vid2 {
                padding: 80px 20px;
            }
            
            .vid4 {
                margin-bottom: 80px;
            }
            
            .vid6 {
                font-size: 0.85rem;
                padding: 12px 35px;
            }
            
            .vid9 {
                font-size: 4rem;
                margin-bottom: 25px;
            }
            
            .vid14 {
                font-size: 1.3rem;
                margin: 30px auto 0;
                max-width: 700px;
            }
            
            .vid15 {
                gap: 80px;
            }
            
            .vid16 {
                max-width: 1100px;
                border-radius: 30px;
            }
            
            .vid20 {
                height: 600px;
            }
            
            .vid24 {
                margin-bottom: 40px;
            }
            
            .vid25 {
                width: 160px;
                height: 160px;
            }
            
            .vid25:nth-child(2) {
                width: 200px;
                height: 200px;
            }
            
            .vid25:nth-child(3) {
                width: 240px;
                height: 240px;
            }
            
            .vid27 {
                width: 120px;
                height: 120px;
                margin-bottom: 35px;
            }
            
            .vid27 i {
                font-size: 3rem;
            }
            
            .vid29 {
                font-size: 2.8rem;
                margin-bottom: 20px;
            }
            
            .vid30 {
                font-size: 1.2rem;
                max-width: 650px;
            }
            
            .vid31 {
                padding: 25px 30px;
            }
            
            .vid33 {
                gap: 25px;
            }
            
            .vid34 {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
            
            .vid35 {
                height: 10px;
                margin: 0 25px;
            }
            
            .vid37 {
                font-size: 1.1rem;
                min-width: 140px;
            }
            
            .vid38 {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                max-width: 1200px;
            }
            
            .vid39 {
                padding: 50px 40px;
                border-radius: 25px;
                transform: translateX(-30px);
                animation: vid40 1s ease 1.9s forwards;
            }
            
            .vid41 {
                font-size: 2.2rem;
                margin-bottom: 25px;
            }
            
            .vid42 {
                font-size: 1.1rem;
                line-height: 1.8;
                margin-bottom: 30px;
            }
            
            .vid43 {
                transform: translateX(30px);
                animation: vid44 1s ease 2.1s forwards;
            }
            
            .vid45 {
                padding: 30px;
                border-radius: 20px;
                align-items: center;
                gap: 20px;
            }
            
            .vid46 {
                width: 70px;
                height: 70px;
                border-radius: 18px;
                font-size: 1.6rem;
                margin-top: 0;
            }
            
            .vid48 {
                font-size: 1.3rem;
                margin-bottom: 8px;
            }
            
            .vid49 {
                font-size: 0.95rem;
                line-height: 1.6;
            }
        }
        
        @media (min-width: 1024px) {
            .vid10 {
                width: 150px;
                height: 150px;
            }
            
            .vid12 {
                top: -30px;
                left: 10%;
            }
            
            .vid13 {
                bottom: -20px;
                right: 15%;
            }
            
            .vid56 {
                width: 400px;
                height: 400px;
            }
            
            .vid58 {
                width: 400px;
                height: 400px;
                top: -100px;
                left: -100px;
            }
            
            .vid59 {
                width: 300px;
                height: 300px;
                bottom: -50px;
                right: -50px;
            }
            
            .vid60 {
                width: 250px;
                height: 250px;
            }
        }








































        .AppinM1 {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Subtle background animation */
.AppinM1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 156, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 156, 255, 0.02) 0%, transparent 50%);
  z-index: 0;
  animation: bgFloat 15s ease-in-out infinite;
}

@keyframes bgFloat {
  0%, 100% {
    transform: translate(0px, 0px);
  }
  33% {
    transform: translate(10px, -10px);
  }
  66% {
    transform: translate(-5px, 5px);
  }
}

.AppinM3 {
  font-size: 42px;
  color: #2c2c2c;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #009CFF, #0077cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
  animation: titleSlide 1s ease-out, titleGlow 3s ease-in-out infinite 1s;
}

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

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 0 0 0px rgba(0, 156, 255, 0);
  }
  50% {
    text-shadow: 0 0 15px rgba(0, 156, 255, 0.2);
  }
}

.AppinM3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #009CFF, #00b7ff);
  border-radius: 2px;
  animation: lineExpand 1s ease-out 0.5s forwards, linePulse 2s ease-in-out infinite 1.5s;
}

@keyframes lineExpand {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

@keyframes linePulse {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.1);
  }
}

.AppinM4 {
  color: #666;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.3s both, textFloat 4s ease-in-out infinite 1s;
}

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

@keyframes textFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.AppinM5 {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  flex-wrap: nowrap;
}

.AppinM6 {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 
    0 5px 20px rgba(0,0,0,0.08),
    0 2px 10px rgba(0, 156, 255, 0.05);
  border: 1px solid rgba(0, 156, 255, 0.1);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  animation: cardSlide 0.8s ease-out both;
  transition: all 0.3s ease;
}

.AppinM6:nth-child(1) { animation-delay: 0.6s; }
.AppinM6:nth-child(2) { animation-delay: 0.8s; }
.AppinM6:nth-child(3) { animation-delay: 1s; }

@keyframes cardSlide {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Card hover animation */
.AppinM6:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.12),
    0 4px 15px rgba(0, 156, 255, 0.1);
}

.AppinM6::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #009CFF, #00b7ff, #009CFF);
  background-size: 200% 100%;
  animation: borderFlow 3s linear infinite;
}

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

.AppinM7 {
  margin-bottom: 25px;
  position: relative;
}

.AppinM8 {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 156, 255, 0.08);
  box-shadow: 
    0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  animation: iconFloat 4s ease-in-out infinite, iconRotate 8s ease-in-out infinite;
}

.AppinM6:nth-child(1) .AppinM8 { animation-delay: 0s, 0s; }
.AppinM6:nth-child(2) .AppinM8 { animation-delay: 0.2s, 1s; }
.AppinM6:nth-child(3) .AppinM8 { animation-delay: 0.4s, 2s; }

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes iconRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-1deg);
  }
}

.AppinM8 i {
  font-size: 28px;
  color: #009CFF;
  animation: iconPulse 3s ease-in-out infinite, iconColorShift 6s ease-in-out infinite;
}

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

@keyframes iconColorShift {
  0%, 100% {
    color: #009CFF;
  }
  50% {
    color: #00b7ff;
  }
}

.AppinM9 {
  font-size: 20px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  animation: textGlow 4s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 0px rgba(0, 156, 255, 0);
  }
  50% {
    text-shadow: 0 0 8px rgba(0, 156, 255, 0.1);
  }
}

.AppinM9::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #009CFF;
  border-radius: 1px;
  animation: underlineExpand 2s ease-in-out infinite;
}

@keyframes underlineExpand {
  0%, 100% {
    width: 30px;
  }
  50% {
    width: 40px;
  }
}

.AppinM10 {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 70px;
  position: relative;
  padding: 0 5px;
  animation: fadeIn 2s ease-in-out;
}

/* Enhanced Button Animations */
.AppinM11 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #009CFF, #0077cc);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  max-width: 180px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 156, 255, 0.3);
  animation: buttonPulse 3s ease-in-out infinite, buttonFloat 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.AppinM6:nth-child(1) .AppinM11 { animation-delay: 0s, 0s; }
.AppinM6:nth-child(2) .AppinM11 { animation-delay: 0.1s, 0.2s; }
.AppinM6:nth-child(3) .AppinM11 { animation-delay: 0.2s, 0.4s; }

@keyframes buttonPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 156, 255, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 156, 255, 0.4);
  }
}

@keyframes buttonFloat {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-2px);
  }
  75% {
    transform: translateY(1px);
  }
}

.AppinM11::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: buttonShimmer 4s ease-in-out infinite;
}

@keyframes buttonShimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.AppinM11 i {
  font-size: 14px;
  animation: iconSwing 2s ease-in-out infinite, iconBounce 3s ease-in-out infinite;
}

@keyframes iconSwing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(8deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

/* Animated Divider */
.divider {
  width: 40px;
  height: 1px;
  background: rgba(0, 156, 255, 0.3);
  margin: 0 auto 15px;
  border-radius: 1px;
  animation: dividerPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%, 100% {
    opacity: 0.3;
    width: 40px;
  }
  50% {
    opacity: 0.6;
    width: 50px;
  }
}

/* Card background animation */
.AppinM6::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 156, 255, 0.02), transparent);
  animation: cardShimmer 8s ease-in-out infinite;
  z-index: -1;
}

@keyframes cardShimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* NEW ANIMATIONS FOR ICONS AND BUTTONS */

/* WhatsApp icon specific animation */
.AppinM6:nth-child(1) .AppinM8 i {
  animation: whatsappPulse 2s ease-in-out infinite, iconColorShift 6s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Phone icon specific animation */
.AppinM6:nth-child(2) .AppinM8 i {
  animation: phoneRing 3s ease-in-out infinite, iconColorShift 6s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: rotate(-5deg);
  }
  20%, 40%, 60%, 80% {
    transform: rotate(5deg);
  }
}

/* Email icon specific animation */
.AppinM6:nth-child(3) .AppinM8 i {
  animation: emailFly 4s ease-in-out infinite, iconColorShift 6s ease-in-out infinite;
}

@keyframes emailFly {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(-2deg);
  }
  75% {
    transform: translateY(2px) rotate(2deg);
  }
}

/* Enhanced button hover effects */
.AppinM11:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 156, 255, 0.5);
  animation-play-state: paused;
}

.AppinM11:hover i {
  animation: iconJump 0.5s ease-in-out;
}

@keyframes iconJump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Icon container hover effects */
.AppinM8:hover {
  animation-play-state: paused;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 156, 255, 0.2);
}

.AppinM8:hover i {
  animation-play-state: paused;
  transform: scale(1.2);
}

/* Enhanced ripple effect for buttons */
.AppinM11 {
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .AppinM5 {
    gap: 25px;
  }
  
  .AppinM6 {
    min-width: 280px;
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .AppinM1 {
    padding: 60px 20px;
  }
  
  .AppinM3 {
    font-size: 32px;
  }
  
  .AppinM4 {
    font-size: 15px;
    margin-bottom: 50px;
  }
  
  .AppinM5 {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  
  .AppinM6 {
    min-width: 320px;
    max-width: 400px;
    width: 100%;
  }
  
  .AppinM8 {
    width: 70px;
    height: 70px;
  }
  
  .AppinM8 i {
    font-size: 24px;
  }
  
  .AppinM9 {
    font-size: 18px;
  }
  
  .AppinM10 {
    font-size: 13px;
    min-height: 60px;
  }
  
  .AppinM11 {
    padding: 10px 24px;
    font-size: 13px;
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .AppinM3 {
    font-size: 28px;
  }
  
  .AppinM6 {
    padding: 30px 20px;
    min-width: 280px;
  }
}

























































     :root {
            --primary: #2563eb;
            --primary-light: #dbeafe;
            --secondary: #0ea5e9;
            --dark: #1e293b;
            --gray: #64748b;
            --light-gray: #f8fafc;
            --white: #ffffff;
            --accent: #06b6d4;
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            --border-radius: 16px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .aboPP1 {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .aboPP2, .aboPP3 {
            height: 100%;
            width: 100%;
        }

        .aboPP2 {
            scroll-behavior: smooth;
        }

        .aboPP3 {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            color: var(--dark);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .aboPP4 {
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .aboPP5 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.03;
            background: 
                radial-gradient(circle at 20% 80%, var(--primary) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--secondary) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, var(--accent) 0%, transparent 50%);
        }

        .aboPP6 {
            width: 100%;
            max-width: 1200px;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            position: relative;
            transition: var(--transition);
        }

        .aboPP6:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .aboPP7 {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: clamp(40px, 5vw, 60px) clamp(20px, 4vw, 40px);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .aboPP7::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,100 1000,50 1000,0 0,0"/></svg>');
            background-size: cover;
        }

        .aboPP8 {
            width: clamp(80px, 15vw, 120px);
            height: clamp(80px, 15vw, 120px);
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto clamp(20px, 3vw, 30px);
            font-size: clamp(2rem, 4vw, 3rem);
            color: white;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .aboPP9 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: clamp(8px, 1.5vw, 15px);
            position: relative;
            z-index: 2;
            color: white;
            line-height: 1.2;
        }

        .aboPP10 {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            font-weight: 600;
            opacity: 0.9;
            margin-bottom: clamp(5px, 1vw, 10px);
            position: relative;
            z-index: 2;
            color: white;
        }

        .aboPP11 {
            font-size: clamp(1rem, 1.8vw, 1.3rem);
            opacity: 0.8;
            margin-bottom: clamp(20px, 3vw, 30px);
            position: relative;
            z-index: 2;
            color: white;
        }

        .aboPP12 {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.2);
            padding: clamp(10px, 2vw, 15px) clamp(20px, 3vw, 30px);
            border-radius: 50px;
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            font-weight: 600;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 2;
            color: white;
            transition: var(--transition);
        }

        .aboPP12:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .aboPP13 {
            padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
        }

        .aboPP14 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: clamp(25px, 4vw, 50px);
            margin-bottom: clamp(30px, 5vw, 50px);
        }

        .aboPP15 {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: clamp(25px, 4vw, 40px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            border: 1px solid #f1f5f9;
        }

        .aboPP15::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }

        .aboPP15:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .aboPP15 h3 {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            margin-bottom: clamp(20px, 3vw, 30px);
            color: var(--dark);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: clamp(10px, 2vw, 15px);
        }

        .aboPP15 h3 i {
            color: var(--primary);
            font-size: clamp(1.5rem, 2.5vw, 2rem);
        }

        .aboPP16 {
            display: flex;
            align-items: flex-start;
            margin-bottom: clamp(15px, 2.5vw, 25px);
            padding-bottom: clamp(15px, 2.5vw, 25px);
            border-bottom: 1px solid #f1f5f9;
        }

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

        .aboPP17 {
            width: clamp(40px, 6vw, 50px);
            height: clamp(40px, 6vw, 50px);
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: clamp(12px, 2vw, 20px);
            flex-shrink: 0;
            color: var(--primary);
            font-size: clamp(1rem, 1.8vw, 1.3rem);
            transition: var(--transition);
        }

        .aboPP16:hover .aboPP17 {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .aboPP18 h4 {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: clamp(5px, 1vw, 8px);
            color: var(--dark);
            font-weight: 600;
        }

        .aboPP18 p {
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            color: var(--gray);
            line-height: 1.6;
        }

        .aboPP19 {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(8px, 1.5vw, 15px);
            margin-top: clamp(15px, 2.5vw, 20px);
        }

        .aboPP20 {
            background: var(--primary-light);
            padding: clamp(8px, 1.5vw, 12px) clamp(15px, 2.5vw, 20px);
            border-radius: 50px;
            font-size: clamp(0.8rem, 1.3vw, 1rem);
            font-weight: 500;
            color: var(--primary);
            transition: var(--transition);
            border: 1px solid #dbeafe;
        }

        .aboPP20:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
        }

        .aboPP21 {
            margin-bottom: clamp(30px, 5vw, 50px);
        }

        .aboPP22 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            margin-bottom: clamp(20px, 3vw, 30px);
            color: var(--dark);
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: clamp(10px, 2vw, 15px);
        }

        .aboPP22 i {
            color: var(--primary);
            font-size: clamp(1.8rem, 3vw, 2.5rem);
        }

        .aboPP23 {
            margin-bottom: clamp(15px, 2.5vw, 25px);
            color: var(--gray);
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            line-height: 1.7;
            background: var(--light-gray);
            padding: clamp(20px, 3vw, 30px);
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }

        .aboPP23:hover {
            background: #f1f5f9;
            transform: translateY(-3px);
        }

        .aboPP24 {
            position: relative;
            margin-top: clamp(25px, 4vw, 40px);
        }

        .aboPP24::before {
            content: '';
            position: absolute;
            left: clamp(15px, 3vw, 25px);
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            border-radius: 3px;
        }

        .aboPP25 {
            display: flex;
            margin-bottom: clamp(20px, 3vw, 35px);
            align-items: flex-start;
            position: relative;
        }

        .aboPP26 {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            padding: clamp(10px, 2vw, 15px) clamp(18px, 3vw, 25px);
            border-radius: 50px;
            font-weight: 700;
            min-width: clamp(100px, 15vw, 140px);
            text-align: center;
            flex-shrink: 0;
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
            margin-right: clamp(20px, 3vw, 35px);
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        .aboPP26:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
        }

        .aboPP27 {
            background: var(--white);
            padding: clamp(20px, 3vw, 30px);
            border-radius: var(--border-radius);
            flex-grow: 1;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid #f1f5f9;
        }

        .aboPP27:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .aboPP27 h4 {
            font-size: clamp(1.2rem, 2.2vw, 1.5rem);
            margin-bottom: clamp(8px, 1.5vw, 12px);
            color: var(--dark);
            font-weight: 700;
        }

        .aboPP27 p {
            color: var(--gray);
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            line-height: 1.6;
        }

        .aboPP28 {
            display: flex;
            gap: clamp(12px, 2vw, 20px);
            justify-content: center;
            margin-top: clamp(30px, 5vw, 50px);
            flex-wrap: wrap;
        }

        .aboPP29 {
            display: inline-flex;
            align-items: center;
            gap: clamp(8px, 1.5vw, 12px);
            padding: clamp(12px, 2vw, 18px) clamp(25px, 3vw, 35px);
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .aboPP29::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: 0.5s;
        }

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

        .aboPP30 {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
        }

        .aboPP31 {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
        }

        .aboPP29:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .aboPP14 {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .aboPP25 {
                flex-direction: column;
            }
            
            .aboPP26 {
                margin-right: 0;
                margin-bottom: 15px;
                align-self: flex-start;
            }
            
            .aboPP24::before {
                left: 25px;
            }
            
            .aboPP28 {
                flex-direction: column;
                align-items: center;
            }
            
            .aboPP29 {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .aboPP4 {
                padding: 10px;
            }
            
            .aboPP13 {
                padding: 25px 15px;
            }
            
            .aboPP14 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .aboPP15 {
                padding: 20px;
            }
            
            .aboPP19 {
                justify-content: center;
            }
        }

        @media (min-width: 1400px) {
            .aboPP6 {
                max-width: 1300px;
            }
            
            .aboPP14 {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }
        }

        /* Print Styles */
        @media print {
            .aboPP6 {
                box-shadow: none;
                max-width: none;
            }
            
            .aboPP29 {
                display: none;
            }
        }
        a{
            text-decoration: none;
            color: black;
        }







































                
        .serrP1 {
            background: linear-gradient(135deg, #f8fbff 0%, #e6f2ff 100%);
            color: #333;
            line-height: 1.6;
            padding: 20px;
            min-height: 100vh;
        }
        
        .serrP2 {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .serrP3 {
            font-family: 'SolaimanLipi', 'Siyam Rupali', Arial, sans-serif;
        }
        
        /* Background Elements */
        .serrP4 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .serrP5 {
            position: absolute;
            border-radius: 50%;
            background: rgba(0, 156, 255, 0.03);
            animation: serrP6 6s ease-in-out infinite;
        }
        
        @keyframes serrP6 {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        /* Navigation */
        .serrP7 {
            display: flex;
            justify-content: center;
            margin: 30px 0 50px 0;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .serrP8 {
            padding: 18px 35px;
            background: white;
            border-radius: 15px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #009CFF;
            color: #009CFF;
            box-shadow: 0 4px 15px rgba(0, 156, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .serrP8::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: left 0.5s ease;
        }
        
        .serrP8:hover::before {
            left: 100%;
        }
        
        .serrP8:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 156, 255, 0.15);
            background: #f8fbff;
        }
        
        .serrP8.active {
            background: #009CFF;
            color: white;
            border-color: #009CFF;
            transform: translateY(-1px);
            box-shadow: 0 5px 18px rgba(0, 156, 255, 0.2);
        }
        
        /* Service Sections */
        .serrP9 {
            background: white;
            border-radius: 20px;
            margin-bottom: 50px;
            box-shadow: 0 8px 30px rgba(0, 156, 255, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid #009CFF;
            position: relative;
        }
        
        .serrP9::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #009CFF, #66c2ff, #009CFF);
            background-size: 200% 100%;
            animation: serrP10 3s infinite linear;
        }
        
        @keyframes serrP10 {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        
        .serrP9:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 156, 255, 0.15);
        }
        
        .serrP11 {
            padding: 35px;
            color: white;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #009CFF, #0080ff);
            position: relative;
            overflow: hidden;
        }
        
        .serrP11::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
        }
        
        .serrP12 {
            font-size: 3rem;
            margin-right: 25px;
            background: rgba(255, 255, 255, 0.15);
            width: 90px;
            height: 90px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .serrP9:hover .serrP12 {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.2);
        }
        
        .serrP13 {
            font-size: 2.2rem;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .serrP14 {
            padding: 45px;
        }
        
        .serrP15 {
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            text-align: center;
            position: relative;
        }
        
        .serrP15::after {
            content: '';
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #009CFF, transparent);
            margin: 20px auto 0;
            border-radius: 2px;
        }
        
        .serrP16 {
            font-size: 1.2rem;
            color: #555;
            font-weight: 500;
        }
        
        .serrP17 {
            font-size: 1.3rem;
            color: #444;
            font-weight: 500;
        }
        
        /* Treatment Categories */
        .serrP18 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .serrP19 {
            background: linear-gradient(145deg, #ffffff, #f8fbff);
            border-radius: 18px;
            padding: 30px;
            transition: all 0.3s ease;
            border: 2px solid #e6f2ff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 156, 255, 0.08);
        }
        
        .serrP19::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #009CFF, #66c2ff);
        }
        
        .serrP19::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(0, 156, 255, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(30px, -30px);
        }
        
        .serrP19:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 156, 255, 0.12);
            border-color: #009CFF;
        }
        
        .serrP20 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #009CFF;
            font-weight: 700;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .serrP20 i {
            margin-right: 15px;
            font-size: 1.8rem;
            background: rgba(0, 156, 255, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .serrP19:hover .serrP20 i {
            background: rgba(0, 156, 255, 0.15);
            transform: rotate(5deg);
        }
        
        .serrP21 {
            list-style-type: none;
            position: relative;
            z-index: 1;
        }
        
        .serrP22 {
            padding: 16px 0;
            border-bottom: 1px solid #f0f7ff;
            display: flex;
            align-items: flex-start;
            transition: all 0.3s ease;
            border-radius: 8px;
            padding-left: 10px;
            padding-right: 10px;
            position: relative;
        }
        
        .serrP22::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 0;
            height: 2px;
            background: #009CFF;
            transition: width 0.3s ease;
            transform: translateY(-50%);
        }
        
        .serrP22:hover::before {
            width: 4px;
        }
        
        .serrP22:hover {
            background: rgba(0, 156, 255, 0.03);
            transform: translateX(3px);
        }
        
        .serrP22:last-child {
            border-bottom: none;
        }
        
        .serrP23 {
            margin-right: 15px;
            color: #009CFF;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 3px;
            font-size: 1.1rem;
            background: rgba(0, 156, 255, 0.1);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .serrP22:hover .serrP23 {
            background: rgba(0, 156, 255, 0.15);
            transform: scale(1.1);
        }
        
        .serrP24 {
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        
        .serrP25 {
            font-weight: 600;
            margin-bottom: 6px;
            color: #333;
            font-size: 1.05rem;
        }
        
        .serrP26 {
            font-size: 1rem;
            color: #666;
            line-height: 1.4;
        }
        
        /* Creative Divider */
        .serrP27 {
            text-align: center;
            margin: 40px 0;
            position: relative;
        }
        
        .serrP27::before {
            content: '✦';
            color: #009CFF;
            font-size: 1.5rem;
            background: white;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .serrP27::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #009CFF, transparent);
            z-index: 0;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .serrP18 {
                grid-template-columns: 1fr;
            }
            
            .serrP7 {
                flex-direction: column;
                align-items: center;
            }
            
            .serrP8 {
                width: 100%;
                text-align: center;
            }
            
            .serrP11 {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .serrP12 {
                margin-right: 0;
            }
            
            .serrP14 {
                padding: 30px 20px;
            }
        }


















































            .cerc-container {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .cerc-wrapper {
            width: 100%;
            max-width: 1400px;
        }

        .cerc-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .cerc-tag {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 8px 25px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .cerc-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .cerc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }

        .cerc-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .cerc-item:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .cerc-img-box {
            position: relative;
            overflow: hidden;
            height: 380px;
        }

        .cerc-pic {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: all 0.5s ease;
        }

        .cerc-item:hover .cerc-pic {
            transform: scale(1.08);
        }

        /* Click animation */
        .cerc-item.clicked .cerc-pic {
            transform: scale(0.95);
            transition: transform 0.2s ease;
        }

        .cerc-item.clicked {
            box-shadow: 0 0 0 3px #3498db, 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .cerc-num {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.9);
            color: #2c3e50;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .cerc-item.clicked .cerc-num {
            background: #3498db;
            color: white;
            transform: scale(1.1);
        }

        @keyframes cerc-fade {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cerc-item {
            animation: cerc-fade 0.6s ease forwards;
            opacity: 0;
        }

        .cerc-item:nth-child(1) { animation-delay: 0.1s; }
        .cerc-item:nth-child(2) { animation-delay: 0.2s; }
        .cerc-item:nth-child(3) { animation-delay: 0.3s; }
        .cerc-item:nth-child(4) { animation-delay: 0.4s; }
        .cerc-item:nth-child(5) { animation-delay: 0.5s; }
        .cerc-item:nth-child(6) { animation-delay: 0.6s; }
        .cerc-item:nth-child(7) { animation-delay: 0.7s; }
        .cerc-item:nth-child(8) { animation-delay: 0.8s; }
        .cerc-item:nth-child(9) { animation-delay: 0.9s; }
        .cerc-item:nth-child(10) { animation-delay: 1.0s; }

        @media (max-width: 1100px) {
            .cerc-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .cerc-title {
                font-size: 2.2rem;
            }
            
            .cerc-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .cerc-img-box {
                height: 320px;
            }
        }

        @media (max-width: 576px) {
            .cerc-grid {
                grid-template-columns: 1fr;
            }
            
            .cerc-title {
                font-size: 1.8rem;
            }
            
            .cerc-container {
                padding: 20px 15px;
            }
        }





















































        
        .map1 {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            padding: 20px;
            min-height: 50vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .map2 {
            width: 100%;
            max-width: 1000px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            height: auto;
            min-height: 400px;
        }

        .map3 {
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .map4 {
            font-size: 28px;
            font-weight: 700;
            color: #009CFF;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .map5 {
            color: #6b6b6b;
            margin-bottom: 20px;
            font-size: 14px;
            line-height: 1.5;
        }

        .map6 {
            display: flex;
            gap: 12px;
            margin: 15px 0;
            align-items: flex-start;
        }

        .map7 {
            width: 36px;
            height: 36px;
            background: rgba(0, 156, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .map7 i {
            color: #009CFF;
            font-size: 16px;
        }

        .map8 {
            font-size: 14px;
            font-weight: 400;
        }

        .map8 strong {
            display: block;
            margin-bottom: 4px;
            color: #333;
            font-weight: 600;
        }

        .map9 {
            color: #6b6b6b;
            font-size: 13px;
            line-height: 1.4;
        }

        .map10 {
            margin: 15px 0;
        }

        .map11 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 10px 0;
            font-size: 14px;
        }

        .map12 {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #009CFF;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            flex-shrink: 0;
        }

        .map13 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #009CFF;
            color: white;
            padding: 12px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: background 0.3s;
            font-size: 14px;
        }

        .map13:hover {
            background: #0077cc;
        }

        .map14 {
            display: flex;
            gap: 12px;
            margin-top: 15px;
            justify-content: center;
        }

        .map15 {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f0f5ff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #009CFF;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 18px;
        }

        .map15.facebook:hover {
            background: #1877F2;
            color: white;
        }

        .map15.youtube:hover {
            background: #FF0000;
            color: white;
        }

        .map16 {
            position: relative;
            background: #eef5ff;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        .map17 {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .map18 {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .map18 i {
            font-size: 40px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .map18 h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .map18 p {
            font-size: 14px;
            max-width: 250px;
            opacity: 0.9;
            font-weight: 300;
        }

        .map19 {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            padding: 12px 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            gap: 10px;
            align-items: center;
            z-index: 2;
            backdrop-filter: blur(5px);
        }

        .map19 .star {
            color: #ffb400;
            font-weight: bold;
        }

        .map19 small {
            display: block;
            color: #777;
            font-size: 11px;
        }

        .map20 {
            position: absolute;
            top: 50%;
            left: 60%;
            transform: translate(-50%, -50%);
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translate(-50%, -50%); }
            50% { transform: translate(-50%, -55%); }
            100% { transform: translate(-50%, -50%); }
        }

        .map21 {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #009CFF;
            box-shadow: 0 4px 10px rgba(0, 156, 255, 0.3);
            border: 3px solid white;
        }

        .map22 {
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 12px solid #009CFF;
        }

        @media (max-width: 900px) {
            .map2 {
                grid-template-columns: 1fr;
                max-width: 600px;
            }
            
            .map16 {
                min-height: 300px;
            }
        }

        @media (max-width: 600px) {
            .map1 {
                padding: 15px;
            }
            
            .map2 {
                border-radius: 12px;
            }
            
            .map3 {
                padding: 25px 20px;
            }
            
            .map4 {
                font-size: 24px;
            }
            
            .map19 {
                top: 15px;
                left: 15px;
                padding: 10px 12px;
            }
            
            .map14 {
                gap: 15px;
            }
            
            .map15 {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }

        @media (max-width: 400px) {
            .map6 {
                flex-direction: column;
                gap: 8px;
            }
            
            .map7 {
                align-self: flex-start;
            }
        }








































            .gallery1 {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            padding: 60px 20px;
            min-height: 70vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .gallery2 {
            width: 100%;
            max-width: 1200px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .gallery3 {
            background: linear-gradient(135deg, #009CFF, #0066CC);
            color: white;
            padding: 40px;
            text-align: center;
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .gallery4 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .gallery6 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 40px;
        }

        .gallery7 {
            background: #f8fafc;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            animation: scaleIn 0.6s ease-out;
            animation-fill-mode: both;
            border: 1px solid #e1e8f0;
            cursor: pointer;
            position: relative;
        }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        .gallery7:nth-child(1) { animation-delay: 0.1s; }
        .gallery7:nth-child(2) { animation-delay: 0.2s; }
        .gallery7:nth-child(3) { animation-delay: 0.3s; }
        .gallery7:nth-child(4) { animation-delay: 0.4s; }
        .gallery7:nth-child(5) { animation-delay: 0.5s; }
        .gallery7:nth-child(6) { animation-delay: 0.6s; }
        .gallery7:nth-child(7) { animation-delay: 0.7s; }
        .gallery7:nth-child(8) { animation-delay: 0.8s; }
        .gallery7:nth-child(9) { animation-delay: 0.9s; }
        .gallery7:nth-child(10) { animation-delay: 1.0s; }
        .gallery7:nth-child(11) { animation-delay: 1.1s; }
        .gallery7:nth-child(12) { animation-delay: 1.2s; }

        .gallery7:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .gallery8 {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.4s ease;
            display: block;
        }

        .gallery7:hover .gallery8 {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        /* Hover effect without icons */
        .gallery7::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 156, 255, 0.1), rgba(0, 102, 204, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            pointer-events: none;
        }

        .gallery7:hover::before {
            opacity: 1;
        }

        /* Floating animation for images */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .gallery7 {
            animation: float 6s ease-in-out infinite;
        }

        .gallery7:nth-child(2) { animation-delay: 1s; }
        .gallery7:nth-child(3) { animation-delay: 2s; }
        .gallery7:nth-child(4) { animation-delay: 3s; }
        .gallery7:nth-child(5) { animation-delay: 4s; }
        .gallery7:nth-child(6) { animation-delay: 5s; }
        .gallery7:nth-child(7) { animation-delay: 1.5s; }
        .gallery7:nth-child(8) { animation-delay: 2.5s; }
        .gallery7:nth-child(9) { animation-delay: 3.5s; }
        .gallery7:nth-child(10) { animation-delay: 4.5s; }
        .gallery7:nth-child(11) { animation-delay: 5.5s; }
        .gallery7:nth-child(12) { animation-delay: 6.5s; }

        @media (max-width: 768px) {
            .gallery6 {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                padding: 25px;
                gap: 15px;
            }
            
            .gallery3 {
                padding: 30px 20px;
            }
            
            .gallery4 {
                font-size: 28px;
            }
            
            .gallery8 {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .gallery1 {
                padding: 30px 15px;
            }
            
            .gallery2 {
                border-radius: 15px;
            }
            
            .gallery4 {
                font-size: 24px;
            }
            
            .gallery6 {
                grid-template-columns: 1fr;
            }
        }






















































            .pageG1 {
            background: #f8fafc;
            color: #334155;
            line-height: 1.6;
        }

        .pageG2 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

       
        .pageG4 {
            text-align: center;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .pageG5 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .pageG6 {
            padding: 40px 0;
        }

        .pageG7 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #1e293b;
        }

        .pageG8 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .pageG9 {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            aspect-ratio: 4/3;
        }

        .pageG9:hover {
            transform: translateY(-5px);
        }

        .pageG10 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 768px) {
            .pageG3 {
                padding: 80px 0;
                min-height: 400px;
            }
            
            .pageG5 {
                font-size: 2.5rem;
            }
            
            .pageG8 {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .pageG3 {
                padding: 60px 0;
                min-height: 350px;
            }
            
            .pageG5 {
                font-size: 2rem;
            }
            
            .pageG7 {
                font-size: 1.6rem;
            }
        }
