/********** Template CSS **********/








/* ---------- মূল ফিক্স ---------- */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;              /* horizontal scroll রোধ করবে */
  overscroll-behavior-x: contain;  /* swipe করলে পাশের পেজে চেইন হবে না */
}

/* ---------- সাধারণ responsive ফিক্স ---------- */
* {
  box-sizing: border-box;   /* padding/margin ঠিকভাবে কাজ করবে */
}

/* ছবি, ভিডিও, আইফ্রেম যেন viewport-এর বাইরে না যায় */
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- debugging mode (চালু করলে বুঝবে কে বাইরে যাচ্ছে) ---------- */
/*
* {
  outline: 1px solid rgba(255, 0, 0, 0.2);
}
*/

/* ---------- কনটেইনার বা সাইট র‍্যাপার ---------- */
.site-wrapper {
  position: relative;
  overflow-x: hidden;   /* fallback fix */
  max-width: 100vw;
}

/* ---------- vw সমস্যার fix ---------- */
.full-width {
  width: 100%;          /* width:100vw ব্যবহার না করে */
  max-width: 100vw;
}

/* ---------- margin/padding safe fix ---------- */
.safe-padding {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
  overflow-x: hidden;
}












/*** 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;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.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;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-primary);
    border-right: 2px solid var(--bs-primary);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}


/*** Navbar ***/


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: top 0.5s ease; /* smooth slide animation */
}



.sticky-top {
    top: -150px;           /* scroll-hide effect */
    transition: top 0.5s;
}
/* Nav links */
.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 0;
    outline: none;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-dark);
}

/* Scroll hide/show animation */
.navbar-hide {
    top: -100px; /* scroll down -> navbar slide up */
}





.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary)
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-primary {
    border-width: 2px;
    background: var(--bs-light);
}

.navbar .btn-primary:hover {
    background: var(--bs-primary);
}


/*** Hero Header ***/
.hero-header {
    background: url(../img/hero-bg.jpg) top left no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }

    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next{
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
}

.page-header {
    background: url(../img/1.png) center center no-repeat;
    background-size: contain;
}


/*** Service ***/
@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
}

.service .service-item .btn-primary:hover {
    background: var(--bs-primary);
}

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}


/*** Pricing ***/
.price .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .05);
}


/*** Blog ***/
.blog .btn-dark {
    border-width: 2px;
    background: var(--bs-primary);
    color: var(--bs-dark);
}

.blog .btn-dark:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}


/*** Gallery ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery .gallery-item img {
    transition: .5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .7);
    transition: .5s;
    z-index: 1;
}

.gallery .gallery-item:hover .gallery-icon {
    width: 100%;
    height: 100%;
}

.gallery .gallery-icon .btn {
    opacity: 0;
    transition: .5s;
}

.gallery .gallery-item:hover .gallery-icon .btn {
    opacity: 1;
    transition-delay: .5s;
}


/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: var(--bs-primary);
}

.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, .9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

.team-overlay .btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    background: var(--bs-primary) !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: var(--bs-dark) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--bs-secondary);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}





















































        .ser1 {
            font-family: 'Open Sans', sans-serif;
            background: linear-gradient(135deg, #fdf9f5 0%, #f9f2ea 100%);
            color: #2C3E50;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-tap-highlight-color: transparent;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
            font-size: 16px;
        }

        .ser2 {
            min-height: 100vh;
            padding: 20px 15px;
            background: linear-gradient(135deg, #fdf9f5 0%, #f9f2ea 100%);
            position: relative;
        }

        .ser3 {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .ser4 {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding: 0 10px;
        }

        .ser5 {
            display: inline-block;
            background: linear-gradient(135deg, #BF9456 0%, #D6B27E 100%);
            color: #FFFFFF;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 12px 25px;
            border-radius: 50px;
            margin-bottom: 25px;
            letter-spacing: 1px;
            box-shadow: 0 6px 20px rgba(191, 148, 86, 0.3);
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            animation: ser6 2s ease-in-out infinite alternate;
        }

        .ser5::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: ser7 3s ease-in-out infinite;
        }

        .ser8 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: #2C3E50;
            margin-bottom: 20px;
            line-height: 1.1;
            position: relative;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .ser8::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #BF9456 0%, #D6B27E 100%);
            border-radius: 2px;
            animation: ser9 1s ease-out 0.5s both;
        }

        .ser10 {
            font-size: 1.1rem;
            color: #6C757D;
            max-width: 100%;
            margin: 30px auto 0;
            font-weight: 400;
            line-height: 1.5;
            padding: 0 10px;
        }

        .ser11 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            margin-bottom: 40px;
            width: 100%;
        }

        .ser12 {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 25px 20px;
            box-shadow: 0 8px 25px rgba(191, 148, 86, 0.12);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border-top: 4px solid #BF9456;
            border: 1px solid #E9ECEF;
            min-height: auto;
            cursor: pointer;
            touch-action: manipulation;
        }

        .ser12::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(191, 148, 86, 0.03) 0%, rgba(214, 178, 126, 0.03) 100%);
            z-index: 0;
        }

        .ser12::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }

        .ser12:active {
            transform: scale(0.98) translateY(2px);
        }

        .ser13 {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            gap: 15px;
        }

        .ser14 {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #FFFFFF;
            background: linear-gradient(135deg, #BF9456 0%, #D6B27E 100%);
            box-shadow: 0 8px 25px rgba(191, 148, 86, 0.3);
            transition: all 0.4s ease;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            animation: ser15 3s ease-in-out infinite;
        }

        .ser14::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .ser12:active .ser14 {
            transform: scale(0.95);
            animation: none;
        }

        .ser16 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #2C3E50;
            line-height: 1.3;
            flex: 1;
        }

        .ser17 {
            color: #6C757D;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .ser17 p {
            margin: 0;
        }

        .ser18 {
            background: #FFFFFF;
            padding: 16px 18px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid #BF9456;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            border: 1px solid #E9ECEF;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .ser12:active .ser18 {
            transform: translateX(4px);
            border-left-color: #8A6BBF;
        }

        .ser18 p {
            color: #475569;
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
            font-weight: 500;
        }

        .ser19 {
            margin-top: auto;
            position: relative;
            z-index: 2;
        }

        /* Smaller Learn More button */
        .ser20 {
            background: linear-gradient(135deg, #BF9456 0%, #D6B27E 100%);
            color: #FFFFFF;
            border: none;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 3px 10px rgba(191, 148, 86, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 0.3px;
            width: auto;
            justify-content: center;
            
            position: relative;
            overflow: hidden;
            min-height: 36px;
        }

        .ser20::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;
        }

        .ser20:active {
            transform: scale(0.95);
        }

        .ser20:active::before {
            left: 100%;
        }

        .ser20 i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .ser20:active i {
            transform: translateX(4px);
        }

        .ser21 {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }

        .ser22 {
            position: absolute;
            border-radius: 50%;
            z-index: -1;
            opacity: 0.08;
            animation: ser23 15s infinite ease-in-out;
            background: #BF9456;
            filter: blur(30px);
        }

        .ser24 {
            width: 120px;
            height: 120px;
            top: 5%;
            left: 5%;
            animation-delay: 0s;
        }

        .ser25 {
            width: 80px;
            height: 80px;
            bottom: 10%;
            right: 5%;
            animation-delay: 5s;
        }

        .ser26 {
            width: 60px;
            height: 60px;
            top: 60%;
            left: 80%;
            animation-delay: 10s;
        }

        .ser27 {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 30px 20px;
            box-shadow: 0 8px 25px rgba(191, 148, 86, 0.12);
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 40px;
            border: 1px solid #E9ECEF;
        }

        .ser28 {
            text-align: center;
            padding: 20px 15px;
            border-radius: 16px;
            transition: all 0.3s ease;
            background: #F8F9FA;
            border: 2px solid #E9ECEF;
            cursor: pointer;
            animation: ser29 2s ease-in-out infinite alternate;
        }

        .ser28:active {
            transform: scale(0.98);
        }

        .ser28:nth-child(1) { animation-delay: 0s; }
        .ser28:nth-child(2) { animation-delay: 0.5s; }
        .ser28:nth-child(3) { animation-delay: 1s; }
        .ser28:nth-child(4) { animation-delay: 1.5s; }

        .ser30 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: #BF9456;
            margin-bottom: 8px;
            display: block;
            background: linear-gradient(135deg, #BF9456 0%, #D6B27E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .ser31 {
            font-size: 1rem;
            color: #6C757D;
            font-weight: 500;
        }

        @keyframes ser6 {
            0% {
                transform: scale(1);
                box-shadow: 0 6px 20px rgba(191, 148, 86, 0.3);
            }
            100% {
                transform: scale(1.02);
                box-shadow: 0 8px 25px rgba(191, 148, 86, 0.4);
            }
        }

        @keyframes ser7 {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        @keyframes ser9 {
            from {
                width: 0;
                opacity: 0;
            }
            to {
                width: 80px;
                opacity: 1;
            }
        }

        @keyframes ser15 {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-3px) rotate(2deg);
            }
            66% {
                transform: translateY(2px) rotate(-1deg);
            }
        }

        @keyframes ser23 {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            33% {
                transform: translateY(-15px) rotate(3deg) scale(1.05);
            }
            66% {
                transform: translateY(8px) rotate(-2deg) scale(0.95);
            }
        }

        @keyframes ser29 {
            0% {
                transform: translateY(0);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            }
            100% {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            }
        }

        .ser32 {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .ser33 {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .ser34 {
            grid-column: 1 / -1;
            display: flex;
            justify-content: flex-start;
        }

        .ser35 {
            width: 100%;
        }

        @media (min-width: 768px) {
            .ser2 {
                padding: 40px 30px;
            }

            .ser11 {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .ser27 {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                padding: 40px 30px;
            }

            .ser20 {
                min-width: 120px;
            }

            .ser35 {
                max-width: calc(50% - 15px);
            }

            .ser12:hover::after {
                left: 100%;
            }
        }

        @media (min-width: 1024px) {
            .ser2 {
                padding: 60px 40px;
            }

            .ser11 {
                grid-template-columns: repeat(3, 1fr);
            }

            .ser27 {
                grid-template-columns: repeat(4, 1fr);
            }

            .ser35 {
                max-width: calc(33.333% - 20px);
            }

            .ser12:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 50px rgba(191, 148, 86, 0.15);
                border-top-color: #8A6BBF;
            }

            .ser12:hover .ser14 {
                transform: scale(1.1) rotate(8deg);
            }

            .ser12:hover .ser14::before {
                transform: translateX(100%);
            }

            .ser12:hover .ser18 {
                transform: translateX(4px);
                border-left-color: #8A6BBF;
            }

            .ser20:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 12px rgba(191, 148, 86, 0.4);
            }

            .ser20:hover::before {
                left: 100%;
            }

            .ser20:hover i {
                transform: translateX(4px);
            }

            .ser28:hover {
                transform: translateY(-5px);
                border-color: #BF9456;
            }
        }

        .ser20:focus-visible {
            outline: 2px solid #BF9456;
            outline-offset: 1px;
        }

        .ser12:focus-visible {
            outline: 3px solid #BF9456;
            outline-offset: 4px;
        }

        @media (prefers-reduced-motion: reduce) {
            .ser5,
            .ser5::before,
            .ser8::after,
            .ser14,
            .ser22,
            .ser28 {
                animation: none !important;
            }
            
            .ser12,
            .ser20 {
                transition: none !important;
            }
        }













































































                :root {
            --vid1: #BF9456;
            --vid2: #D6B27E;
            --vid3: #2C3E50;
            --vid4: #8B4513;
            --vid5: linear-gradient(135deg, #fdf9f5 0%, #f9f2ea 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(191, 148, 86, 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='%23BF9456' 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(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 0.03) 0%, rgba(214, 178, 126, 0.03) 100%);
            z-index: 0;
        }
        
        .vid45:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px rgba(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 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(191, 148, 86, 0.4);
                transform: scale(1);
            }
            100% {
                box-shadow: 0 12px 35px rgba(191, 148, 86, 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;
            }
        }

























































        .appo1 {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background: #f8f9fa;
}

/* Floating Particles - এই অংশটা যোগ করুন */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: #BF9456;
  opacity: 0.3;
  animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

.appo23 {
  position: absolute;
  border-radius: 50%;
  background: rgba(233, 210, 178, 0.856);
  animation: appoFloat 15s infinite linear;
  z-index: 0;
}

.appo23:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.appo23:nth-child(2) {
  width: 180px;
  height: 180px;
  top: 70%;
  right: 8%;
  animation-delay: -3s;
}

.appo23:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  animation-delay: -6s;
}

.appo23:nth-child(4) {
  width: 160px;
  height: 160px;
  top: 30%;
  right: 15%;
  animation-delay: -9s;
}

@keyframes appoFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-25px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translateY(15px) rotate(240deg) scale(0.9);
  }
}

.appo2 {
  font-size: 42px;
  color: #2c2c2c;
  margin-bottom: 20px;
  font-weight: bold;
  opacity: 0;
  animation: appoTitleGlow 1.2s ease-out 0.5s forwards;
  position: relative;
  display: inline-block;
}

.appo2::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #BF9456;
  animation: appoLineExpand 1s ease-out 1.5s forwards;
}

@keyframes appoTitleGlow {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes appoLineExpand {
  to {
    width: 120px;
  }
}

.appo3 {
  color: #666;
  max-width: 620px;
  margin: 30px auto 60px;
  line-height: 1.7;
  font-size: 18px;
  opacity: 0;
  animation: appoFadeIn 1s ease-out 1s forwards;
}

@keyframes appoFadeIn {
  to {
    opacity: 1;
  }
}

.appo4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.appo5 {
  background: white;
  border-radius: 20px;
  padding: 45px 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(191, 148, 86, 0.15);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: appoCardEntrance 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.appo5:nth-child(1) { 
  animation-delay: 1.2s; 
}

.appo5:nth-child(2) { 
  animation-delay: 1.4s; 
}

.appo5:nth-child(3) { 
  animation-delay: 1.6s; 
}

@keyframes appoCardEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.appo5:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.appo13 {
  margin-bottom: 30px;
  position: relative;
}

.appo14 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  animation: appoIconSubtle 6s ease-in-out infinite;
}

.appo5:nth-child(1) .appo14 { 
  animation-delay: 0s; 
}

.appo5:nth-child(2) .appo14 { 
  animation-delay: 0.2s; 
}

.appo5:nth-child(3) .appo14 { 
  animation-delay: 0.4s; 
}

@keyframes appoIconSubtle {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

.appo5:hover .appo14 {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.appo14 i {
  font-size: 32px;
  color: #BF9456;
  transition: all 0.3s ease;
}

.appo5:hover .appo14 i {
  transform: scale(1.1);
}

.appo15 {
  font-size: 22px;
  font-weight: bold;
  color: #2c2c2c;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.appo15::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #BF9456;
  transition: all 0.3s ease;
}

.appo5:hover .appo15::after {
  width: 70px;
}

.appo16 {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  min-height: 80px;
}

.appo18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #BF9456;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  width: 100%;
  max-width: 200px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(191, 148, 86, 0.4);
}

.appo5:nth-child(1) .appo18 {
  animation: appoButtonPulse 3s infinite;
}

@keyframes appoButtonPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.appo5:nth-child(2) .appo18 {
  animation: appoButtonFloat 4s infinite;
}

@keyframes appoButtonFloat {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-4px);
  }
  75% {
    transform: translateY(2px);
  }
}

.appo5:nth-child(3) .appo18 {
  animation: appoButtonGlow 5s infinite;
}

@keyframes appoButtonGlow {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(191, 148, 86, 0.4);
  }
  50% {
    box-shadow: 0 6px 25px rgba(191, 148, 86, 0.6);
  }
}

.appo18:hover {
  background: #A57C44;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 35px rgba(191, 148, 86, 0.6);
  animation: none;
}

.appo18 i {
  transition: all 0.3s ease;
  font-size: 16px;
}

.appo18:hover i {
  transform: scale(1.4) rotate(15deg);
}

.appo-footer {
  margin-top: 80px;
  padding: 30px 20px;
  color: #666;
  font-size: 14px;
  position: relative;
}

.appo-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #BF9456;
}

@media (max-width: 600px) {
  .appo1 {
    padding: 60px 20px;
  }
  
  .appo2 {
    font-size: 32px;
  }
  
  .appo5 {
    padding: 35px 25px;
  }
  
  .appo14 {
    width: 75px;
    height: 75px;
  }
  
  .appo14 i {
    font-size: 28px;
  }
  
  .appo15 {
    font-size: 20px;
  }
  
  .appo16 {
    font-size: 14px;
    min-height: 70px;
  }
  
  .appo18 {
    padding: 12px 28px;
    font-size: 14px;
    max-width: 180px;
  }
  
  .appo23 {
    display: none;
  }
}



















































  .map1 {
      --gold: #BF9459;
      --gold-light: #D4B483;
      --gold-dark: #A67C52;
      --gold-glow: rgba(191, 148, 89, 0.3);
      --white: #ffffff;
      --off-white: #f9f7f4;
      --text: #2c2c2c;
      --text-light: #5a5a5a;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --border: rgba(191, 148, 89, 0.2);
    }
    
    .map2 {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    .map3 {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
      color: var(--text);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 80vh;
      overflow-x: hidden;
      padding: 20px;
    }
    
    .map4 {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
    }
    
    .map5 {
      position: absolute;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0;
    }
    
    .map6:nth-child(1) {
      width: 3px;
      height: 3px;
      top: 15%;
      left: 10%;
      animation: twinkle1 4s infinite ease-in-out;
    }
    
    .map7:nth-child(2) {
      width: 2px;
      height: 2px;
      top: 25%;
      left: 85%;
      animation: twinkle1 5s infinite ease-in-out 1s;
    }
    
    .map8:nth-child(3) {
      width: 4px;
      height: 4px;
      top: 40%;
      left: 20%;
      animation: twinkle1 6s infinite ease-in-out 2s;
    }
    
    .map9:nth-child(4) {
      width: 3px;
      height: 3px;
      top: 60%;
      left: 75%;
      animation: twinkle1 4.5s infinite ease-in-out 0.5s;
    }
    
    .map10:nth-child(5) {
      width: 2px;
      height: 2px;
      top: 80%;
      left: 15%;
      animation: twinkle1 5.5s infinite ease-in-out 1.5s;
    }
    
    .map11:nth-child(6) {
      width: 3px;
      height: 3px;
      top: 70%;
      left: 90%;
      animation: twinkle1 4s infinite ease-in-out 2.5s;
    }
    
    .map12 {
      position: absolute;
      width: 80px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      opacity: 0;
    }
    
    .map13:nth-child(7) {
      top: 20%;
      left: 10%;
      animation: shootStar1 8s infinite linear 0s;
    }
    
    .map14:nth-child(8) {
      top: 45%;
      left: 5%;
      animation: shootStar1 12s infinite linear 4s;
    }
    
    .map15:nth-child(9) {
      top: 65%;
      left: 15%;
      animation: shootStar1 10s infinite linear 6s;
    }
    
    .map16 {
      position: absolute;
      opacity: 0.3;
      font-size: 20px;
      color: var(--gold);
    }
    
    .map17:nth-child(10) {
      top: 30%;
      left: 80%;
      animation: clusterFloat1 20s infinite ease-in-out;
    }
    
    .map18:nth-child(11) {
      top: 75%;
      left: 25%;
      animation: clusterFloat1 25s infinite ease-in-out reverse;
    }
    
    .map19 {
      position: absolute;
      height: 1px;
      background: var(--gold);
      opacity: 0.1;
      transform-origin: left center;
    }
    
    .map20:nth-child(12) {
      top: 25%;
      left: 30%;
      width: 100px;
      transform: rotate(45deg);
      animation: constellationPulse1 15s infinite ease-in-out;
    }
    
    .map21:nth-child(13) {
      top: 55%;
      left: 60%;
      width: 80px;
      transform: rotate(-30deg);
      animation: constellationPulse1 18s infinite ease-in-out 2s;
    }
    
    .map22:nth-child(14) {
      top: 85%;
      left: 40%;
      width: 120px;
      transform: rotate(15deg);
      animation: constellationPulse1 20s infinite ease-in-out 4s;
    }
    
    .map23 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 30%, rgba(191, 148, 89, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(191, 148, 89, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(191, 148, 89, 0.03) 0%, transparent 50%);
      animation: fieldRotate1 60s infinite linear;
    }
    
    .map24 {
      max-width: 1200px;
      margin: 40px auto;
      padding: 28px;
      position: relative;
      z-index: 1;
      width: 100%;
    }
    
    .map25 {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }
    
    .map26 h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    
    .map26 h1::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
    }
    
    .map26 p {
      font-size: 1.1rem;
      color: var(--text-light);
      max-width: 600px;
      margin: 25px auto 0;
      line-height: 1.6;
    }
    
    .map27 {
      display: flex;
      gap: 30px;
      align-items: stretch;
      min-height: 500px;
    }
    
    .map28 {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 25px;
    }
    
    .map29 {
      position: relative;
      background: var(--white);
      border-radius: 16px;
      box-shadow: var(--shadow);
      padding: 28px;
      display: flex;
      align-items: center;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      min-height: 140px;
      border: 1px solid var(--border);
    }
    
    .map29::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: var(--gold);
      transition: all 0.4s ease;
    }
    
    .map30 {
      opacity: 1;
      transform: translateY(0);
    }
    
    .map29::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, rgba(191, 148, 89, 0.05) 0%, transparent 100%);
      transition: width 0.5s ease;
    }
    
    .map29:hover::after {
      width: 100%;
    }
    
    .map29:hover::before {
      width: 8px;
      background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    }
    
    .map31 {
      flex: 0 0 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--off-white);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 22px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    
    .map31::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
      transition: left 0.7s;
    }
    
    .map29:hover .map31 {
      transform: translateY(-5px);
      background: var(--gold);
      box-shadow: 0 10px 20px var(--gold-glow);
    }
    
    .map29:hover .map31::before {
      left: 100%;
    }
    
    .map31 svg {
      width: 28px;
      height: 28px;
      fill: var(--gold);
      transition: all 0.3s ease;
    }
    
    .map29:hover .map31 svg {
      fill: var(--white);
      transform: scale(1.1);
    }
    
    .map32 h4 {
      margin: 0;
      font-size: 14px;
      color: var(--text-light);
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }
    
    .map32 p {
      margin: 10px 0 0;
      font-size: 16px;
      color: var(--text);
      line-height: 1.5;
      transition: all 0.3s ease;
    }
    
    .map29:hover .map32 h4 {
      color: var(--gold);
      transform: translateX(5px);
    }
    
    .map29:hover .map32 p {
      transform: translateX(5px);
    }
    
    .map33 {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .map34 {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
      height: 100%;
      opacity: 0;
      transform: translateX(20px);
      transition: all 0.6s ease 0.3s;
      border: 1px solid var(--border);
      position: relative;
      min-height: 400px;
    }
    
    .map34::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(191, 148, 89, 0.03) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
      pointer-events: none;
    }
    
    .map34:hover::before {
      opacity: 1;
    }
    
    .map35 {
      opacity: 1;
      transform: translateX(0);
    }
    
    .map36 {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      transition: all 0.5s ease;
    }
    
    .map34:hover .map36 {
      transform: scale(1.03);
    }
    
    .map34::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border: 1px solid transparent;
      border-radius: 16px;
      transition: all 0.4s ease;
      pointer-events: none;
    }
    
    .map34:hover::after {
      border-color: var(--gold);
      box-shadow: 0 0 0 1px var(--gold) inset;
    }
    
    @keyframes float1 {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
      100% { transform: translateY(0px); }
    }
    
    .map29:hover {
      animation: float1 3s ease-in-out infinite;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    @keyframes twinkle1 {
      0%, 100% { opacity: 0; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.2); }
    }
    
    @keyframes shootStar1 {
      0% { 
        opacity: 0;
        transform: translateX(0) translateY(0);
      }
      10% {
        opacity: 1;
        transform: translateX(0) translateY(0);
      }
      100% {
        opacity: 0;
        transform: translateX(300px) translateY(150px);
      }
    }
    
    @keyframes clusterFloat1 {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(10px, -15px) rotate(5deg); }
      50% { transform: translate(-5px, 10px) rotate(-3deg); }
      75% { transform: translate(15px, 5px) rotate(2deg); }
    }
    
    @keyframes constellationPulse1 {
      0%, 100% { opacity: 0.1; }
      50% { opacity: 0.3; }
    }
    
    @keyframes fieldRotate1 {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    @keyframes pulse1 {
      0% { box-shadow: 0 0 0 0 rgba(191, 148, 89, 0.4); }
      70% { box-shadow: 0 0 0 10px rgba(191, 148, 89, 0); }
      100% { box-shadow: 0 0 0 0 rgba(191, 148, 89, 0); }
    }
    
    .map31 {
      animation: pulse1 3s infinite;
    }
    
    @media (max-width: 920px) {
      .map27 {
        flex-direction: column;
        min-height: auto;
      }
      
      .map28, .map33 {
        flex: 1 1 100%;
      }
      
      .map33 {
        order: 2;
        height: 400px;
      }
      
      .map29 {
        min-height: auto;
        margin-bottom: 0;
      }
      
      .map26 h1 {
        font-size: 2.5rem;
      }
      
      .map28 {
        gap: 20px;
        margin-bottom: 20px;
      }
    }
    
    @media (max-width: 768px) {
      .map3 {
        padding: 10px;
      }
      
      .map24 {
        padding: 15px;
        margin: 20px auto;
      }
      
      .map26 h1 {
        font-size: 2.2rem;
      }
      
      .map27 {
        gap: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .map24 {
        padding: 10px;
      }
      
      .map26 h1 {
        font-size: 2rem;
      }
      
      .map29 {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
      }
      
      .map31 {
        margin-right: 0;
        margin-bottom: 15px;
      }
      
      .map32 p {
        font-size: 14px;
      }
      
      .map26 p {
        font-size: 1rem;
        padding: 0 10px;
      }
    }