

@font-face {
  font-family: 'Maintaker';
  src: url('https://www.artistarena.in/assets01/AmericanCaptain-MdEY.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'Maintaker';
  src: url('https://www.artistarena.in/assets01/AmericanCaptain-MdEY.otf') format('opentype');
  font-weight: 700;
}

@font-face {
  font-family: 'Maintaker';
  src: url('https://www.artistarena.in/assets01/AmericanCaptain-MdEY.otf') format('opentype');
  font-weight: 600;
}

@font-face {
  font-family: 'Maintaker';
  src: url('https://www.artistarena.in/assets01/AmericanCaptain-MdEY.otf') format('opentype');
  font-weight: 300;
}
        :root {

            --primary-blue: #2F5BFF;

            --dark: #1d1d1d;

            --white: #ffffff;

            --light-gray: #f8f9fa;

            --font1: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

        }



        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }



        html {

            height: 100%;

            margin: 0;

            padding: 0;

        }



        body {

            font-family: var(--font1);

            color: var(--dark);

            line-height: 1.6;

            overflow-x: hidden;

            scroll-behavior: smooth;

            -webkit-tap-highlight-color: transparent;

            -webkit-font-smoothing: antialiased;

            -moz-osx-font-smoothing: grayscale;

            position: relative;

            background-color: #ffffff;

            min-height: 100%;

            margin: 0;

            padding: 0;

        }



        /* Subtle Abstract Lines Background */

        body::before {

            content: '';

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background-image: 

                linear-gradient(135deg, rgba(47, 91, 255, 0.015) 0%, transparent 50%),

                linear-gradient(45deg, rgba(139, 92, 246, 0.015) 0%, transparent 50%),

                repeating-linear-gradient(

                    0deg,

                    transparent,

                    transparent 98px,

                    rgba(47, 91, 255, 0.02) 98px,

                    rgba(47, 91, 255, 0.02) 100px

                ),

                repeating-linear-gradient(

                    90deg,

                    transparent,

                    transparent 98px,

                    rgba(139, 92, 246, 0.02) 98px,

                    rgba(139, 92, 246, 0.02) 100px

                );

            background-size: 100% 100%, 100% 100%, 100px 100px, 100px 100px;

            pointer-events: none;

            z-index: 0;

            opacity: 0.6;

        }



        /* Additional subtle diagonal lines */

        body::after {

            content: '';

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: 

                repeating-linear-gradient(

                    45deg,

                    transparent,

                    transparent 2px,

                    rgba(47, 91, 255, 0.01) 2px,

                    rgba(47, 91, 255, 0.01) 4px

                ),

                repeating-linear-gradient(

                    -45deg,

                    transparent,

                    transparent 2px,

                    rgba(139, 92, 246, 0.01) 2px,

                    rgba(139, 92, 246, 0.01) 4px

                );

            background-size: 200px 200px, 200px 200px;

            pointer-events: none;

            z-index: 0;

            opacity: 0.4;

        }



        /* Mobile Fix - Prevent scroll when menu is open */

        body.menu-open {

            overflow: hidden;

        }



        /* Mobile Fix - Mobile menu overlay */

        .mobile-menu-overlay {

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: rgba(0, 0, 0, 0.5);

            opacity: 0;

            visibility: hidden;

            transition: all 0.3s ease;

            z-index: 1000;

        }



        .mobile-menu-overlay.active {

            opacity: 1;

            visibility: visible;

        }



        a {

            text-decoration: none !important;

            transition: all 0.2s;

        }



        .container {

            max-width: 1200px;

            margin: 0 auto;

            padding: 0 20px;

        }



        @media (max-width: 480px) {

            /* .container {

                padding: 0 15px;

            } */

        }



        .section-padding {

            padding: 60px 0;

        }



        @media (max-width: 768px) {

            .section-padding {

                padding: 40px 0;

            }

        }



        @media (max-width: 480px) {

            .section-padding {

                padding: 30px 0;

            }

        }



        /* Header Top Bar */

        /* Navigation */

        .navigation {

            background: white;

            border-bottom: 1px solid #e5e7eb;

            position: sticky;

            top: 0;

            z-index: 1000;

        }



        .navbar-default {

            padding: 12px 0;

        }



        .navbar-brand {

            display: flex;

            align-items: center;

        }



        .navbar-brand img {

            height: 60px;

            width: auto;

            object-fit: contain;

        }



        .navbar-nav {

            display: flex;

            gap: 35px;

            list-style: none;

            align-items: center;

            margin-left: auto;

        }



        .navbar-nav li {

            position: relative;

        }



        .navbar-nav li a {

            color: var(--dark);

            font-weight: 500;

            font-size: 15px;

            transition: color 0.3s;

            display: flex;

            align-items: center;

            gap: 5px;

        }



        .navbar-nav li a:hover {

            color: var(--primary-blue);

        }



        /* Dropdown Menu */

        .dropdown-menu {

            position: absolute;

            top: 100%;

            left: 0;

            background: white;

            min-width: 200px;

            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

            border-radius: 8px;

            padding: 8px 0;

            opacity: 0;

            visibility: hidden;

            transform: translateY(-10px);

            transition: all 0.3s ease;

            z-index: 1000;

            margin-top: 15px;

        }



        .navbar-nav li:hover .dropdown-menu {

            opacity: 1;

            visibility: visible;

            transform: translateY(0);

        }



        .dropdown-menu li {

            display: block;

        }



        .dropdown-menu li a {

            padding: 10px 20px;

            color: var(--dark);

            font-size: 14px;

            display: block;

            transition: all 0.3s;

        }



        .dropdown-menu li a:hover {

            background: #f8fafc;

            color: var(--primary-blue);

            padding-left: 25px;

        }



        .dropdown-icon {

            font-size: 10px;

            transition: transform 0.3s;

        }



        .navbar-nav li:hover .dropdown-icon {

            transform: rotate(180deg);

        }



        /* Mobile Fix - Hamburger Menu */

        .mobile-menu-toggle {

            display: none;

            flex-direction: column;

            gap: 5px;

            background: none;

            border: none;

            cursor: pointer;

            padding: 5px;

        }



        .mobile-menu-toggle span {

            width: 28px;

            height: 3px;

            background: var(--dark);

            border-radius: 2px;

            transition: all 0.3s ease;

        }



        .mobile-menu-toggle.active span:nth-child(1) {

            transform: translateY(8px) rotate(45deg);

        }



        .mobile-menu-toggle.active span:nth-child(2) {

            opacity: 0;

        }



        .mobile-menu-toggle.active span:nth-child(3) {

            transform: translateY(-8px) rotate(-45deg);

        }



        /* Hero Section - Following Hire4event.txt structure exactly */

        .Hero710 {

            background: #1a1a1a;

            overflow: hidden;

            position: relative;

            min-height: 600px;

        }



        .HeroInner710 {

            position: relative;

            z-index: 6;

            width: 100%;

            height: 100%;

        }



        .keywords710 {

            text-transform: capitalize;

            font-size: 20px;

            font-weight: 300;

            text-align: center;

            background: rgba(255, 255, 255, 0.2);

            padding: 15px 20px;

            width: max-content;

            margin: 0 auto 25px;

            border-radius: 50px;

            color: white;

            border: 1px solid white;

        }



        .HerTitle710 {

            font-size: 45px;

            font-weight: 700;

            text-transform: capitalize;

            text-align: center;

            line-height: 1.2;

            color: white;

        }



        .HeaderParagraph710 {

            font-size: 21px;

            text-align: center;

            font-weight: 300;

            color: rgba(255,255,255,0.95);

            max-width: 900px;

            margin: 15px auto 30px;

        }



        .MainButtonBox710 {

            display: flex;

            gap: 20px;

            align-items: center;

            justify-content: center;

            flex-wrap: wrap;

        }



        .herbtn1_710 {

            margin: 0 5px;

            box-shadow: 0px 2px 4px -5px rgba(10, 42, 105, 0.05);

            padding: 2px 2px 2px 20px;

            width: auto;

            border-radius: 50px;

            font-size: 14px;

            line-height: 18px;

            text-align: left;

            display: flex;

            align-items: center;

            gap: 10px;

            background: #2F5BFF;

            color: var(--white);

            border: none;

        }



        .herbtn2_710 {

            margin: 0 5px;

            box-shadow: 0px 2px 4px -5px rgba(10, 42, 105, 0.05);

            padding: 2px 2px 2px 20px;

            width: auto;

            border-radius: 50px;

            font-size: 14px;

            line-height: 18px;

            display: flex;

            align-items: center;

            gap: 10px;

            background: white;

            color: var(--dark);

            border: 1px solid #bbbbbb;

        }



        .herobtnIcon {

            width: 35px;

            height: 35px;

            background: white;

            color: black;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 50px;

        }



        .herbtn2_710 .herobtnIcon {

            background: var(--primary-blue);

            color: #fff;

        }



        /* Hero Text Slider */

        .itemParent {

            position: relative;

            width: 100vw;

            min-height: 600px;

            margin-left: calc(-50vw + 50%);

            margin-right: calc(-50vw + 50%);

        }



        .herodataitm {

            opacity: 0;

            visibility: hidden;

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            transition: opacity 1s ease-in-out, visibility 1s ease-in-out;

            padding: 80px 0;

            display: flex;

            flex-direction: column;

            justify-content: center;

            z-index: 1;

        }



        .herodataitm::after {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background-image: var(--hero-bg-image);

            background-size: 100% 100%;

            background-position: center;

            background-repeat: no-repeat;

            z-index: -2;

            pointer-events: none;

        }



        .herodataitm.active::after {

            opacity: 1;

        }



        .herodataitm.active {

            opacity: 1;

            visibility: visible;

            z-index: 2;

        }



        .herodataitm::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100vh;

            background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 100%);

            z-index: -1;

        }



        .herodataitm > * {

            position: relative;

            z-index: 2;

        }



        .slide-title {

            margin: 0 10px;

        }



        /* Corporate Event Planner Section */

        .corporate-planner-section {

            padding: 40px 0;

            background: #f8f9fa;

        }



        .rotating-city {

            color: var(--primary-blue);

            font-weight: 700;

            display: inline-block;

            min-width: 120px;

            text-align: left;

        }



        .corporate-intro h2 {

            font-size: 32px;

            font-weight: 700;

            color: var(--dark);

            margin-bottom: 20px;

            line-height: 1.3;

        }



        .corporate-intro p {

            font-size: 16px;

            color: #555;

            line-height: 1.8;

            margin-bottom: 30px;

        }



        .trusted-companies-title {

            font-size: 24px;

            font-weight: 600;

            color: var(--dark);

            text-align: center;

            margin: 40px 0 30px;

        }



        .brand-cards-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

            gap: 20px;

            margin-top: 20px;

        }



        .brand-card {

            background: white;

            padding: 30px 20px;

            border-radius: 10px;

            box-shadow: 0 3px 15px rgba(0,0,0,0.08);

            display: flex;

            align-items: center;

            justify-content: center;

            transition: all 0.3s ease;

            min-height: 100px;

        }



        .brand-card:hover {

            transform: translateY(-8px) scale(1.03);

            box-shadow: 0 10px 30px rgba(47, 91, 255, 0.15);

        }



        .brand-card img {

            max-width: 100%;

            max-height: 60px;

            object-fit: contain;

            filter: grayscale(100%);

            opacity: 0.7;

            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

        }



        .brand-card:hover img {

            filter: grayscale(0%);

            opacity: 1;

        }



        /* Gallery Cards for Artist Categories */

        .filter-gallery {

            display: flex;

            flex-wrap: wrap;

            gap: 20px;

            justify-content: center;

        }



        .filter-gallery .col-lg-6 {

            flex: 0 0 calc(50% - 10px);

            max-width: calc(50% - 10px);

            padding: 0;

        }



        .filter-gallery .col-lg-3 {

            flex: 0 0 calc(25% - 15px);

            max-width: calc(25% - 15px);

            padding: 0;

        }



        .gallery-card {

            position: relative;

            overflow: hidden;

            border-radius: 15px;

            height: 300px;

            cursor: pointer;

            transition: all 0.3s ease;

        }



        .gallery-card:hover {

            /* transform: translateY(-5px); */

            box-shadow: 0 10px 30px rgba(0,0,0,0.2);

        }



        .gallery-thumb {

            width: 100%;

            height: 100%;

            overflow: hidden;

        }



        .gallery-thumb img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition: transform 0.5s ease;

        }



        .gallery-card:hover .gallery-thumb img {

            /*transform: scale(1.1);*/

        }



        .gallery-overlay {

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);

            z-index: 1;

        }



        .gallery-content {

            position: absolute;

            bottom: 0;

            left: 0;

            right: 0;

            padding: 18px;

            z-index: 2;

            color: white;

        }



        .gallery-badge {

            display: inline-block;

            margin-bottom: 10px;

        }



        .gallery-badge span {

            background: var(--primary-blue);

            padding: 6px 15px;

            border-radius: 20px;

            font-size: 13px;

            font-weight: 600;

            text-transform: uppercase;

            letter-spacing: 1px;

        }



        .gallery-title {

            font-size: 18px;

            font-weight: 600;

            margin: 0;

            line-height: 1.4;

        }



        .gallery-title {

            color: white;

            text-decoration: none;

            transition: color 0.3s ease;

        }



        .gallery-title:hover {

            color: var(--primary-blue);

        }



        @media (max-width: 992px) {

            .filter-gallery .col-lg-6,

            .filter-gallery .col-lg-3 {

                flex: 0 0 31%;

                max-width: 50%;

            }

        }



        @media (max-width: 768px) {

            .filter-gallery .col-lg-6,

            .filter-gallery .col-lg-3 {

                flex: 0 0 48%;

                max-width: 100%;

            }



            .gallery-card {

                height: 100%;
                margin: 0 10px;


            }
         }
            @media (max-width: 600px) {

            .filter-gallery .col-lg-6,

            .filter-gallery .col-lg-3 {

                flex: 0 0 100%;

                max-width: 100%;

            }
.gallery-card {

                
                margin: 0 50px;


            }
 



            /* Mobile - Force images to fill entire card without gaps */

            .gallery-thumb {

                width: 100%;

                height: 100%;

                overflow: hidden;

                position: relative;

            }



            .gallery-thumb img {

                position: absolute;

                top: 50%;

                left: 50%;

                transform: translate(-50%, -50%);

                min-width: 100%;

                min-height: 100%;

                width: auto;

                height: auto;

                max-width: none;

                object-fit: cover;

            }



            .gallery-card:hover .gallery-thumb img {

                /*transform: translate(-50%, -50%) scale(1.1);*/

            }

        }



        /* Services Section - 6 Column Grid like Hire4event */

        .Box2container {

            width: 100%;

            padding: 20px 0;

            margin: 0 auto;

                /* background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f4ff 100%); */


            position: relative;

            overflow: hidden;

        }



        .Box2container::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            /* background: radial-gradient(circle at 20% 30%, rgba(47, 91, 255, 0.05) 0%, transparent 50%),

                radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%); */

            pointer-events: none;

        }



        .Box2container .container {

            position: relative;

            z-index: 1;

        }



        .CSTMNew26row {

            display: flex;

            flex-wrap: wrap;

            gap: 30px;

            justify-content: center;

        }



        .CSTMNew26row .col-lg-4 {

            padding: 0;

            flex: 1 0 calc(33.333% - 20px);

            max-width: calc(33.333% - 20px);

        }



        /* Mobile Fix - Horizontal scroll container for services */

        @media (max-width: 992px) {

            .Box2container {

                padding: 0px 0;

                overflow: visible;

            }



            .Box2container .container {

                padding: 0 !important;

                max-width: 100%;

                overflow: visible;

            }



            .CSTMNew26row {

                /* flex-wrap: nowrap !important; */

                overflow-x: auto !important;

                overflow-y: visible !important;

                -webkit-overflow-scrolling: touch !important;

                scroll-snap-type: x mandatory !important;

                scroll-behavior: smooth !important;

                gap: 15px;

                padding: 20px 0;

                margin: 0 !important;

                display: flex !important;

            }



            .CSTMNew26row::-webkit-scrollbar {

                height: 8px;

            }



            .CSTMNew26row::-webkit-scrollbar-track {

                background: #f1f1f1;

                border-radius: 10px;

            }



            .CSTMNew26row::-webkit-scrollbar-thumb {

                background: #2F5BFF;

                border-radius: 10px;

            }



            .CSTMNew26row::-webkit-scrollbar-thumb:hover {

                background: #1e40af;

            }



            .CSTMNew26row .col-lg-4 {

                flex: 0 0 280px !important;

                min-width: 280px !important;

                max-width: 280px !important;

                scroll-snap-align: start !important;

                padding: 0 !important;

                margin: 0 !important;

                display: block !important;

            }



            .CSTMNew26row .col-lg-4:first-child {

                padding-left: 15px !important;

                margin-left: 0 !important;

            }



            .CSTMNew26row .col-lg-4:last-child {

                padding-right: 15px !important;

            }



            .servicesSection {

                height: 100%;

                width: 100%;

                display: flex;

                flex-direction: column;

                transform: none !important;

            }



            .servicesSection:hover {

                transform: none !important;

            }



            .servicesSection:hover .svgIcon {

                transform: none !important;

            }



            .servicesSection:hover .imgDiv::before {

                transform: rotate(45deg) !important;

            }

        }



        .servicesSection {

            border: none;

            padding: 40px 30px !important;

            margin: 0;

            min-height: 380px;

            border-radius: 24px;

            background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);

            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

            position: relative;

            overflow: hidden;

            box-shadow: 0 4px 20px rgba(47, 91, 255, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);

            display: flex;

            flex-direction: column;

            justify-content: space-between;

        }



        .servicesSection::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            height: 4px;

            background: linear-gradient(90deg, #2F5BFF 0%, #8B5CF6 50%, #EC4899 100%);

            transform: scaleX(0);

            transform-origin: left;

            transition: transform 0.4s ease;

        }



        .servicesSection:hover {

            transform: translateY(-12px) scale(1.02);

            box-shadow: 0 20px 40px rgba(47, 91, 255, 0.15), 0 8px 16px rgba(139, 92, 246, 0.1);

            background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);

        }



        .servicesSection:hover::before {

            transform: scaleX(1);

        }



        .imgDiv {

            display: flex;

            align-items: center;

            justify-content: center;

            padding: 0;

            margin-bottom: 25px;

            position: relative;

        }



        .imgDiv::before {

            content: '';

            position: absolute;

            width: 80px;

            height: 80px;

            background: linear-gradient(135deg, rgba(47, 91, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);

            border-radius: 20px;

            transform: rotate(45deg);

            transition: all 0.4s ease;

        }



        .servicesSection:hover .imgDiv::before {

            transform: rotate(45deg) scale(1.1);

            background: linear-gradient(135deg, rgba(47, 91, 255, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);

        }



        .servicesSection .svgIcon {

            fill: #2F5BFF;

            width: 56px;

            height: 56px;

            position: relative;

            z-index: 1;

            transition: all 0.4s ease;

        }



        .servicesSection:hover .svgIcon {

            transform: scale(1.1) rotate(5deg);

            fill: #8B5CF6;

        }



        /* Header Styling */

        .OOSHeader06 {

            margin-bottom: 60px !important;

            text-align: center;

        }



        .OOSHeader06 span:first-child {

            display: inline-block;

            background: linear-gradient(135deg, #2F5BFF 0%, #8B5CF6 100%);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

            background-clip: text;

            font-weight: 700;

            letter-spacing: 3px;

            font-size: 13px;

            text-transform: uppercase;

            margin-bottom: 15px;

        }



        .PatternServices {

            font-size: 42px !important;

            font-weight: 800 !important;

            margin-top: 15px !important;

            margin-bottom: 20px;

            background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

            background-clip: text;

            line-height: 1.2;

        }



        .PatternServices span {

            background: linear-gradient(135deg, #2F5BFF 0%, #8B5CF6 100%);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

            background-clip: text;

        }



        .OOSShortDesc06 {

            font-size: 18px;

            color: #64748b;

            max-width: 600px;

            margin: 0 auto;

            line-height: 1.6;

        }



        /* SVG Gradient Definition */

        .Box2container svg {

            position: relative;

        }



        .contentDiv {

            padding: 0;

            margin-bottom: 25px;

        }



        .newServiceTitle {

            text-align: center;

            font-size: 22px;

            margin-bottom: 12px;

            font-weight: 700;

            color: #1e293b;

            line-height: 1.3;

            transition: color 0.3s ease;

        }



        .servicesSection:hover .newServiceTitle {

            color: #2F5BFF;

        }



        .serviceParagraph {

            text-align: center;

            font-size: 15px;

            color: #64748b;

            line-height: 1.6;

            margin: 0;

        }



        button.newLinkBtn {

            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);

            border: 2px solid #e2e8f0 !important;

            margin-top: 0;

            padding: 14px 24px;

            border-radius: 12px;

            font-size: 14px;

            font-weight: 600;

            color: #2F5BFF;

            position: relative;

            width: 100%;

            cursor: pointer;

            transition: all 0.3s ease;

            display: flex;

            align-items: center;

            justify-content: space-between;

            overflow: hidden;

        }



        button.newLinkBtn::before {

            content: '';

            position: absolute;

            top: 0;

            left: -100%;

            width: 100%;

            height: 100%;

            background: linear-gradient(135deg, #2F5BFF 0%, #8B5CF6 100%);

            transition: left 0.3s ease;

            z-index: 0;

        }



        button.newLinkBtn:hover {

            border-color: #2F5BFF !important;

            color: #ffffff;

            transform: translateY(-2px);

            box-shadow: 0 8px 20px rgba(47, 91, 255, 0.25);

        }



        button.newLinkBtn:hover::before {

            left: 0;

        }



        button.newLinkBtn span:first-child {

            position: relative;

            z-index: 1;

            transition: color 0.3s ease;

        }



        button.newLinkBtn .btnIcon {

            background: linear-gradient(135deg, #2F5BFF 0%, #8B5CF6 100%);

            color: #fff !important;

            padding: 0;

            width: 36px;

            height: 36px;

            position: relative;

            right: 0;

            border-radius: 10px;

            font-size: 14px;

            top: 0;

            border: 0;

            display: flex;

            align-items: center;

            justify-content: center;

            transition: all 0.3s ease;

            z-index: 1;

        }



        button.newLinkBtn:hover .btnIcon {

            background: #ffffff;

            color: #2F5BFF !important;

            transform: translateX(4px);

        }



        /* About Section - Following Hire4event structure */

        .section-padding.RightAfter.target-area {

            padding: 50px 0;

        }



        .SecImgHolderCol {

            position: relative;

        }



        .SecImgHolder {

            display: flex;

            gap: 30px;

            align-items: center;

            justify-content: space-between;

        }



        .ManagementExperts {

            min-height: 450px;

            object-fit: cover;

            object-position: center;

            width: 25%;

            border-radius: 15px;

            box-shadow: 0 10px 30px rgba(0,0,0,0.1);

        }




        .section-title h2 {

            font-size: 2.5rem;

            line-height: 1em;

            margin: .2em 0 0;

            font-weight: 700;

        }



        .section-title > span {

            font-weight: 700;

            color: var(--primary-blue);

            letter-spacing: 5px;

            display: block;

            margin-top: -.3em;

        }



        .ServicesParagraph {

            font-size: 16px;

            line-height: 1.7;

            margin: 20px 0;

            text-align: justify;

        }



        .aboutFeaturesNew {

            display: flex;

            flex-wrap: wrap;

            gap: 40px 0;

            margin: 50px 0;

        }



        .ServicesCard {

            width: 32.5%;

            padding-right: 15px;

            display: flex;

            gap: 25px;

            align-items: center;

            justify-content: flex-start;

            margin-bottom: 0;

        }



        .ServicesCard h3 {

            font-size: 20px;

            margin: 0 0 .4em;

            text-transform: capitalize;

            font-weight: 400;

        }



        .ServicesCard p {

            font-size: 14px;

            margin: 0;

            line-height: 17px;

            font-weight: 300;

        }



        .Magazine {

            width: 80px;

            height: 80px;

            object-fit: contain;

            box-shadow: 0 15.96px 53.83px 0 rgb(184 185 228 / .4), 1px 1px 0 0 #fff;

            padding: 10px;

            border-radius: 25px;

        }



        /* About Section Continued */

        .about-section {

            padding-top: 0;

            padding-bottom: 0;

            overflow: hidden;

        }



        .aboutAreaNew {

            padding: 40px 0;

        }



        .section-titleh3 h3 {

            font-size: 2rem;

            line-height: 1em;

            margin: .2em 0 0;

            font-weight: 700;

        }



        .section-titleh3 h3 span {

            color: var(--primary-blue) !important;

        }



        /* Partner/Client Logo Section */

        .partner-section {

            background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjYwIiBoZWlnaHQ9IjYwIiBmaWxsPSJub25lIi8+PGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iMS41IiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMSkiLz48L3N2Zz4=) center center / cover no-repeat local;

            position: relative;

            padding: 70px 0 25px;

            margin-top: 0;

            background-color: var(--primary-blue);

        }



        @media (max-width: 768px) {

            .partner-section {

                padding: 60px 0 20px;

            }

        }



        .partner-section:before {

            content: "";

            background-color: rgba(47, 91, 255, 0.95);

            width: 100%;

            height: 100%;

            position: absolute;

            left: 0;

            top: 0;

        }



        .sectionTitleonBlackBG {

            margin: -30px 0 25px;

            position: relative;

            z-index: 5;

        }



        .sectionTitleonBlackBG span {

            color: rgba(255,255,255,0.9) !important;

        }



        .CompaniesTrustTitle {

            color: var(--white) !important;

        }



        .SliderLogos {

            width: 100%;

            height: 80px;

            background: #fff;

            object-fit: contain;

            padding: 15px;

            border-radius: 8px;

            box-shadow: 0 3px 10px rgba(255,255,255,0.1);

            transition: all 0.3s ease;

            display: block;

        }



        .SliderLogos:hover {

            transform: translateY(-5px);

            box-shadow: 0 5px 20px rgba(255,255,255,0.2);

        }



        .partners-grid {

            display: grid;

            grid-template-columns: repeat(8, 1fr);

            gap: 20px;

            margin-bottom: 20px;

            padding: 20px 0;

            position: relative;

            z-index: 10;

        }



        @media (max-width: 768px) {

            .partners-grid {

                grid-template-columns: repeat(4, 1fr);

                gap: 8px;

                padding: 15px 0;

            }

        }



        @media (max-width: 480px) {

            .partners-grid {

                grid-template-columns: repeat(4, 1fr);

                gap: 6px;

            }

        }



        /* Service Title Section */

        .srvTitle {

            font-size: 2rem;

            line-height: 1.2em;

            margin: 0 0 15px;

            font-weight: 700;

            text-align: center;

        }



        .artist-platform-section {

            padding: 0;

            background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 50%, #0f1428 100%);

            position: relative;

            overflow: hidden;

            min-height: 700px;

        }



        .artist-platform-section::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            background: radial-gradient(circle at 30% 50%, rgba(47, 91, 255, 0.15) 0%, transparent 50%);

            pointer-events: none;

        }



        .artist-platform-section::after {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.03"/></svg>');

            pointer-events: none;

        }



        .platform-hero-wrapper {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 80px;

            align-items: center;

            padding: 80px 40px;

            position: relative;

            z-index: 2;

        }



        .platform-text-content {

            padding-right: 40px;

        }



        .platform-hero-title {

            font-size: 56px;

            font-weight: 800;

            line-height: 1.1;

            margin-bottom: 15px;

            color: #ffffff;

            text-align: left;

            letter-spacing: -1px;

        }



        .platform-hero-title .highlight {

            background: linear-gradient(135deg, #2F5BFF 0%, #6B8AFF 100%);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

            background-clip: text;

            display: inline-block;

        }



        .platform-hero-subtitle {

            font-size: 32px;

            font-weight: 300;

            color: rgba(255, 255, 255, 0.7);

            margin-bottom: 30px;

            text-align: left;

        }



        .platform-hero-description {

            font-size: 16px;

            line-height: 1.8;

            color: rgba(255, 255, 255, 0.6);

            margin-bottom: 40px;

            text-align: left;

        }



        .platform-cta-buttons {

            display: flex;

            flex-wrap: wrap;

            gap: 15px;

            margin-top: 30px;

            align-items: center;

        }



        .platform-cta-btn {

            padding: 15px 35px;

            border-radius: 50px;

            font-size: 16px;

            font-weight: 600;

            text-decoration: none;

            transition: all 0.3s ease;

            display: inline-flex;

            align-items: center;

            gap: 10px;

        }



        .platform-cta-btn.primary {

            background: linear-gradient(135deg, #2F5BFF 0%, #6B8AFF 100%);

            color: white;

            box-shadow: 0 10px 30px rgba(47, 91, 255, 0.4);

        }



        .platform-cta-btn.primary:hover {

            transform: translateY(-3px);

            box-shadow: 0 15px 40px rgba(47, 91, 255, 0.6);

        }



        .platform-cta-btn.secondary {

            background: rgba(255, 255, 255, 0.1);

            color: white;

            border: 2px solid rgba(255, 255, 255, 0.2);

            backdrop-filter: blur(10px);

        }



        .platform-cta-btn.secondary:hover {

            background: rgba(255, 255, 255, 0.15);

            border-color: rgba(255, 255, 255, 0.4);

        }



        /* Asymmetric Image Composition */

        .platform-images-grid {

            position: relative;

            height: 600px;

            width: 100%;

            display: flex;

            justify-content: center;

            align-items: center;

        }



        .platform-image-item {

            position: absolute;

            overflow: hidden;

            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

            cursor: pointer;

        }



        .platform-image-item img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition: transform 0.5s ease;

        }



        .platform-image-item:hover {

            transform: translateY(-10px) scale(1.02);

            z-index: 10 !important;

        }



        .platform-image-item:hover img {

            transform: scale(1.1);

        }



        /* Large vertical hero image - left */

        .platform-image-item.hero-large {

            top: 50%;

            left: 5%;

            transform: translateY(-50%);

            width: 280px;

            height: 450px;

            border-radius: 30px;

            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

            z-index: 3;

        }



        .platform-image-item.hero-large::before {

            content: '';

            position: absolute;

            inset: -2px;

            background: linear-gradient(135deg, #2F5BFF, #6B8AFF);

            border-radius: 30px;

            z-index: -1;

            opacity: 0;

            transition: opacity 0.3s ease;

        }



        .platform-image-item.hero-large:hover::before {

            opacity: 0.6;

        }



        /* Circle images */

        .platform-image-item.circle-1 {

            top: 50px;

            right: 40px;

            width: 180px;

            height: 180px;

            border-radius: 50%;

            box-shadow: 0 15px 40px rgba(47, 91, 255, 0.4);

            z-index: 4;

            border: 4px solid rgba(47, 91, 255, 0.3);

        }



        .platform-image-item.circle-2 {

            bottom: 80px;

            right: 200px;

            width: 140px;

            height: 140px;

            border-radius: 50%;

            box-shadow: 0 10px 30px rgba(107, 138, 255, 0.4);

            z-index: 5;

            border: 3px solid rgba(107, 138, 255, 0.3);

        }



        /* Medium rounded square */

        .platform-image-item.square-medium {

            top: 180px;

            left: 240px;

            width: 220px;

            height: 200px;

            border-radius: 25px;

            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

            z-index: 2;

        }



        /* Small portrait rectangle */

        .platform-image-item.portrait-small {

            bottom: 20px;

            left: 320px;

            width: 150px;

            height: 200px;

            border-radius: 20px;

            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);

            z-index: 4;

        }



        /* Horizontal wide */

        .platform-image-item.wide-horizontal {

            top: 420px;

            right: 0;

            width: 260px;

            height: 140px;

            border-radius: 20px;

            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);

            z-index: 3;

        }



        /* Glow effects on hover */

        .platform-image-item.hero-large:hover {

            box-shadow: 0 25px 70px rgba(47, 91, 255, 0.6), 0 0 40px rgba(47, 91, 255, 0.3);

        }



        .platform-image-item.circle-1:hover,

        .platform-image-item.circle-2:hover {

            box-shadow: 0 20px 50px rgba(107, 138, 255, 0.7), 0 0 30px rgba(107, 138, 255, 0.5);

        }



        /* Accent lines */

        .accent-line {

            position: absolute;

            height: 2px;

            background: linear-gradient(90deg, transparent, rgba(47, 91, 255, 0.5), transparent);

            z-index: 1;

        }



        .accent-line-1 {

            top: 150px;

            left: 10%;

            width: 200px;

            transform: rotate(-15deg);

        }



        .accent-line-2 {

            bottom: 200px;

            right: 15%;

            width: 150px;

            transform: rotate(25deg);

        }



        @media (max-width: 1200px) {

            .platform-hero-wrapper {

                grid-template-columns: 1fr;

                gap: 40px;

            }



            .platform-images-grid {

                height: 500px;

            }



            .platform-image-item.hero-large {

                width: 220px;

                height: 360px;

            }



            .platform-image-item.circle-1 {

                width: 150px;

                height: 150px;

            }



            .platform-image-item.circle-2 {

                width: 120px;

                height: 120px;

            }

        }



        @media (max-width: 768px) {

            .platform-hero-title {

                font-size: 40px;

            }



            .platform-hero-subtitle {

                font-size: 24px;

            }



            .platform-hero-wrapper {

                display: flex;

                flex-direction: column;

                gap: 30px;

                padding: 40px 20px;

            }



            .platform-text-content {

                order: 1;

            }



            /* Mobile - 2x2 Grid Layout */

            .platform-images-grid {

                position: relative !important;

                height: auto !important;

                margin-top: 30px;

                padding: 0;

                display: grid !important;

                grid-template-columns: repeat(2, 1fr) !important;

                gap: 12px;

                order: 2;

                max-width: 100%;

            }



            /* Reset all image items to grid cards */

            .platform-image-item {

                position: relative !important;

                width: 100% !important;

                height: auto !important;

                aspect-ratio: 1 / 1 !important;

                border-radius: 12px !important;

                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;

                border: none !important;

                top: auto !important;

                left: auto !important;

                right: auto !important;

                bottom: auto !important;

                transform: none !important;

                z-index: 1 !important;

                display: block !important;

            }



            .platform-image-item:hover {

                transform: translateY(-3px) !important;

                box-shadow: 0 8px 20px rgba(47, 91, 255, 0.2) !important;

            }



            .accent-line {

                display: none;

            }



            .platform-cta-buttons {

                flex-direction: column;

            }

        }



        .platform-content {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 30px;

            margin: 25px 0;

            align-items: start;

        }



        @media (max-width: 768px) {

            .platform-content {

                grid-template-columns: 1fr;

            }

        }



        .platform-features-grid {

            display: grid;

            grid-template-columns: repeat(2, 1fr);

            gap: 15px;

        }



        .feature-item {

            background: white;

            padding: 15px;

            border-radius: 8px;

            box-shadow: 0 2px 10px rgba(0,0,0,0.05);

            display: flex;

            gap: 12px;

            align-items: flex-start;

            transition: all 0.3s ease;

        }



        .feature-item:hover {

            transform: translateY(-3px);

            box-shadow: 0 5px 20px rgba(0,0,0,0.1);

        }



        .feature-icon {

            width: 40px;

            height: 40px;

            background: var(--primary-blue);

            border-radius: 8px;

            display: flex;

            align-items: center;

            justify-content: center;

            color: white;

            flex-shrink: 0;

        }



        .feature-icon i {

            font-size: 18px;

        }



        .feature-text h4 {

            font-size: 15px;

            font-weight: 600;

            margin: 0 0 5px;

            color: var(--dark);

        }



        .feature-text p {

            font-size: 13px;

            color: #666;

            margin: 0;

            line-height: 1.4;

        }



        .platform-stats {

            display: grid;

            grid-template-columns: repeat(2, 1fr);

            gap: 15px;

        }



        .stat-card {

            background: white;

            padding: 20px 15px;

            border-radius: 10px;

            text-align: center;

            box-shadow: 0 3px 15px rgba(0,0,0,0.08);

            border-left: 4px solid var(--primary-blue);

        }



        .stat-number {

            font-size: 32px;

            font-weight: 700;

            color: var(--primary-blue);

            margin-bottom: 5px;

        }



        .stat-label {

            font-size: 13px;

            color: #666;

            font-weight: 500;

        }



        .service-categories {

            display: flex;

            flex-wrap: wrap;

            gap: 10px;

            margin-top: 20px;

        }



        .category-tag {

            background: white;

            padding: 8px 15px;

            border-radius: 20px;

            font-size: 13px;

            color: var(--dark);

            border: 1px solid #e0e0e0;

            transition: all 0.3s ease;

        }



        .category-tag:hover {

            background: var(--primary-blue);

            color: white;

            border-color: var(--primary-blue);

        }



        .srvTitle span {

            color: var(--blue);

        }



        /* Key Features */

        .unique-key-feature23 {

            display: flex;

            gap: 30px;

            padding: 0;

            list-style: none;

            text-align: center;

            align-items: center;

            justify-content: center;

            margin-top: 20px;

            flex-wrap: wrap;

        }



        .unique-key-feature23 li {

            display: flex;

            flex-direction: column;

            align-items: center;

            gap: 8px;

            font-size: 13px;

            color: var(--dark);

            font-weight: 500;

        }



        .unique-key-feature23 li svg {

            width: 45px;

            height: 45px;

            color: var(--blue);

        }



        /* Testimonials - Premium Editorial Design */

        .reviewBG {

            padding: 40px 0;

            background: #EFECE6;

        }



        .testimonials-outer-card {

            background: white;

            border-radius: 32px;

            padding: 30px;

            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

            max-width: 1400px;

            margin: 0 auto;

            position: relative;

        }



        .testimonials-layout {

            display: grid;

            grid-template-columns: 50% 1fr;

            gap: 30px;

            align-items: start;

        }



        /* Left Column - Feature Panel */

        .testimonials-feature-panel {

            position: relative;

            height: 100%;

            min-height: 400px;

        }



        .testimonials-feature-image {

            position: relative;

            height: 100%;

            border-radius: 24px;

            overflow: visible;

            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

        }



        .testimonials-feature-image img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            border-radius: 24px;

            clip-path: polygon(

                250px 0,

                100% 0,

                100% 100%,

                0 100%,

                0 140px,

                250px 140px

            );

        }



        .testimonials-feature-overlay {

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: transparent;

            display: flex;

            flex-direction: column;

            justify-content: space-between;

            padding: 24px;

            border-radius: 24px;

        }



        .testimonials-feature-headline {

            color: var(--dark);

            font-size: 26px;

            font-weight: 700;

            line-height: 1.3;

            max-width: 240px;

            padding: 0;

            margin: 0;

        }



        .testimonials-trust-badge {

            align-self: flex-end;

            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);

            backdrop-filter: blur(10px);

            border: 1px solid rgba(255, 255, 255, 0.2);

            padding: 12px 20px;

            border-radius: 16px;

            text-align: center;

        }



        .testimonials-trust-number {

            font-size: 28px;

            font-weight: 800;

            color: white;

            margin-bottom: 5px;

        }



        .testimonials-trust-label {

            font-size: 14px;

            color: rgba(255, 255, 255, 0.9);

            font-weight: 500;

            text-transform: uppercase;

            letter-spacing: 1px;

        }



        /* Right Column - Testimonial Cards Stack */

        .testimonials-cards-stack {

            display: flex;

            flex-direction: column;

            gap: 16px;

        }



        .testimonial-card {

            background: white;

            border: 1px solid #e5e7eb;

            border-radius: 24px;

            padding: 20px;

            position: relative;

            transition: all 0.3s ease-out;

        }



        .testimonial-card:hover {

            transform: translateY(-4px);

            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);

        }



        /* Highlighted First Card */

        .testimonial-card.highlighted {

            background: var(--primary-blue);

            border: none;

            color: white;

        }



        .testimonial-card.highlighted .ReviewText {

            color: white;

        }



        .testimonial-card.highlighted .reviewStar {

            color: #fbbf24;

        }



        .testimonial-card.highlighted .authorName,

        .testimonial-card.highlighted .authorTitle {

            color: white;

        }



        .testimonial-card.highlighted .testimonial-arrow {

            color: rgba(255, 255, 255, 0.8);

        }



        .reviewStar {

            display: flex;

            gap: 4px;

            color: #fbbf24;

            margin-bottom: 12px;

        }



        .reviewStar svg {

            width: 18px;

            height: 18px;

        }



        .ReviewText {

            font-size: 15px;

            font-weight: 400;

            line-height: 1.6;

            color: #1f2937;

            margin: 0 0 20px 0;

        }



        .testimonial-footer {

            display: flex;

            align-items: center;

            justify-content: space-between;

        }



        .testimonial-author {

            display: flex;

            align-items: center;

            gap: 14px;

        }



        .testimonial-avatar {

            width: 48px;

            height: 48px;

            border-radius: 50%;

            overflow: hidden;

            border: 2px solid #e5e7eb;

        }



        .testimonial-card.highlighted .testimonial-avatar {

            border-color: rgba(255, 255, 255, 0.3);

        }



        .testimonial-avatar img {

            width: 100%;

            height: 100%;

            object-fit: cover;

        }



        .testimonial-author-info {

            text-align: left;

        }



        .authorName {

            font-weight: 700;

            font-size: 16px;

            margin-bottom: 4px;

            color: #1f2937;

        }



        .authorTitle {

            font-size: 14px;

            color: #6b7280;

        }



        .testimonial-card.highlighted .authorTitle {

            opacity: 0.85;

        }



        .testimonial-arrow {

            width: 32px;

            height: 32px;

            display: flex;

            align-items: center;

            justify-content: center;

            color: var(--primary-blue);

            transition: transform 0.3s ease;

        }



        .testimonial-card:hover .testimonial-arrow {

            transform: translateX(4px);

        }



        .testimonial-arrow svg {

            width: 20px;

            height: 20px;

        }



        /* Responsive Design */

        @media screen and (max-width: 1200px) {

            .testimonials-outer-card {

                padding: 40px;

            }

            

            .testimonials-layout {

                gap: 40px;

            }

            

            .testimonials-feature-headline {

                font-size: 36px;

            }

        }



        @media screen and (max-width: 992px) {

            .testimonials-layout {

                grid-template-columns: 1fr;

                gap: 40px;

            }

            

            .testimonials-feature-panel {

                min-height: 500px;

            }

            

            .testimonials-feature-headline {

                font-size: 32px;

            }

        }



        @media (max-width: 768px) {

            .reviewBG {

                padding: 40px 0;

            }

            

            .testimonials-outer-card {

                padding: 30px 20px;

                border-radius: 24px;

            }

            

            .testimonials-feature-panel {

                min-height: 400px;

            }

            

            .testimonials-feature-overlay {

                padding: 30px;

            }

            

            .testimonials-feature-headline {

                font-size: 28px;

            }

            

            .testimonials-trust-number {

                font-size: 28px;

            }

            

            .testimonial-card {

                padding: 24px;

            }

        }



        /* FAQ & Blog Combined Section - Premium Editorial Design */

        .faq-blog-section {

            padding: 40px 0;

            background: #EFECE6;

        }



        

        /* Blog Column */

        .blog-column {

            background: #f8f8f8;

            border-radius: 24px;

            padding: 30px;

            height: 100%;

        }
        /* Instagram/Category Footer Section */

        .instagram-section {

            padding: 40px 0;

            background: white;

        }



        .CategoryListInFooterTitle h2 {

            font-size: 25px;

            font-weight: 600;

            text-align: center;

            margin-bottom: 25px;

        }



        .CategoryListInFooterTitle h2 span {

            color: var(--primary-blue);

            font-weight: 700;

        }



      

        .OurGroup {

            display: flex;

            align-items: center;

            justify-content: space-between;

            gap: 40px;

            flex-wrap: wrap;

        }



        .TitleBox {

            flex: 1;

        }



        .TitleOfPRDC {

            font-size: 32px;

            font-weight: 700;

            margin-bottom: 10px;

        }



        .InnerOurGroupCLS {

            display: flex;

            gap: 20px;

            flex-wrap: wrap;

        }



        .InnerOurGroupCLS img {

            width: 120px;

            height: auto;

            border-radius: 10px;

            box-shadow: 0 5px 15px rgba(0,0,0,0.1);

        }



        /* Statistics Counter Section */

        .funfact-card {

            transition: transform 0.3s ease;

        }



        .funfact-card:hover {

            transform: translateY(-10px);

        }



        .funfact-icon {

            transition: transform 0.3s ease;

        }



        .funfact-card:hover .funfact-icon {

            transform: scale(1.2) rotate(5deg);

        }



        /* Office Contact Section */

        .contact-info-item {

            transition: transform 0.3s ease;

        }



        .contact-info-item:hover {

            transform: translateX(10px);

        }



        .contact-icon {

            transition: all 0.3s ease;

        }



        .contact-info-item:hover .contact-icon {

            transform: scale(1.1);

            box-shadow: 0 5px 15px rgba(47, 91, 255, 0.3);

        }



        .HighlightAtag:hover {

            color: var(--primary-blue) !important;

        }



        .social-links-1090 a:hover {

            transform: translateY(-5px) scale(1.1);

            box-shadow: 0 5px 15px rgba(47, 91, 255, 0.4);

        }



       



        /* Footer */

        .site-footer {

            background: #1a202c;

            color: white;

            padding: 40px 0 0;

            margin: 0 0 0 0 !important;

        }



        .upper-footer {

            display: grid;

            grid-template-columns: 2fr 1fr 1fr 1fr;

            gap: 40px;

            margin-bottom: 30px;

        }



        .widget-title h3 {

            font-size: 18px;

            margin-bottom: 20px;

        }



        .contact-widget ul {

            list-style: none;

        }



        .contact-widget li {

            margin-bottom: 12px;

            color: rgba(255,255,255,0.7);

        }



        /* Mobile Fix - Footer Links Visibility */

        .contact-widget a,

        .link-widget a,

        .footer-widget a {

            color: rgba(255,255,255,0.8);

            text-decoration: none;

            transition: all 0.3s ease;

        }



        .contact-widget a:hover,

        .link-widget a:hover,

        .footer-widget a:hover {

            color: #2F5BFF;

            padding-left: 5px;

        }



        .lower-footer {

            text-align: center;

            padding-top: 30px;

            border-top: 1px solid rgba(255,255,255,0.1);

            color: rgba(255,255,255,0.5);

            margin-bottom: 0;

        }



        /* Responsive */

        @media (max-width: 992px) {

            /* Removed conflicting flex rule for horizontal scroll */

            

            .ServicesCard {

                width: 50%;

            }

            

            .upper-footer {

                grid-template-columns: 1fr 1fr;

            }

        }



        /* Mobile Fix - Responsive Media Queries */

        @media (max-width: 1200px) {

            /* .container {

                padding: 0 15px;

            } */



            .platform-hero-wrapper {

                grid-template-columns: 1fr;

                gap: 50px;

                padding: 60px 30px;

            }



            .platform-text-content {

                padding-right: 0;

                text-align: center;

                order: 1;

            }



            .platform-images-grid {

                order: 2;

            }



            .platform-hero-title,

            .platform-hero-subtitle,

            .platform-hero-description {

                text-align: center;

            }



            .platform-cta-buttons {

                justify-content: center;

            }



            .platform-hero-title {

                font-size: 48px;

            }



            .platform-hero-subtitle {

                font-size: 28px;

            }



            .platform-images-grid {

                height: 500px;

                margin: 0 auto;

                max-width: 100%;

            }



            /* Removed conflicting flex rule for services cards */



            .SecImgHolder {

                flex-direction: column;

            }



            .ManagementExperts {

                width: 100%;

                min-height: 300px;

            }



            /* Mobile Fix - Brand Cards */

            .brand-cards-grid {

                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));

            }

        }



        @media (max-width: 992px) {

            /* Mobile Fix - Top Header */

            .tp-header-top-info {

                flex-direction: column;

                gap: 10px;

                text-align: center;

            }



            .CallNmail {

                margin-right: 0;

                font-size: 13px;

            }



            /* Mobile Fix - Disable hover-only effects on touch devices */

            @media (hover: none) {

                .gallery-card:hover .gallery-thumb img,

                .platform-image-item:hover img {

                    /*transform: none;*/

                }



                .brand-card:hover img {

                    /*filter: grayscale(0%);*/

                    opacity: 1;

                }

            }



            /* Mobile Fix - Navigation */

            .mobile-menu-toggle {

                display: flex;

                z-index: 1002;

                position: relative;

            }



            .navbar-nav {

                position: fixed;

                top: 0;

                right: -100%;

                width: 280px;

                height: 100vh;

                background: white;

                flex-direction: column;

                padding: 80px 0 30px;

                gap: 0;

                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);

                transition: right 0.3s ease;

                z-index: 1001;

                overflow-y: auto;

            }



            .navbar-nav.active {

                right: 0;

            }



            .navbar-nav li {

                width: 100%;

            }



            .navbar-nav li a {

                display: block;

                padding: 15px 30px;

                border-bottom: 1px solid #f0f0f0;

                font-size: 16px;

            }



            .navbar-nav li a:hover {

                background: #f8f9fa;

            }



            /* Mobile Dropdown */

            .dropdown-menu {

                position: static;

                opacity: 1;

                visibility: visible;

                transform: none;

                box-shadow: none;

                border-radius: 0;

                padding: 0;

                margin: 0;

                background: #f8fafc;

                display: none;

            }



            .navbar-nav li:hover .dropdown-menu {

                display: block;

            }



            .dropdown-menu li a {

                padding: 12px 30px 12px 50px;

                font-size: 14px;

                border-bottom: 1px solid #e5e7eb;

            }



            .dropdown-menu li a:hover {

                background: #e0e7ff;

                padding-left: 55px;

            }



            /* Mobile Fix - Ensure touch targets are at least 44px */

            .navbar-nav li a,

            .book-artist-btn,

            button,

            .quick-reply-btn,

            .category-tag {

                min-height: 44px;

                display: inline-flex;

                align-items: center;

                justify-content: center;

            }



            /* Mobile Fix - Hero Section */

            .Hero710 {

                min-height: 500px;

            }



            .itemParent {

                min-height: 500px;



            }



            .herodataitm {

                padding: 60px 0;

            }



            .HeroInner710 {

                padding: 2px 0;

            }



            .keywords710 {

                font-size: 16px;

                padding: 12px 18px;

            }



            .HerTitle710 {

                font-size: 36px;

            }



            .HeaderParagraph710 {

                font-size: 18px;

            }



            .MainButtonBox710 {

                flex-direction: column;

                gap: 15px;

            }



            .herbtn1_710,

            .herbtn2_710 {

                width: 100%;

                justify-content: center;

                padding: 10px 20px;

                font-size: 15px;

            }



            /* Mobile Fix - Corporate Section */

            .corporate-intro h2 {

                font-size: 28px;

            }



            .corporate-intro p {

                font-size: 15px;

            }



            /* Mobile Fix - Gallery Cards */

            /* .filter-gallery .col-lg-6,

            .filter-gallery .col-lg-3 {

                flex: 0 0 100%;

                max-width: 100%;

            } */



            .gallery-card {

                height: 100%;

            }



            /* Mobile Fix - Services Grid - Horizontal Scroll Active */

            .servicesSection {

                min-height: auto;

                margin: 15px 0;

                padding: 25px 20px !important;

            }



            /* Mobile Fix - About Section */

            .section-padding.RightAfter.target-area {

                padding: 40px 0;

            }



            .SecImgHolder {

                gap: 20px;

            }



            .section-title h2 {

                font-size: 28px;

            }



            .aboutFeaturesNew {

                gap: 30px 0;

            }



            .ServicesCard {

                width: 100%;

            }



            /* Mobile Fix - Platform Section */

            .platform-hero-title {

                font-size: 36px;

            }



            .platform-hero-subtitle {

                font-size: 24px;

            }



            /* Platform images grid - use earlier 2x2 grid styles */

            .platform-images-grid {

                position: relative;

                height: auto;

                padding: 0;

                display: grid;

                grid-template-columns: repeat(2, 1fr);

                gap: 12px;

            }



            .platform-image-item {

                position: relative !important;

                width: 100% !important;

                height: auto !important;

                aspect-ratio: 1 / 1 !important;

                border-radius: 12px !important;

                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;

                border: none !important;

                top: auto !important;

                left: auto !important;

                right: auto !important;

                bottom: auto !important;

                transform: none !important;

                z-index: 1 !important;

                display: block !important;

            }



            .platform-cta-buttons {

                flex-direction: column;

            }



            /* Mobile Fix - Testimonials */

            .testimonials-layout {

                grid-template-columns: 1fr;

                gap: 30px;

            }



            .testimonials-feature-panel {

                min-height: 350px;

            }



            /* Mobile Fix - FAQ & Blog */

            .faq-blog-layout {

                grid-template-columns: 1fr;

                gap: 30px;

            }



            .faq-column,

            .blog-column {

                padding: 25px;

            }



            /* Mobile Fix - Footer */

            .upper-footer {

                grid-template-columns: 1fr 1fr;

                gap: 40px;

            }



            /* Mobile Fix - Partners Grid */

            .partners-grid {

                grid-template-columns: repeat(4, 1fr);

                gap: 10px;

                padding: 15px 0;

            }



            .SliderLogos {

                height: 70px;

                padding: 12px;

            }



        @media (max-width: 768px) {

            /* Mobile Fix - Hero */

            .Hero710 {

                min-height: 500px;

            }
.HeaderParagraph710 {
   
    margin: 0 10px;
}




            .itemParent {

                min-height: 500px;

            }



            .herodataitm {

                padding: 0px 0;

                min-height: 100%;

            }



            /* Mobile - Change background images for better mobile display */

            .herodataitm::after {

                background-size: cover;

                background-position: center center;

                width: 100%;

                height: 100%;

                object-fit: cover;

            }



          





            .HerTitle710 {

                font-size: 31px;

            }



            .HeaderParagraph710 {

                font-size: 16px;
                


            }



            .keywords710 {

                font-size: 14px;

                padding: 10px 16px;

            }



            /* Mobile - Hero buttons should be smaller, not full width */

            .MainButtonBox710 {

                flex-direction: column;

                gap: 15px;

                align-items: center;
margin-top: 15px;

            }



            .herbtn1_710,

            .herbtn2_710 {

                width: auto;

                max-width: 220px;

                padding: 2px 2px 2px 16px;

                font-size: 13px;

            }



            .herobtnIcon {

                width: 32px;

                height: 32px;

            }



            /* Mobile Fix - Section Titles */

            .section-title h2,

            .srvTitle {

                font-size: 31px;

            }



            .section-titleh3 h3 {

                font-size: 28px;

            }



            /* Mobile Fix - Images - Ensure they don't overflow */

            img {

                max-width: 100%;

                height: auto;

            }



            .SliderLogos,

            .brand-card img,

            .gallery-thumb img {

                width: 100%;

                object-fit: contain;

            }



            /* Mobile Fix - Platform Section */

            .platform-hero-wrapper {

                padding: 40px 20px;

            }



            .platform-hero-title {

                font-size: 32px;

            }



            .platform-hero-subtitle {

                font-size: 20px;

            }



            .platform-hero-description {

                font-size: 15px;

            }



            .platform-cta-btn {

                padding: 10px 24px;

                font-size: 14px;

            }



            /* Mobile Fix - Platform Images Grid */

            .platform-images-grid {

                height: 320px;

                position: relative;

                margin: 0 auto;

            }



            .platform-image-item.hero-large {

                width: 145px;

                height: 240px;

                left: 50%;

                top: 50%;

                transform: translate(-50%, -50%);

            }



            .platform-cta-buttons {

                flex-direction: column;

                width: 100%;

                gap: 10px;

            }



            .platform-cta-btn {

                width: 100%;

                max-width: 280px;

                justify-content: center;

                padding: 11px 24px;

            }



            .platform-image-item.circle-1 {

                width: 95px;

                height: 95px;

                top: 25px;

                right: 25px;

            }



            .platform-image-item.circle-2 {

                width: 75px;

                height: 75px;

                bottom: 75px;

                right: 135px;

            }



            .platform-image-item.square-medium {

                width: 125px;

                height: 115px;

                top: 130px;

                left: 125px;

            }



            .platform-image-item.portrait-small {

                width: 90px;

                height: 120px;

                bottom: 25px;

                left: 180px;

            }



            .platform-image-item.wide-horizontal {

                width: 160px;

                height: 90px;

                top: auto;

                bottom: 15px;

                right: 15px;

            }

                /* right: 140px; */

            }



            .platform-image-item.square-medium {

                width: 140px;

                height: 130px;

                top: 140px;

                left: 140px;

            }



            .platform-image-item.portrait-small {

                width: 100px;

                height: 140px;

                bottom: 20px;

                left: 200px;

            }



            .platform-image-item.wide-horizontal {

                width: 180px;

                height: 100px;

                top: auto;

                bottom: 10px;

                right: 10px;

            }



            .accent-line {

                display: none;

            }



            /* Mobile Fix - About Section */

            .ManagementExperts {

                min-height: 250px;
                display: none;

            }



            .ServicesParagraph {

                font-size: 15px;

            }



            /* Mobile Fix - Services - Adjust card width for smaller screens */

            .CSTMNew26row {

                gap: 15px !important;

                padding-left: 0 !important;

                padding-right: 0 !important;

                margin: 0 !important;

            }



            .CSTMNew26row .col-lg-4 {

                flex: 0 0 280px !important;

                min-width: 280px !important;

                max-width: 280px !important;

                scroll-snap-align: start !important;

            }



            .servicesSection {

                border-radius: 20px;

                transform: none !important;

            }



            .servicesSection:hover {

                transform: none !important;

            }



            .servicesSection:hover .svgIcon {

                transform: none !important;

            }



            .servicesSection:hover .imgDiv::before {

                transform: rotate(45deg) !important;

            }



            /* Mobile Fix - Testimonials */

            .testimonials-outer-card {

                padding: 25px 20px;

            }



            .testimonials-feature-panel {

                min-height: 300px;

            }



            /* Mobile - Add dark overlay for better text visibility */

            .testimonials-feature-overlay {

                background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.75) 100%);

                padding: 30px 20px;

            }



            .testimonials-feature-headline {

                font-size: 24px;

                color: white !important;

                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

                max-width: 100%;

            }



            .testimonials-trust-badge {

                background: linear-gradient(135deg, rgba(47, 91, 255, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);

                backdrop-filter: blur(10px);

                border: 2px solid rgba(255, 255, 255, 0.3);

            }



            /* Mobile Fix - Remove clip-path on mobile for better display */

            .testimonials-feature-image img {

                clip-path: none;

                border-radius: 20px;

            }



            .testimonial-card {

                padding: 20px;

            }



            /* Mobile Fix - FAQ & Blog */

            .faq-blog-outer-card {

                padding: 25px 20px;

            }



            .faq-column,

            .blog-column {

                padding: 20px;

                border-radius: 16px;

            }



            .faq-header h3,

            .blog-header h3 {

                font-size: 24px;

            }



            /* Mobile Fix - Footer */

            .upper-footer {

                grid-template-columns: 1fr;

                gap: 30px;

            }



            /* Mobile Fix - Partners */

            .partners-grid {

                grid-template-columns: repeat(4, 1fr);

                gap: 8px;

            }



            .SliderLogos {

                height: 60px;

                padding: 10px;

            }

        }



        @media (max-width: 576px) {

            /* Mobile Fix - General */

            /* .container {

                padding: 0 12px;

            } */



            .section-padding {

                padding: 30px 0;

            }



            /* Mobile Fix - Navigation */

            .navbar-brand img {

                height: 40px;

            }



            .navbar-default {

                padding: 12px 0;

            }



            .navbar-nav {

                width: 260px;

                padding: 70px 0 20px;

            }



            .navbar-nav li a {

                padding: 12px 20px;

                font-size: 15px;

            }



            /* Mobile Fix - Hero */

            .HerTitle710 {

                font-size: 31px;

            }



            .HeaderParagraph710 {

                font-size: 16px;
                line-height: 1.5;


            }



            .herbtn1_710,

            .herbtn2_710 {

                font-size: 14px;

                padding: 8px 18px;

            }



            /* Mobile Fix - Section Titles */

            .section-title h2,

            .srvTitle {

                font-size: 31px;

            }



            .corporate-intro h2 {

                font-size: 24px;

            }



            /* Mobile Fix - Gallery */

            .gallery-card {

                height: 220px;

            }



            .gallery-title {

                font-size: 16px;

            }



            /* Mobile Fix - Services - Smaller cards for 576px */

            .CSTMNew26row {

                gap: 12px !important;

            }



            .CSTMNew26row .col-lg-4 {

                flex: 0 0 260px !important;

                min-width: 260px !important;

                max-width: 260px !important;

            }



            .servicesSection {

                padding: 20px 15px !important;

                border-radius: 16px;

                transform: none !important;

            }



            .servicesSection:hover {

                transform: none !important;

            }



            .servicesSection:hover .svgIcon {

                transform: none !important;

            }



            .servicesSection:hover .imgDiv::before {

                transform: rotate(45deg) !important;

            }



            .newServiceTitle {

                font-size: 16px;

            }



            .serviceParagraph {

                font-size: 13px;

            }



            /* Mobile Fix - Platform Section */

            .platform-hero-title {

                font-size: 28px;

            }



            .platform-hero-subtitle {

                font-size: 18px;

            }



            .platform-hero-description {

                font-size: 14px;

            }



            .platform-cta-btn {

                padding: 9px 20px;

                font-size: 13px;

                max-width: 260px;

            }



            /* Mobile Fix - Platform Images - Optimize for very small screens */

            .platform-images-grid {

                height: 280px;

            }



            .platform-image-item.hero-large {

                width: 120px;

                height: 200px;

                left: 50%;

                top: 50%;

                transform: translate(-50%, -50%);

            }



            .platform-image-item.circle-1 {

                width: 75px;

                height: 75px;

                top: 20px;

                right: 20px;

            }



            .platform-image-item.circle-2 {

                width: 60px;

                height: 60px;

                bottom: 55px;

                right: 90px;

            }



            .platform-image-item.square-medium {

                width: 95px;

                height: 88px;

                top: 105px;

                left: 100px;

            }



            .platform-image-item.portrait-small {

                width: 70px;

                height: 95px;

                left: 135px;

                bottom: 20px;

            }



            .platform-image-item.wide-horizontal {

                width: 130px;

                height: 75px;

                bottom: 10px;

                right: 10px;

            }



            /* Mobile Fix - About */

            .ServicesCard {

                gap: 15px;

            }



            .Magazine {

                width: 60px;

                height: 60px;

            }



            .ServicesCard h3 {

                font-size: 18px;

            }



            /* Mobile Fix - Testimonials */

            .testimonials-outer-card {

                padding: 20px 15px;

                border-radius: 20px;

            }



            /* Mobile - Stronger overlay for better visibility */

            .testimonials-feature-overlay {

                background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);

                padding: 25px 15px;

            }



            .testimonials-feature-headline {

                font-size: 20px;

                max-width: 100%;

                color: white !important;

                text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);

                font-weight: 800;

            }



            .testimonials-trust-number {

                font-size: 32px;

                font-weight: 900;

                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

            }



            .testimonials-trust-label {

                font-size: 13px;

                font-weight: 600;

            }



            .ReviewText {

                font-size: 14px;

            }



            .authorName {

                font-size: 15px;

            }



            .authorTitle {

                font-size: 13px;

            }



            /* Mobile Fix - FAQ & Blog */

            .faq-blog-outer-card {

                padding: 20px 15px;

            }



            .faq-column,

            .blog-column {

                padding: 15px;

            }



            .faq-header h3,

            .blog-header h3 {

                font-size: 20px;

            }



            .faq-question {

                font-size: 15px;

            }



            .faq-answer {

                font-size: 13px;

            }



            .blog-post-title {

                font-size: 15px;

            }



            .blog-post-excerpt {

                font-size: 13px;

            }



            /* Mobile Fix - Partners */

            .partners-grid {

                grid-template-columns: repeat(4, 1fr);

                gap: 6px;

            }



            .SliderLogos {

                height: 55px;

                padding: 8px;

            }



            /* Mobile Fix - Stats */

            .funfact-number {

                font-size: 28px !important;

            }



            .funfact-title {

                font-size: 13px !important;

            }

        }



        @media (max-width: 480px) {

            /* Mobile Fix - Extra small devices */

            /* .container {

                padding: 0 10px;

            } */



            /* Mobile Fix - Hero */

            .HerTitle710 {

                font-size: 31px;

            }



            .HeaderParagraph710 {

                font-size: 16px;
                line-height: 1.5;

            }



            .keywords710 {

                font-size: 12px;

                padding: 8px 14px;

            }



            /* Mobile Fix - Section Titles */

            .section-title h2,

            .srvTitle {

                font-size: 28px;

            }



            .corporate-intro h2 {

                font-size: 22px;

            }



            /* Mobile Fix - Gallery */

            .gallery-card {

                height: 200px;
                margin: 0 22px;

            }



            /* Mobile Fix - Platform */

            .platform-hero-title {

                font-size: 28px;

            }



            .platform-hero-subtitle {

                font-size: 16px;

            }



            /* Mobile Fix - Platform Images - Simplified for very small screens */

            .platform-images-grid {

                height: 240px;

            }



            .platform-image-item.hero-large {

                width: 110px;

                height: 180px;

            }



            .platform-image-item.circle-1 {

                width: 75px;

                height: 75px;

            }



            .platform-image-item.circle-2,

            .platform-image-item.portrait-small,

            .platform-image-item.wide-horizontal {

                display: none;

            }



            .platform-image-item.square-medium {

                width: 100px;

                height: 90px;

                top: 100px;

                left: 90px;

            }



            /* Mobile Fix - Testimonials */

            .testimonials-feature-panel {

                min-height: 250px;

            }



            .testimonials-feature-headline {

                font-size: 18px;

            }



            /* Mobile Fix - Chatbot */

            #chatbot-window {

                width: calc(100vw - 20px);

                height: calc(100vh - 80px);

                max-height: 550px;

            }



            #chatbot-button {

                width: 50px;

                height: 50px;

                font-size: 20px;

            }



            /* Mobile Fix - Popup */

            .popup-box-enhanced {

                width: 100%;

                max-height: 90vh;

                border-radius: 16px;

            }



            /* .popup-header-enhanced {

                padding: 18px 15px 14px;

            }



            .popup-title-enhanced {

                font-size: 22px;

                margin-bottom: 6px;

            }



            .popup-description-enhanced {

                font-size: 13px;

                margin-bottom: 10px;

            }

            

            .popup-badges-enhanced {

                gap: 6px;

            }

            

            .badge-enhanced {

                padding: 5px 10px;

                font-size: 11px;

            }



            .popup-form-side {

                padding: 18px 15px;

                max-height: calc(90vh - 130px);

            }

            

            .form-row-enhanced {

                margin-bottom: 12px;

                gap: 12px;

            }

            

            .form-group-enhanced.full-width {

                margin-bottom: 12px;

            }

            

            .form-label-enhanced {

                font-size: 13px;

                margin-bottom: 5px;

            }



            .form-control-enhanced {

                padding: 9px 12px;

                font-size: 13px;

            }

            

            textarea.form-control-enhanced {

                min-height: 70px;

            }



            .submit-btn-enhanced {

                padding: 12px 18px;

                font-size: 14px;

                margin-bottom: 10px;

            }*/

        } 



        /* Top Bar Styles */

        .top-bar {

            background: linear-gradient(135deg, #2F5BFF 0%, #1e40af 100%);

            color: white;

            padding: 14px 0;

            font-size: 14px;

            position: relative;

            z-index: 1001;

        }



        .top-bar-content {

            display: flex;

            justify-content: space-between;

            align-items: center;

            flex-wrap: wrap;

            gap: 15px;

        }



        .top-bar-left {

            display: flex;

            align-items: center;

            gap: 25px;

            flex-wrap: wrap;

        }



        .top-bar-item {

            display: flex;

            align-items: center;

            gap: 8px;

            color: white;

            text-decoration: none;

            transition: opacity 0.3s;

        }



        .top-bar-item:hover {

            opacity: 0.8;

            color: white;

        }



        .top-bar-item i {

            font-size: 14px;

        }



        .top-bar-right {

            display: flex;

            align-items: center;

            gap: 15px;

        }



        .top-bar-social {

            display: flex;

            gap: 12px;

            align-items: center;

        }



        .top-bar-social a {

            color: white;

            width: 28px;

            height: 28px;

            display: flex;

            align-items: center;

            justify-content: center;

            background: rgba(255, 255, 255, 0.15);

            border-radius: 50%;

            transition: all 0.3s;

            text-decoration: none;

        }



        .top-bar-social a:hover {

            background: rgba(255, 255, 255, 0.3);

            transform: translateY(-2px);

        }



        @media (max-width: 768px) {

            .top-bar {

                padding: 8px 0;

                font-size: 12px;

            }



            .top-bar-content {

                justify-content: center;

                gap: 10px;

            }



            .top-bar-left {

                gap: 15px;

            }



            .top-bar-item {

                font-size: 12px;

            }



            .top-bar-social {

                gap: 8px;

            }



            .top-bar-social a {

                width: 24px;

                height: 24px;

                font-size: 12px;

            }

        }



        @media (max-width: 480px) {

            .top-bar-left {

                flex-direction: row;
 

                align-items: center;

                width: 100%;
                justify-content: space-between;

            }



            .top-bar-right {

                width: 100%;

                justify-content: center;

            }

        }


#chatbot-container {

            position: fixed;

            bottom: 20px;

            right: 20px;

            z-index: 9999;

            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

        }



        #chatbot-button {

            width: 60px;

            height: 60px;

            border-radius: 50%;

            background: #2F5BFF;

            color: white;

            display: flex;

            align-items: center;

            justify-content: center;

            cursor: pointer;

            box-shadow: 0 4px 12px rgba(47, 91, 255, 0.3);

            transition: all 0.3s ease;

            font-size: 24px;

        }



        #chatbot-button:hover {

            transform: scale(1.1);

            box-shadow: 0 6px 20px rgba(47, 91, 255, 0.5);

        }



        #chatbot-button.hidden {

            display: none;

        }



        #chatbot-window {

            display: none;

            flex-direction: column;

            width: 380px;

            height: 550px;

            background: white;

            border-radius: 16px;

            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);

            overflow: hidden;

            animation: slideUp 0.3s ease;

        }



        @keyframes slideUp {

            from {

                opacity: 0;

                transform: translateY(20px);

            }

            to {

                opacity: 1;

                transform: translateY(0);

            }

        }



        #chatbot-window.active {

            display: flex;

        }



        #chatbot-header {

            background: #2F5BFF;

            color: white;

            padding: 16px 20px;

            display: flex;

            justify-content: space-between;

            align-items: center;

            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

        }



        .chatbot-header-content {

            display: flex;

            align-items: center;

            gap: 10px;

            font-weight: 600;

            font-size: 16px;

        }



        .chatbot-header-content i {

            font-size: 20px;

        }



        .chatbot-header-actions {

            display: flex;

            gap: 8px;

        }



        .chatbot-header-actions button {

            background: rgba(255, 255, 255, 0.2);

            border: none;

            color: white;

            width: 28px;

            height: 28px;

            border-radius: 50%;

            cursor: pointer;

            display: flex;

            align-items: center;

            justify-content: center;

            transition: all 0.2s ease;

        }



        .chatbot-header-actions button:hover {

            background: rgba(255, 255, 255, 0.3);

        }



        #chatbot-messages {

            flex: 1;

            overflow-y: auto;

            padding: 20px;

            background: #f8f9fa;

            display: flex;

            flex-direction: column;

            gap: 16px;

        }



        #chatbot-messages::-webkit-scrollbar {

            width: 6px;

        }



        #chatbot-messages::-webkit-scrollbar-track {

            background: #f1f1f1;

        }



        #chatbot-messages::-webkit-scrollbar-thumb {

            background: #888;

            border-radius: 3px;

        }



        .chatbot-message {

            display: flex;

            gap: 10px;

            animation: fadeIn 0.3s ease;

        }



        @keyframes fadeIn {

            from {

                opacity: 0;

                transform: translateY(10px);

            }

            to {

                opacity: 1;

                transform: translateY(0);

            }

        }



        .message-avatar {

            width: 32px;

            height: 32px;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            flex-shrink: 0;

            font-size: 16px;

        }



        .bot-message .message-avatar {

            background: #2F5BFF;

            color: white;

        }



        .user-message {

            flex-direction: row-reverse;

        }



        .user-message .message-avatar {

            background: #e9ecef;

            color: #495057;

        }



        .message-content {

            max-width: 70%;

            padding: 12px 16px;

            border-radius: 12px;

            line-height: 1.5;

            font-size: 14px;

        }



        .bot-message .message-content {

            background: white;

            color: #333;

            border-bottom-left-radius: 4px;

            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);

        }



        .user-message .message-content {

            background: #2F5BFF;

            color: white;

            border-bottom-right-radius: 4px;

        }



        .message-content p {

            margin: 0 0 8px 0;

        }



        .message-content p:last-child {

            margin-bottom: 0;

        }



        .typing-indicator {

            display: flex;

            gap: 4px;

            padding: 12px 16px;

        }



        .typing-indicator span {

            width: 8px;

            height: 8px;

            border-radius: 50%;

            background: #999;

            animation: typing 1.4s infinite;

        }



        .typing-indicator span:nth-child(2) {

            animation-delay: 0.2s;

        }



        .typing-indicator span:nth-child(3) {

            animation-delay: 0.4s;

        }



        @keyframes typing {

            0%, 60%, 100% {

                transform: translateY(0);

                opacity: 0.7;

            }

            30% {

                transform: translateY(-10px);

                opacity: 1;

            }

        }



        #chatbot-quick-replies {

            padding: 12px 20px;

            display: flex;

            gap: 8px;

            flex-wrap: wrap;

            background: white;

            border-top: 1px solid #e9ecef;

        }



        .quick-reply-btn {

            padding: 8px 14px;

            background: #f8f9fa;

            border: 1px solid #dee2e6;

            border-radius: 20px;

            font-size: 13px;

            color: #495057;

            cursor: pointer;

            transition: all 0.2s ease;

            white-space: nowrap;

        }



        .quick-reply-btn:hover {

            background: #2F5BFF;

            color: white;

            border-color: #2F5BFF;

        }



        #chatbot-input-area {

            display: flex;

            padding: 16px 20px;

            background: white;

            border-top: 1px solid #e9ecef;

            gap: 10px;

        }



        #chatbot-input {

            flex: 1;

            padding: 12px 16px;

            border: 1px solid #dee2e6;

            border-radius: 24px;

            font-size: 14px;

            outline: none;

            transition: all 0.2s ease;

        }



        #chatbot-input:focus {

            border-color: #2F5BFF;

            box-shadow: 0 0 0 3px rgba(47, 91, 255, 0.1);

        }



        #chatbot-send {

            width: 44px;

            height: 44px;

            border-radius: 50%;

            background: #2F5BFF;

            color: white;

            border: none;

            cursor: pointer;

            display: flex;

            align-items: center;

            justify-content: center;

            transition: all 0.2s ease;

            font-size: 16px;

        }



        #chatbot-send:hover {

            transform: scale(1.05);

            box-shadow: 0 2px 8px rgba(47, 91, 255, 0.4);

        }



        #chatbot-send:active {

            transform: scale(0.95);

        }



        @media (max-width: 480px) {

            #chatbot-window {

                width: calc(100vw - 40px);

                height: calc(100vh - 100px);

                max-height: 600px;

            }

        }


/* Overlay */

        .popup-overlay-enhanced {

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background-color: rgba(0, 0, 0, 0);

            backdrop-filter: blur(0px);

            display: flex;

            align-items: center;

            justify-content: center;

            z-index: -1;

            opacity: 0;

            transition: all 0.3s ease;

        }



        .popup-overlay-enhanced.active {

            background-color: rgba(0, 0, 0, 0.7);

            backdrop-filter: blur(8px);

            z-index: 10000;

            opacity: 1;

        }



        /* Popup Box */

        .popup-box-enhanced {

            position: relative;

            display: grid;

            grid-template-columns: 1fr;

            grid-template-rows: auto 1fr;

            width: 95%;

            max-width: 1100px;

            max-height: 90vh;

            background: white;

            border-radius: 20px;

            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

            overflow: hidden;

            transform: scale(0.9) translateY(-20px);

            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

        }



        .popup-overlay-enhanced.active .popup-box-enhanced {

            transform: scale(1) translateY(0);

        }



        /* Close Button */

        .popup-close-enhanced {

            position: absolute;

            top: 15px;

            right: 15px;

            width: 35px;

            height: 35px;

            display: flex;

            align-items: center;

            justify-content: center;

            background: #ef4444;

            color: white;

            border: none;

            border-radius: 50%;

            cursor: pointer;

            z-index: 10;

            transition: all 0.3s ease;

            box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);

        }



        .popup-close-enhanced:hover {

            background: #dc2626;

            transform: rotate(90deg) scale(1.1);

        }



        /* Header */

        .popup-header-enhanced {

            padding: 25px 30px 20px;

            background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);

            border-bottom: 2px solid #e5e7eb;

        }



        .popup-title-enhanced {

            font-size: 28px;

            font-weight: 800;

            color: #1e293b;

            margin: 0 0 8px 0;

            line-height: 1.2;

        }



        .highlight-enhanced {

            color: #ef4444;

            position: relative;

        }



        .popup-description-enhanced {

            font-size: 15px;

            color: #64748b;

            margin: 0 0 12px 0;

            line-height: 1.5;

        }



        .popup-badges-enhanced {

            display: flex;

            gap: 8px;

            flex-wrap: wrap;

        }



        .badge-enhanced {

            display: inline-flex;

            align-items: center;

            padding: 6px 12px;

            background: white;

            color: #1e293b;

            font-size: 12px;

            font-weight: 600;

            border-radius: 25px;

            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

        }



        /* Content */

        .popup-content-enhanced {

            display: grid;

            grid-template-columns: 1.3fr 1fr;

            gap: 0;

            overflow: hidden;

        }



        /* Form Side */

        .popup-form-side {

            padding: 25px 30px;

            overflow-y: auto;

            max-height: calc(90vh - 180px);

        }



        .popup-form-side::-webkit-scrollbar {

            width: 6px;

        }



        .popup-form-side::-webkit-scrollbar-thumb {

            background: #cbd5e1;

            border-radius: 3px;

        }



        .form-row-enhanced {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 15px;

            margin-bottom: 15px;

        }



        .form-group-enhanced {

            display: flex;

            flex-direction: column;

        }



        .form-group-enhanced.full-width {

            grid-column: 1 / -1;

            margin-bottom: 15px;

        }



        .form-label-enhanced {

            font-size: 14px;

            font-weight: 600;

            color: #1e293b;

            margin-bottom: 6px;

        }



        .required-enhanced {

            color: #ef4444;

        }



        .form-control-enhanced {

            width: 100%;

            padding: 10px 14px;

            font-size: 14px;

            color: #1e293b;

            background: #f8fafc;

            border: 2px solid #e2e8f0;

            border-radius: 8px;

            outline: none;

            transition: all 0.3s ease;

        }



        .form-control-enhanced:focus {

            background: white;

            border-color: #2F5BFF;

            box-shadow: 0 0 0 3px rgba(47, 91, 255, 0.1);

        }



        textarea.form-control-enhanced {

            resize: vertical;

            min-height: 80px;

        }



        .submit-btn-enhanced {

            width: 100%;

            padding: 14px 24px;

            background: #2F5BFF;

            color: white;

            font-size: 15px;

            font-weight: 700;

            border: none;

            border-radius: 10px;

            cursor: pointer;

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 10px;

            transition: all 0.3s ease;

            box-shadow: 0 4px 14px rgba(47, 91, 255, 0.4);

            margin-bottom: 12px;

        }



        .submit-btn-enhanced:hover {

            background: #1e40af;

            transform: translateY(-2px);

            box-shadow: 0 6px 20px rgba(47, 91, 255, 0.5);

        }



        .submit-btn-enhanced:active {

            transform: translateY(0);

        }



        .form-note-enhanced {

            text-align: center;

            font-size: 13px;

            color: #64748b;

            margin: 0;

        }



        /* Image Side */

        .popup-image-side {

            background: linear-gradient(135deg, #2F5BFF 0%, #1e40af 100%);

            padding: 30px 25px;

            display: flex;

            align-items: center;

            justify-content: center;

        }



        .popup-image-overlay {

            width: 100%;

        }



        .popup-features {

            display: flex;

            flex-direction: column;

            gap: 18px;

        }



        .feature-item-popup {

            display: flex;

            gap: 14px;

            align-items: flex-start;

            background: rgba(255, 255, 255, 0.1);

            padding: 16px;

            border-radius: 12px;

            backdrop-filter: blur(10px);

            border: 1px solid rgba(255, 255, 255, 0.2);

            transition: all 0.3s ease;

        }



        .feature-item-popup:hover {

            background: rgba(255, 255, 255, 0.15);

            transform: translateX(5px);

        }



        .feature-icon-popup {

            font-size: 28px;

            line-height: 1;

        }



        .feature-text-popup h4 {

            color: white;

            font-size: 16px;

            font-weight: 700;

            margin: 0 0 4px 0;

        }



        .feature-text-popup p {

            color: rgba(255, 255, 255, 0.9);

            font-size: 13px;

            margin: 0;

            line-height: 1.4;

        }



        /* Responsive */

        @media (max-width: 992px) {

            .popup-content-enhanced {

                grid-template-columns: 1fr;

            }



            .popup-image-side {

                display: none;

            }



            .popup-box-enhanced {

                width: 95%;

                max-height: 85vh;

            }



            .popup-header-enhanced {

                padding: 25px 25px 20px;

            }



            .popup-title-enhanced {

                font-size: 28px;

            }



            .popup-description-enhanced {

                font-size: 16px;

            }



            .popup-form-side {

                padding: 25px;

            }



            .form-row-enhanced {

                grid-template-columns: 1fr;

                gap: 15px;

            }

        }



        @media (max-width: 576px) {

            .popup-header-enhanced {

                padding: 20px 20px 15px;

            }



            .popup-title-enhanced {

                font-size: 24px;

            }



            .popup-description-enhanced {

                font-size: 15px;

            }



            .popup-badges-enhanced {

                gap: 8px;

            }



            .badge-enhanced {

                font-size: 12px;

                padding: 6px 12px;

            }



            .popup-form-side {

                padding: 20px;

            }

        }


  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;500;700;800;900;1000&display=swap');

/* Section scope – nothing leaks outside */
.aa-card-section {
    background-color: #181a1f;
    padding: 50px 20px;
    font-family: 'Nunito', sans-serif;
}

.aa-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.aa-section-header {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
}

.aa-section-tag {
    display: inline-block;
    color: rgb(239, 68, 68);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.aa-section-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
}

.aa-section-title span {
    color: rgb(239, 68, 68);
}

.aa-section-desc {
    margin-top: 10px;
    font-size: 14px;
    color: #b9b9b9;
}


.aa-parent {
    /*height: 400px;*/
    height: 100%;
    width: 300px;
    padding: 20px;
    perspective: 1000px;
}

.aa-card {
    padding-top: 100px;
    transform-style: preserve-3d;
    background-image: url("https://files.revneo.com/haziq/gold.jpg");
    background-position: center;
    background-size: cover;
    width: 100%;
    transition: all 0.5s ease-in-out;
    border-radius: 10px;
}

.aa-card:hover {
    background-position: 80% 20%;
    transform: rotate3d(0.5, 1, 0, 30deg);
}

.aa-content-box {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.811);
    border-radius: 0 0 10px 10px;
    box-shadow: rgba(239, 68, 68, 0.925) 0 20px 50px -25px;
    padding: 15px 25px 25px;
    transition: all 0.5s ease-in-out;
    transform-style: preserve-3d;
}

.aa-card-title {
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    transform: translate3d(0, 0, 20px);
}

.aa-card-content {
    padding-top: 15px;
    font-size: 12px;
    color: #b9b9b9;
    transform: translate3d(0, 0, 20px);
}

.aa-see-more {
    background: none;
    border: none;
    padding-top: 15px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    color: rgb(239, 68, 68);
    cursor: pointer;
    transform: translate3d(0, 0, 20px);
}

.aa-date-box {
    position: absolute;
    top: 75px;
    left: 25px;
    height: 60px;
    width: 60px;
    background: #000;
    border-radius: 10px;
    padding: 10px;
    box-shadow: rgb(239, 68, 68) 0 20px 60px;
    transform: translate3d(0, 0, 50px);
}

.aa-date-box span {
    display: block;
    text-align: center;
}

.aa-month {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.aa-date {
    font-size: 20px;
    font-weight: 900;
    color: rgb(239, 68, 68);
}

.aa-card2,
.aa-card3,
.aa-card4 {
    filter: none;
}


/* blog */
    .arti-body {
            /* background-color: #f8f9fa; */
            /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
        }

        /* Blog Section Title */
.blog-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
}

.blog-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* View Blog Button */
.view-blog-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #111;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.view-blog-btn:hover {
    /* background: #4f46e5; */
    color: #fff;
    transform: translateY(-2px);
}


        /* --- Main Featured Card Styles --- */
        .featured-card {
            /* Using a placeholder desert image */
            /* background-image: url('https://images.unsplash.com/photo-1473580044384-7ba9967e16a0?q=80&w=2070&auto=format&fit=crop');  */
            background-size: cover;
            background-position: center;
            height: 500px;
            border-radius: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            color: white;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* The gradient overlay to make text readable */
        .featured-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            /* Gradient from transparent to a brownish/dark tone to match the sand/shadow */
            background: rgb(253 126 126 / 10%);
            z-index: 1;
            backdrop-filter: blur(10px);
        }

        /* Ensure content sits on top of the gradient */
        .featured-content {
            position: relative;
            z-index: 2;
        }

        .category-badge {
            background-color: rgba(255, 255, 255, 0.9);
            color: #8B4513; /* Brownish text */
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            margin-bottom: 20px;
            width: fit-content;
        }
        
        .category-badge .dot {
            height: 8px;
            width: 8px;
            background-color: #8B4513;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
        }

        .featured-title {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
            color: #fff;
        }

        .meta-text {
            font-size: 0.9rem;
            opacity: 0.8;
            font-weight: 500;
        }

        /* --- Right Sidebar Wrapper --- */


/* --- Sidebar Title --- */
.sidebar-title {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
}

/* --- Sidebar Item Card --- */
.sidebar-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 18px;
    background: rgb(253 126 126 / 10%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.sidebar-item:hover {
    /* background: #eef2ff; */
    transform: translateX(5px);
}

/* Thumbnail */
.sidebar-thumb {
    width: 100px;
    height: 85px !important;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    margin-right: 15px;
}

/* Content */
.sidebar-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #222;
}

.sidebar-content span {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

/* --- FAQ Wrapper --- */
.faq-wrapper {
    margin: 0 auto;
    background: white;
    /* padding: 50px; */
}
.cat_title {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0;
}
.faq-wrapper p {
    font-size: 16px;
    font-weight: 500;
}
.faq-item {
    border: 1px solid #e2eaf0;
    background: #f5f7fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
}
.faq-question
 {
    width: 100%;
    background: none;
    border: none;
    /* padding: 16px 0; */
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--dark);
}
.faq-item.active .icon {
    transform: rotate(45deg);
}
.faq-question .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    color: #4b5563;
}

.faq-wrapper p {
    font-size: 16px;
    font-weight: 500;
}
.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 10px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}





        /* Mobile adjustments */
        @media (max-width: 991px) {
            .featured-card {
                height: 400px;
                margin-bottom: 20px;
            }
            .featured-title {
                font-size: 1rem;
                margin-bottom: 0px;
            }
        }
        @media (max-width: 768px) {
    .featured-card {
        height: 353px;
    
    }
    .featured-title {
        font-size: 18px;

    }
    .featured-card{
        padding: 15px;
    }
    .faq-question{
    font-size: 15px;
}
.faq-wrapper p {
    font-size: 14px;
    font-weight: 400;
}
.faq-item{
    padding: 5px;
}
}


/* artist-section-home */

 /* Section Container - Dark Theme */
    .ai-features-container {
        background: radial-gradient(circle at top center, #336699 0%, #050505 80%);
        /* background-color: #0f0f0f; Near black background */
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        padding: 60px 40px;
        min-height: 100vh;
    }

    /* Top Header Row */
    .ai-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
    }

    .ai-main-title {
        color: #fff;    
        font-size: 2.2rem;
        font-weight: 500;
        letter-spacing: -0.5px;
    }

    .ai-btn-outline {
        border: 1px solid #444;
        color: #fff;
        padding: 6px 18px;
        border-radius: 20px;
        font-size: 0.85rem;
        text-decoration: none;
        transition: 0.3s;
    }

    .ai-btn-outline:hover {
        background-color: #ffffff;
        color: #000;
    }

    /* Sidebar Navigation */
    .ai-sidebar-nav {
        list-style: none;
        padding: 0;
    }

    .ai-nav-item {
        margin-bottom: 12px;
    }

    .ai-nav-link {
        color: #888;
        text-decoration: none;
        font-size: 1rem;
        padding: 10px 20px;
        display: block;
        transition: 0.2s;
        border-radius: 12px;
    }

    .ai-nav-link:hover {
        color: #fff;
    }

    .ai-nav-link.active {
        
        background-color: #2c2c2c;  
        color: #ffffff;
        font-weight: 500;
    }

    /* Grid and Cards */
    .ai-feature-card {
        position: relative;
        height: 380px;
        border-radius: 20px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 24px;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .ai-feature-card:hover {
        transform: scale(1.02);
    }

    .ai-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 40%);
        z-index: 1;
    }

    .ai-card-title {
        position: relative;
        z-index: 2;
        font-size: 1.15rem;
        font-weight: 500;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    /* Try it Button inside card */
    .ai-try-btn {
        position: relative;
        z-index: 2;
        align-self: flex-start;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        color: #fff;
        border: none;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: auto;
    }
/* Container Grid */
.ArtistCardGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Card Styling */
.ArtistCard {
    background: transplarent;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.05); */
}

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

.card-link {
    text-decoration: none !important;
    color: inherit;
}

/* Image & Badge */
.ImageWrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5; /* Professional portrait ratio */
    overflow: hidden;
}

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

.artist-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    backdrop-filter: blur(4px);
    z-index: 5;
}

/* Rating Bar (As seen in your image) */
.ArtistStats {
    position: absolute;
    bottom: 15px;
    width: 100%;
    background: rgba(255, 230, 200, 0.9); /* Light orange tint */
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #444;
    text-align: center;
}

/* Text Content */
.ArtistContent {
    padding: 12px 5px;
}

.ArtistContent h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.ArtistContent p {
    font-size: 0.85rem;
    color: #c3c3c3;
    margin: 2px 0 0 0;
}
.ai-sidebar-box {
    background: rgba(255, 255, 255, 0.1);
    /* background: linear-gradient(145deg, #0f172a, #1e293b); */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Nav List */
.ai-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Links */
.ai-nav-link {
    display: block;
    padding: 10px 14px;
    margin-bottom: 6px;
    color: #cbd5f5;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.ai-nav-link:hover {
   background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Active */
/* .ai-nav-link.active {
    background: linear-gradient(90deg, #f85694, #f16633);
    color: #fff;
    font-weight: 500;
} */


    /* Responsive Spacing */
    @media (max-width: 991px) {
        .ai-features-container { padding: 30px 20px; }
        .ai-sidebar-nav { display: flex; overflow-x: auto; margin-bottom: 0px; gap: 0px;  }
        .ai-nav-link { white-space: nowrap; }
        .ai-sidebar-box{margin-bottom: 20px;}
    }




    /* home page */


/* Popup Overlay */

    .Hero710, .HeroInner710, .container, .itemParent, .herodataitm {
    position: relative !important;
    /* overflow: visible !important; */
    z-index: auto;
}
.dropdown-panel {
    z-index: 9999 !important;
}



    .footer-layout1,
    .footer-layout2 {
        background-color: #000000 !important;
    }

    .filter-gallery {

        margin-right: 0 !important;
    }
    .HeroInner710 {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: background-image 0.8s ease-in-out !important;
}


    /* slider */
.slider-wrapper {
    width: 100%;
    height: 420px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
    perspective: 1200px;
}

.slider-track {
    display: flex;
    gap: 30px;
}


select:focus, .form-control:focus, .form-select:focus, textarea:focus, input:focus {
    outline: 0;
    box-shadow: none;
    background-color: transparent;
}
    /* Hero Section Wrapper - Dark Gradient Background */
    .ac-hero-section {
        /* background: radial-gradient(circle at top center, #fcecdd 0%, #040e2f 70%); */
         background: 
        url('https://www.artistarena.in/assets01/img/drummer-playing-drums-stage.jpeg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
        min-height: 600px;
        padding: 60px 0px 0px;
        /* display: flex; */
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        text-align: center;
        overflow: visible;
    }

    .ac-container {
        /* max-width: 1000px; */
        width: 100%;
         position: relative;
    z-index: 2;
    }

    /* TOP TOGGLE (Find Artist / Browse Jobs) */
    .ac-toggle-wrapper {
        display: inline-flex;
        background: rgba(255, 255, 255, 0.1);
        padding: 5px;
        border-radius: 50px;
        margin-bottom: 30px;
    }

    .ac-toggle-btn {
        padding: 8px 24px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: 0.3s;
        border: none;
    }

    .ac-toggle-btn.active {
        background: #ffffff;
        color: #000000;
    }

    .ac-toggle-btn.inactive {
        background: transparent;
        color: #aaaaaa;
    }

    /* SEARCH BAR */
    .ac-search-wrapper {
        max-width: 650px;
        margin: 0 auto 40px auto;
        position: relative;
    }

    .ac-search-bar {
        /* background: rgba(255, 255, 255, 0.05); */
        /* border: 1px solid rgba(255, 255, 255, 0.1); */
        color: white;
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 0px 20px;
        display: flex;
        align-items: center;
        backdrop-filter: blur(10px);
    }

    .ac-search-icon {
        color: #ffffff;
        margin-right: 15px;
        font-size: 18px;
    }

    .ac-search-input {
        background: transparent;
        border: none;
        color: #e0e0e0;
        width: 1400px;
        outline: none;
        font-size: 16px;
    }

    .ac-search-input::placeholder {
        color: #929292;
    }

    /* AI Mode Button inside Search */
    .ac-ai-mode {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 6px 15px;
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        cursor: pointer;
    }

    .ac-ai-mode i {
        color: #888;
    }

    /* SUBTITLE */
    .ac-subtitle {
        color: #ffffff;
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 20px;
        opacity: 0.9;
    }

 

    /* MAIN TITLE */
    .ac-main-title {
        color: #ffffff;
        font-size: 5rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.1;
    }

    /* Celebrity Accent with Gradient Border effect */
    .ac-title-accent {
        position: relative;
        display: inline-block;
        padding: 0 20px;
    }

    .ac-title-accent::after {
        content: "";
        position: absolute;
        inset: -5px -10px;
        border: 2px solid transparent;
        border-radius: 100px;
        background: linear-gradient(#050505, #050505) padding-box,
                    linear-gradient(to right, #ff8a00, #e52e71) border-box;
        z-index: -1;
        opacity: 0.6;
    }

    /* BOTTOM TITLE PART */
    .ac-bottom-title {
    font-size: 2.5rem;
    color: #ffff;
    margin-top: 10px;
    font-family: 'Maintaker', sans-serif;
    font-weight: 700; /* Bold look */
}

.ac-bottom-title span {
    color: #ffff;
    font-family: 'Maintaker', sans-serif;
    font-weight: 400; /* Regular */
}

.highlight .text{
    color: #ffff;
    font-family: 'Maintaker', sans-serif;
    font-weight: 800; /* Extra bold feel */
}

    /* Responsive */
    @media (max-width: 768px) {
        .ac-main-title { font-size: 3rem; }
        .ac-bottom-title { font-size: 1.5rem; }
        .ac-search-wrapper { width: 95%; }
        .ac-ai-mode { display: none; } /* Hide AI mode on very small screens */
    }




  /* * { box-sizing: border-box; margin: 0; padding: 0; }
  body { background: transparent; } */
  .wrap { padding: 1.5rem 35px; font-family: var(--font-sans); position: relative; /* ADD THIS */
  z-index: 1000;  
  /* top: -38px; */
  }
  .search-container { position: relative; max-width: 760px; margin: 0 auto; z-index: 100;}
  .search-bar {
    display: flex; align-items: center; gap: 10px;
    background: #1e1e1eda; border: 1.5px solid #2e2e2e;
    border-radius: 30px; padding: 5px 18px; backdrop-filter: blur(5px);
  }
  .search-bar input {
    flex: 1; background: transparent; border: none; outline: none;
    color: #e0e0e0; font-size: 15px; font-family: var(--font-sans);
  }
  .search-bar input::placeholder { color: #555; }
  .search-icon { color: #666; font-size: 15px; }
  .kbd {
    background: #2a2a2a; border: 1px solid #3a3a3a; border-radius: 6px;
    padding: 2px 7px; font-size: 11px; color: #666; letter-spacing: 0.5px;
  }
  .dropdown-panel {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: #191919; border: 1px solid #2e2e2e; border-radius: 16px;
    z-index: 9999; display: none;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  }
  .dropdown-panel.open { display: flex; }
  .list-panel { width: 300px; border-right: 1px solid #2a2a2a; overflow-y: auto; max-height: 380px; }
  .list-header {
    padding: 12px 16px; background: #c8f03d; display: flex;
    align-items: center; justify-content: space-between;
  }
  .list-header span { font-size: 13px; font-weight: 600; color: #1a1a1a; }
  .list-header svg { color: #1a1a1a; }
  .artist-item {
    display: flex; align-items: center; gap: 12px; padding: 10px 14px;
    cursor: pointer; transition: background 0.15s; border-bottom: 1px solid #222;
  }
  .artist-item:hover, .artist-item.active { background: #252525; }
  .artist-item.active { background: #2a2a2a; }
  .avatar {
    width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
    background: #333; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 600; color: #aaa;
  }
  .artist-info { flex: 1; min-width: 0; }
  .artist-name { font-size: 13.5px; font-weight: 500; color: #e0e0e0; display: flex; align-items: center; gap: 5px; }
  .verified { color: #4a9eff; font-size: 12px; }
  .artist-loc { font-size: 12px; color: #666; display: flex; align-items: center; gap: 4px; margin-top: 1px; }
  .profile-panel {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 32px 28px; gap: 14px; min-height: 360px;
  }
  .profile-avatar-wrap { position: relative; }
  .profile-avatar {
    width: 150px; height: 90px; border-radius: 18px; background: #333;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; font-weight: 600; color: #aaa;
    border: 2px solid #2e2e2e;
  }
  .profile-badge {
    position: absolute; bottom: -4px; right: -4px;
    background: #4a9eff; border-radius: 50%; width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #191919; font-size: 10px; color: #fff;
  }
  .profile-star {
    position: absolute; top: -6px; right: -6px;
    color: #f5c518; font-size: 16px;
  }
  .profile-name { font-size: 18px; font-weight: 600; color: #f0f0f0; text-align: center; }
  .profile-bio { font-size: 13px; color: #888; text-align: center; max-width: 220px; line-height: 1.55; }
  .social-row { display: flex; gap: 8px; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 50%; background: #272727;
    border: 1px solid #333; display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #aaa; cursor: pointer; transition: background 0.15s;
  }
  .social-btn:hover { background: #333; color: #ccc; }
  .action-row { display: flex; gap: 10px; margin-top: 4px; }
  .btn-portfolio {
    padding: 9px 18px; border-radius: 10px; background: #272727;
    border: 1.5px solid #3a3a3a; color: #ccc; font-size: 13px; font-weight: 500;
    cursor: pointer; transition: background 0.15s;
  }
  .btn-portfolio:hover { background: #333; }
  .btn-follow {
    padding: 9px 18px; border-radius: 10px; background: #c8f03d;
    border: none; color: #1a1a1a; font-size: 13px; font-weight: 600;
    cursor: pointer; display: flex; align-items: center; gap: 6px; transition: opacity 0.15s;
  }
  .btn-follow:hover { opacity: 0.88; }
  .empty-state { color: #555; font-size: 13px; text-align: center; padding: 40px 20px; }
  .pin-icon { color: #555; font-size: 11px; }
  .profile-category{
    font-size: 14px;
    margin: 0;
  }
  @media (max-width: 465px) {
      .profile-panel {
    padding: 16px 9px;
    gap: 5px;
    min-height: 360px;
}
.profile-avatar {
    width: 130px;
}
.btn-portfolio {
    margin-bottom: 5px;
}
.action-row {
    display: contents;
    
    margin-top: 4px;
}

  }





/* Section Container - Dark Theme */
    .ai-features-container {
        background: radial-gradient(circle at top center, #336699 0%, #050505 80%);
        /* background-color: #0f0f0f; Near black background */
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        padding: 60px 40px;
        min-height: 100vh;
    }

    /* Top Header Row */
    .ai-header-row {
        display: block;
        /* justify-content: space-between; */
        /* align-items: center; */
        margin-bottom: 50px;
    }

    .ai-main-title {
        color: #fff;
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 5px;
    }
    .ai-sub-title {
        color: #c3c3c3;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .ai-btn-outline {
        border: 1px solid #444;
        color: #fff;
        padding: 6px 18px;
        border-radius: 20px;
        font-size: 0.85rem;
        text-decoration: none;
        transition: 0.3s;
    }

    .ai-btn-outline:hover {
        background-color: #ffffff;
        color: #000;
    }

    /* Sidebar Navigation */
    .ai-sidebar-nav {
        list-style: none;
        padding: 0;
    }

    .ai-nav-item {
        margin-bottom: 12px;
    }

    .ai-nav-link {
        color: #888;
        text-decoration: none;
        font-size: 1rem;
        padding: 10px 20px;
        display: block;
        transition: 0.2s;
        border-radius: 12px;
    }

    .ai-nav-link:hover {
        color: #fff;
    }

    .ai-nav-link.active {

        background-color: #2c2c2c;
        color: #ffffff;
        font-weight: 500;
    }

    /* Grid and Cards */
    .ai-feature-card {
        position: relative;
        height: 380px;
        border-radius: 20px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 24px;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .ai-feature-card:hover {
        transform: scale(1.02);
    }

    .ai-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 40%);
        z-index: 1;
    }

    .ai-card-title {
        position: relative;
        z-index: 2;
        font-size: 1.15rem;
        font-weight: 500;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    /* Try it Button inside card */
    .ai-try-btn {
        position: relative;
        z-index: 2;
        align-self: flex-start;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        color: #fff;
        border: none;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: auto;
    }

    /* Container Grid */
    .ArtistCardGrid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    /* Card Styling */
    .ArtistCard {
        background: transplarent;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease;
        /* box-shadow: 0 4px 6px rgba(0,0,0,0.05); */
    }

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

    .card-link {
        text-decoration: none !important;
        color: inherit;
    }

    /* Image & Badge */
    .ImageWrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 4 / 5;
        /* Professional portrait ratio */
        overflow: hidden;
    }

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

    .artist-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 0.75rem;
        backdrop-filter: blur(4px);
        z-index: 5;
    }

    /* Rating Bar (As seen in your image) */
    .ArtistStats {
        position: absolute;
        bottom: 15px;
        width: 100%;
        background: rgba(255, 230, 200, 0.9);
        /* Light orange tint */
        padding: 5px 10px;
        font-size: 0.8rem;
        font-weight: bold;
        color: #444;
        text-align: center;
    }

    /* Text Content */
    .ArtistContent {
        padding: 12px 5px;
    }

    .ArtistContent h2 {
        font-size: 1.1rem;
        font-weight: 700;
        margin: 0;
        color: #ffffff;
    }

    .ArtistContent p {
        font-size: 0.85rem;
        color: #c3c3c3;
        margin: 2px 0 0 0;
    }

    .ai-sidebar-box {
        background: rgba(255, 255, 255, 0.1);
        /* background: linear-gradient(145deg, #0f172a, #1e293b); */
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Nav List */
    .ai-sidebar-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* Links */
    .ai-nav-link {
        display: block;
        padding: 10px 14px;
        margin-bottom: 6px;
        color: #cbd5f5;
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    /* Hover */
    .ai-nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    /* Active */
    /* .ai-nav-link.active {
    background: linear-gradient(90deg, #f85694, #f16633);
    color: #fff;
    font-weight: 500;
} */


    /* Responsive Spacing */
    @media (max-width: 991px) {
        .ai-features-container {
            padding: 30px 20px;
        }

        .ai-sidebar-nav {
            display: flex;
            overflow-x: auto;
            margin-bottom: 0px;
            gap: 0px;
        }

        .ai-nav-link {
            white-space: nowrap;
        }

        .ai-sidebar-box {
            margin-bottom: 20px;
        }
    }





    
/* CENTER */
.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;   /* IMPORTANT */
  align-items: center;
  justify-content: center;
  gap: 40px;                /* space between text & video */
  overflow: hidden;
  /* padding-top: 80px; */
  padding: 50px 80px; /* desktop pe extra breathing space */
}

/* SVG BACKGROUND */
.svg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* behind */
}

/* VIDEO CARD */
.video-card-freq {
  position: relative;
  z-index: 2; /* above SVG */
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 28/12;
  border-radius: 40px;
  overflow: hidden;

}

/* VIDEO */
.video-bg-freq {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* IMAGE */
.video-card-freq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PLAY PILL */
.play-pill {
  position: absolute;
  top: 30px;
  left: 30px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.3s;
}

.play-pill:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.play-pill .icon {
  background: #EBEBFF;
  color: #8180FF;
  padding: 6px;
  border-radius: 50%;
  font-size: 12px;
}

/* video-bg-freq */
.video-bg-freq {
  position: absolute;
  bottom: -1px;
  width: 100%;
}

.video-bg-freq svg {
  width: 100%;
  height: 100px;
  fill: white;
}

/* BUTTON */
.center-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.start-btn {
  background: #3D3BF3;
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(61,59,243,0.4);
  transition: 0.3s;
}

.start-btn:hover {
  background: #3432D9;
  transform: translateY(-2px) scale(1.04);
}

/* ANIMATION (entry) */
.video-card-freq {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.video-bg-freq {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sound-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

 

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

/* video TEXT CONTAINER */
.video-text-freq {
   z-index: 3;
 
  top: 80px;
  width: 100%;
  z-index: 3;
  color: white;
  text-align: center;
  pointer-events: none;
}

/* SMALL TAG */
.video-text-freq .tag {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* MAIN HEADING */
.main-video-freq {
  font-size: 64px;
  font-weight: 600;
  margin: 0;
  line-height: 1.1;
}

/* GRADIENT TEXT (Flows) */
.main-video-freq span {
  background: linear-gradient(90deg, #6a5cff, #b08cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */
.sub-text-video-freq {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-video-freq {
    font-size: 38px;
  }

  .sub-text-video-freq {
    font-size: 14px;
  }
}
/* @media (max-width: 1200px) {
  .wrapper {
    padding: 40px 50px;  
  }
} */

  @media (max-width: 768px) {
  .wrapper {
    padding: 40px 15px; /* side space kam */
  }

  .video-card-freq {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 16/9; /* 🔥 mobile ke liye perfect */
  }
}





  /* --- START OF VIDEO SECTION STYLES --- */



    /* Section Container */
    .vid-sec-wrapper {
        max-width: 1200px;
        margin: 50px auto;
        padding: 0 20px;
    }

    /* Header Text */
    .vid-sec-header {
        margin-bottom: 30px;
    }

    .vid-sec-title {
        font-size: 32px;
        font-weight: 700;
        color: #111;
        margin-bottom: 10px;
    }

    .vid-sec-subtitle {
        color: #666;
        max-width: 600px;
        line-height: 1.5;
    }

    /* Swiper Container Settings */
    .vid-sec-swiper {
        width: 100%;
        padding-bottom: 50px;
        /* Space for pagination */
    }

    /* The Video Card */
    .vid-sec-card {
        position: relative;
        width: 100%;
        max-width: 280px;
        aspect-ratio: 10/16;
        /* 🔥 Perfect responsive reel ratio */
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
        margin: 0 auto;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }




    /* Thumbnail Image */
    .vid-sec-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }



    /* Dark Overlay Gradient */
    .vid-sec-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 100%);
        pointer-events: none;
    }

    /* Play Button Icon */
    /* Play Button Circle */
    .vid-sec-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 75px;
        height: 75px;
        /* background-color: #ff004f; */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 0 0 rgba(255, 0, 79, 0.7);
        animation: vid-sec-pulse 2s infinite;
        z-index: 2;
        transition: transform 0.3s ease;
    }

    /* PNG Icon */
    .vid-sec-play-icon {
        width: 45px;
        height: 45px;
        object-fit: contain;
    }

    /* Hover Effect */
    .vid-sec-card:hover .vid-sec-play-btn {
        transform: translate(-50%, -50%) scale(1.1);
    }


    /* Pulse Animation for Play Button */
    @keyframes vid-sec-pulse {
        0% {
            transform: translate(-50%, -50%) scale(0.95);
            box-shadow: 0 0 0 0 rgba(255, 0, 79, 0.7);
        }

        70% {
            transform: translate(-50%, -50%) scale(1);
            box-shadow: 0 0 0 15px rgba(255, 0, 79, 0);
        }

        100% {
            transform: translate(-50%, -50%) scale(0.95);
            box-shadow: 0 0 0 0 rgba(255, 0, 79, 0);
        }
    }

    /* Text Content inside Card */
    .vid-sec-info {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        z-index: 2;
        color: white;
    }

    .vid-sec-artist-name {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .vid-sec-tagline {
        font-size: 13px;
        color: #ddd;
        font-weight: 400;
    }

    /* --- MODAL (POPUP) STYLES --- */
    .vid-sec-modal {
        display: none;
        /* Hidden by default */
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .vid-sec-modal.open {
        display: flex;
        opacity: 1;
    }

    .vid-sec-modal-content {
        position: relative;
        width: 100%;
        max-width: 400px;
        /* Portrait Video Width */
        aspect-ratio: 9/12;
        background: #000;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .vid-sec-iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Close Button */
    .vid-sec-close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10000;
        transition: color 0.2s;
    }

    .vid-sec-close:hover {
        color: #ff004f;
    }

    /* Navigation Arrows Customization */
    .swiper-button-next,
    .swiper-button-prev {
        color: #ff004f !important;
        background: white;
        width: 50px !important;
    height: 50px !important;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px !important;
        font-weight: bold;
    }

    @media (max-width: 485px) {
        .vid-sec-card {
            max-width: 100%;
        }

        .vid-sec-modal-content {
            max-width: 100%;
            aspect-ratio: 10/16;
            /* Switch to portrait for mobile */
        }

    }

    /* --- END OF VIDEO SECTION STYLES --- */