/* Top Navigation Bar */
        .top-nav {
            background: #ffffff;
            border-bottom: 2px solid #5bcbe3;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .top-nav-left {
            display: flex;
            gap: 30px;
        }

        .top-nav-right {
            display: flex;
            gap: 30px;
            align-items: center;
            background-color: white;
        }

        .top-nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .top-nav a:hover {
            color: #8e44ad;
        }

        .phone-number {
            font-weight: 600;
            color: #333;
        }

        /* Main Header */
        .main-header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #8e44ad, #3498db);
            border-radius: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon::before {
            content: '✦';
            color: white;
            font-size: 20px;
            font-weight: bold;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }

        .logo-sub {
            font-size: 12px;
            color: #666;
            margin-top: -2px;
        }

        .main-nav {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-item a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s ease;
        }

        .nav-item a:hover {
            color: #8e44ad;
        }

        .dropdown-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .nav-item:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-icon {
            width: 20px;
            height: 20px;
            cursor: pointer;
            fill: #666;
            transition: fill 0.3s ease;
        }

        .search-icon:hover {
            fill: #8e44ad;
        }

        .shop-plans-btn {
            background: #5bcbe3;
            color: black;
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .text-truncate{
            padding-top:15px;
        }

        .shop-plans-btn:hover {
            background: #7d3c98;
        }
 /* Service Check Section */
        .service-check {
            background: #000;
            color: white;
            padding: 5px 0;
            text-align: center;
        }

        .service-check-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
        }

        .location-icon {
            width: 20px;
            height: 20px;
            fill: #27ae60;
        }

        /* Breadcrumbs */
        .breadcrumbs {
            background: #f8f9fa;
            padding: 15px 0;
        }

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

        .breadcrumbs-nav {
            font-size: 14px;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .breadcrumbs-nav a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .breadcrumbs-nav a:hover {
            color: #8e44ad;
        }

        /* Mobile Menu Styles */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 4px;
            padding: 8px;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background: #333;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            z-index: 1000;
        }

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

        .mobile-nav-content {
            padding: 20px;
        }

        .mobile-nav-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .mobile-nav-item:last-child {
            border-bottom: none;
        }

        .mobile-nav-item a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
        }

        .mobile-actions {
            padding-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

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

        .mobile-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
            margin-left: 5px;
        }

        .mobile-dropdown.active .mobile-arrow {
            transform: rotate(180deg);
        }

        .mobile-dropdown-content {
            display: none;
            background: #f8f9fa;
            padding: 15px 20px;
            margin-top: 10px;
            border-radius: 5px;
            border-left: 3px solid #5bcbe3;
        }

        .mobile-dropdown.active .mobile-dropdown-content {
            display: block;
        }

        .mobile-dropdown-section {
            margin-bottom: 15px;
        }

        .mobile-dropdown-section:last-child {
            margin-bottom: 0;
        }

        .mobile-dropdown-section h4 {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mobile-dropdown-section a {
            display: block;
            color: #666;
            text-decoration: none;
            font-size: 14px;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .mobile-dropdown-section a:hover {
            color: #5bcbe3;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .top-nav-container,
            .header-container,
            .breadcrumbs-container {
                padding: 0 15px;
            }

            .main-nav {
                gap: 25px;
            }
        }

        @media (max-width: 992px) {
            .top-nav-left,
            .top-nav-right {
                gap: 20px;
            }

            .main-nav {
                gap: 20px;
            }

            .shop-plans-btn {
                padding: 10px 20px;
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .top-nav {
                font-size: 13px;
                background: white;
            }

            .top-nav-container {
                flex-direction: column;
                gap: 10px;
                padding: 10px 15px;
            }

            .top-nav-left,
            .top-nav-right {
                justify-content: center;
                gap: 15px;
                flex-wrap: wrap;
            }

            .main-header {
                position: relative;
                padding: 12px 0;
            }

            .header-container {
                justify-content: space-between;
                padding: 0 15px;
            }

            .main-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .header-actions {
                gap: 15px;
            }

            .search-icon {
                width: 18px;
                height: 18px;
            }

            .shop-plans-btn {
                display: none;
            }

            .logo-main {
                font-size: 20px;
            }

            .logo-sub {
                font-size: 11px;
            }

            .service-check {
                padding: 15px 0;
            }

            .service-check-content {
                flex-direction: column;
                gap: 8px;
                font-size: 14px;
                padding: 0 15px;
            }

            .breadcrumbs {
                padding: 12px 0;
            }

            .breadcrumbs-nav {
                font-size: 12px;
                text-align: center;
            }

           
        }

        @media (max-width: 480px) {
            .top-nav {
                font-size: 12px;
            }

            .top-nav-left,
            .top-nav-right {
                gap: 10px;
            }

            .phone-number {
                font-size: 12px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
            }

            .logo-icon::before {
                font-size: 18px;
            }

            .logo-main {
                font-size: 18px;
            }

            .logo-sub {
                font-size: 10px;
            }

            .header-actions {
                gap: 10px;
            }

            .search-icon {
                width: 16px;
                height: 16px;
            }

            .shop-plans-btn {
                padding: 6px 12px;
                font-size: 11px;
            }

            .service-check-content {
                font-size: 13px;
            }

            .location-icon {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 360px) {
            .header-container {
                padding: 0 10px;
            }

            .logo-main {
                font-size: 16px;
            }

            .shop-plans-btn {
                padding: 5px 10px;
                font-size: 10px;
            }

            .service-check-content {
                font-size: 12px;
                padding: 0 10px;
            }
        }

          .container {
             margin: 0 auto;
             width: 1200px;
            background: white;
            padding: 40px 20px 60px;
            border-radius: 8px;
            
        }

        .sports-gallery {
            display: flex;
            justify-content: center;
            gap: 2px;
            margin-bottom: 30px;
            position: relative;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .sport-card {
            position: relative;
            height: 280px;
            width: 200px;
            flex-shrink: 0;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .sport-card:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }

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

        .sport-label {
            position: absolute;
            bottom: 10px;
            left: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 0, 0, 0.8);
            padding: 5px 10px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .channel-logo {
            width: 18px;
            height: 18px;
            background: white;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            font-weight: bold;
        }

        .tnt-logo {
            background: #FF0066;
            color: white;
        }

        .eurosport-logo {
            background: #00FF00;
            color: black;
        }

        .sport-name {
            color: white;
            font-size: 13px;
            font-weight: 500;
        }
        .duye{
            color:#000;
            font-weight:700;
            font-size: 40px;
        }
        @media (max-width: 768px) {
            .duye{
                font-size:25px;
            }
            }
        
        .tv-device {
            width: 300px;
            height: 80px;
            background: #1a1a1a;
            border-radius: 12px;
            margin: -50px auto 40px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 10;
        }

        .tv-device::before {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            border: 3px solid #333;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .content-section {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .tnt-sports-header {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }

        h1 {
            color: #5B21B6;
            font-size: 36px;
            font-weight: 400;
            margin-bottom: 25px;
        }

        .description {
            font-size: 13px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 30px;
            
            font-weight: 400;
        }
        @media (max-width: 768px) {
            .description{
                padding: 0 20px;
            }
            }

        .btn-sport-deals {
            background: transparent;
            color: #000;
            padding: 12px 28px;
            border: none;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #5bcbe3;
            
        }

        .btn-sport-deals:hover {
            background: #4C1D95;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(91, 33, 182, 0.3);
        }

        /* Sport card backgrounds */
        .rugby-bg {
            background-image: url('images/about/3.jpeg');
            background-size: cover;
            background-position: center;
        }

        .motogp-bg {
           background-image: url('images/about/4.jpeg');
            background-size: cover;
            background-position: center;
        }

        .motorsport-bg {
           background-image: url('images/about/5.jpeg');
            background-size: cover;
            background-position: center;
        }

        .cycling-bg {
            background-image: url('images/about/6.jpeg');
            background-size: cover;
            background-position: center;
        }

        @media (max-width: 768px) {
            .container {
                width: 100%;
                max-width: 100%;
                padding: 20px 15px 40px;
                margin: 0;
            }
.starlink-installation{
    padding-left: 20px;
    padding-right: 20px;
}
            .sports-gallery {
                flex-wrap: wrap;
                gap: 8px;
                width: 100%;
                max-width: 100%;
                margin-bottom: 20px;
            }

            .sport-card {
                height: 140px;
                width: calc(50% - 4px);
                min-width: 140px;
            }

            .sport-label {
                bottom: 8px;
                left: 8px;
                padding: 4px 8px;
                border-radius: 15px;
            }

            .channel-logo {
                width: 16px;
                height: 16px;
                font-size: 8px;
            }

            .sport-name {
                font-size: 11px;
            }

            .tv-device1 {
                margin-top: -50px;
            }

            .tvbox {
                width: 280px;
                max-width: 90%;
            }

            h1 {
                font-size: 28px;
            }

            .tv-device {
                width: 250px;
                height: 70px;
                margin: -40px auto 20px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 15px 10px 30px;
            }

            .sports-gallery {
                gap: 6px;
                margin-bottom: 15px;
            }

            .sport-card {
                height: 120px;
                width: calc(50% - 3px);
                min-width: 120px;
            }

            .sport-label {
                bottom: 6px;
                left: 6px;
                padding: 3px 6px;
                border-radius: 12px;
            }

            .channel-logo {
                width: 14px;
                height: 14px;
                font-size: 7px;
            }

            .sport-name {
                font-size: 10px;
            }

            .tv-device1 {
                margin-top: -40px;
            }

            .tvbox {
                width: 240px;
                max-width: 85%;
            }

            h1 {
                font-size: 24px;
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 10px 8px 25px;
            }

            .sports-gallery {
                gap: 4px;
                margin-bottom: 12px;
            }

            .sport-card {
                height: 100px;
                width: calc(50% - 2px);
                min-width: 100px;
            }

            .sport-label {
                bottom: 4px;
                left: 4px;
                padding: 2px 5px;
                border-radius: 10px;
            }

            .channel-logo {
                width: 12px;
                height: 12px;
                font-size: 6px;
            }

            .sport-name {
                font-size: 9px;
            }

            .tv-device1 {
                margin-top: -30px;
            }

            .tvbox {
                width: 200px;
                max-width: 80%;
            }

            h1 {
                font-size: 20px;
            }
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .section-container{
             background: linear-gradient(135deg, #5bcbe3 0%, #5bcbe3 30%, #64cceb 70%, #2fbcdb 100%);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            min-height: 100vh;
           background-color: #fff;
            color: white;
            overflow-x: hidden;
        }

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

        .hero-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 50vh;
            margin-bottom: 70px;
        }

        .content {
            flex: 1;
            max-width: 550px;
        }

        .welcome-text {
            font-size: 13px;
            margin-bottom: 20px;
            opacity: 0.9;
            font-weight: 400;
        }

        h1 {
            font-size: 46px;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .subtitle {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 35px;
            opacity: 0.95;
        }
         @media (max-width: 768px) {
           .subtitle{
             font-size: 14px;
         }
        }


        .buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: white;
            color: #5bcbe3;
            font-weight: 500;
        }

        .btn-primary:hover {
            background: #f3f4f6;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 1px solid white;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .device-container {
            flex: 0 0 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .device-image {
            position: relative;
            width: 350px;
            height: 250px;
        }
        

        /* BT TV Box */
        .tv-box {
            width: 280px;
            height: 90px;
            background: #1a1a1a;
            border-radius: 15px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        @media (max-width: 768px) {
            .tv-box {
                width: 180px;
                height: 80px;
                border-radius: 10px;
            }
        }

        .tv-box::before {
            content: '';
            position: absolute;
            width: 280px;
            height: 15px;
            background: #0f0f0f;
            bottom: -15px;
            left: 0;
            border-radius: 0 0 10px 10px;
        }
@media (max-width: 768px) {
    .tv-box::before{
        width: 180px;
        height: 15px;
    }
    }
        /* Center circle on TV box */
        .tv-circle {
            width: 65px;
            height: 65px;
            border: 3px solid #ffffff;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #1a1a1a;
        }

        .tv-circle::after {
            content: '';
            width: 8px;
            height: 8px;
            background: #ffffff;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Remote Control */
        .remote {
            width: 55px;
            height: 180px;
            background: #000000;
            border-radius: 25px;
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-40%);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .remote{
                width: 40px;
                right: 5px;
            }
        }
        .remote::before {
            content: '';
            width: 35px;
            height: 35px;
            background: #ffffff;
            border-radius: 50%;
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
        }
        @media (max-width: 768px) {
            .remote::before {
                width: 25px;
                height: 25px;
            }
        }

        /* Remote buttons */
        .remote-buttons {
            position: absolute;
            top: 60px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
        }

        .remote-button {
            width: 8px;
            height: 8px;
            background: #444;
            border-radius: 2px;
            margin: 5px auto;
        }

        .cards-section {
            display: flex;
            gap: 10px;
            background-color: #fff;
            flex-wrap: wrap;
            padding-left: 90px;
            margin-bottom:60px;
            
            
        }

        .card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            padding: 15px 10px;
            width: 180px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            margin-top: -80px; 
            
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 1);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        @media (max-width: 768px) {
            .card-icon{
                width: 40px;
                height: 40px;
            }
        }
        .card h3 {
            color: #000;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
        }
        @media (max-width: 768px) {
            .card h3 {
                font-size: 13px;
            }
        }

        /* Icons */
        .icon {
            color: #5bcbe3;
        }

        /* Background glow effect */
        .bg-glow {
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(147, 197, 253, 0.3) 0%, transparent 60%);
            top: -200px;
            right: -300px;
            pointer-events: none;
        }

        @media (max-width: 968px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
                gap: 40px;
               
            }

            .content {
                max-width: 100%;
            }

            h1 {
                font-size: 36px;
            }

            .buttons {
                justify-content: center;
            }

            .device-container {
                flex: 0 0 auto;
            }
        }

        @media (max-width: 768px) {
            .cards-section {
                gap: 10px;
                padding-left: 20px;
            }

            .card {
                width: 115px;
                max-width: 350px;
            }
             .doye {
                font-size: 20px;
            }
        }
        .doye{
            color:#fff;
            font-family: 'Montserrat';
            font-weight: 600;
            font-size: 34px;
        }
         @media (max-width: 768px) {
            .doye{
                font-size: 25px;
            }
        }

     .promo-section {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            border-radius: 12px;
            padding: 60px 40px;
            
        }

        .shows-container {
            position: relative;
            margin-bottom: 60px;
            overflow: visible;
            padding-bottom: 20px;
        }

        .shows-grid {
            display: flex;
            gap: 4px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: -10px;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .show-card {
            position: relative;
            width: 160px;
            height: 240px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            z-index: 1;
        }

        .show-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            z-index: 10;
        }

        .show-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }

        .show-card img.loading {
            opacity: 0;
        }

        .show-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
            padding: 20px 10px 10px;
            color: white;
        }

        .show-title {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 4px;
        }

        .show-info {
            font-size: 11px;
            opacity: 0.8;
        }

        .streaming-device {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top:-40px;
    z-index: 10;
    
        }
        .decorder-device{
            width: 350px;
            filter: drop-shadow(5px 8px 10px rgba(0, 0, 0, 0.6));
           
        }

        .device-logo {
            width: 30px;
            height: 30px;
            background-image: url('images/about/decorder.png');
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            
        }

        .content-section {
            text-align: center;
            margin-top: 50px;
        }

        .brand-logo {
            font-size: 12px;
            font-weight: normal;
            color: #666;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .main-heading {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #000;
            letter-spacing: -1px;
            font-family: 'montserrat';
        }

.main-heading1{
     font-size: 30px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #000;
            letter-spacing: -1px;
            font-family: 'montserrat';
            text-align: left;

}
 @media (max-width: 768px) {
    .main-heading1{
        font-size: 16px;
        text-align: center;
    }
 }


        .promo-details {
            font-size: 13px;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.5;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .buttons-container {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 32px;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background-color: #1a1a1a;
            color: white;
        }

        .btn-primary:hover {
            background-color: #333;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background-color: #e0e0e0;
            color: #1a1a1a;
        }

        .btn-secondary:hover {
            background-color: #d0d0d0;
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            color: #1a1a1a;
            border: 2px solid #5bcbe3;
        }

        .btn-outline:hover {
            background-color: #1a1a1a;
            color: white;
        }

        .platform-badges {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.95);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: bold;
            color: #333;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {
            .promo-section {
                padding: 40px 20px;
            }

            .shows-grid {
                gap: 3px;
                padding: 0 10px;
            }

            .show-card {
                width: 120px;
                height: 180px;
            }

            .main-heading {
                font-size: 20px;
            }

            .buttons-container {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
        .img-star{
           display:flex ;
           justify-content: center;
        }

        .namu{
            color: #000;
        }
         @media (max-width: 768px) {
            .namu{
                margin-bottom: 8px;
            }
        }
        .promotion-pac{
            background-color: #efefef4b;
            margin-top: 60px;
        }
       .promo-row{
        margin: 0 auto;
        max-width: 800px;
        padding-top: 45px;
        padding-bottom: 30px;
        display: flex;
        align-items: center;
        gap: 40px;
       }

       .prom-text h2{
        color: #000;
        font-size: 35px;
        margin-bottom: 20px;
       }

       .prom-text h3{
        color: #000;
        font-size:16px;
        margin-bottom: 12px;
       }

       .prom-text p{
        color:#000;
        width: 400px;
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.5;
       }

       .prom-text li{
        color: #000;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 8px;
        list-style-type: disc;
        margin-left: 20px;
       }

       .prom-text ul {
        margin-bottom: 20px;
       }

       /* Responsive Design for Promotion Section */
       @media (max-width: 768px) {
        .promotion-pac {
            margin-top: 40px;
            padding: 0 15px;
        }

        .promo-row {
            flex-direction: column;
            max-width: 100%;
            padding: 30px 20px;
            gap: 30px;
            text-align: center;
        }

        .prom-text {
            order: 1;
        }

        .img-hero {
            order: 2;
        }

        .prom-text h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .prom-text h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .prom-text p {
            width: 100%;
            max-width: 100%;
            font-size: 14px;
            margin-bottom: 20px;
            text-align: left;
        }

        .prom-text li {
            font-size: 14px;
            margin-bottom: 10px;
            text-align: left;
        }

        .img-hero img {
            width: 100%;
            max-width: 400px;
            height: auto;
            padding-left: 0;
        }

        .btn-outline {
            width: 100%;
            max-width: 300px;
            margin: 20px auto 0;
            display: block;
        }
       }

       @media (max-width: 480px) {
        .promotion-pac {
            margin-top: 30px;
            padding: 0 10px;
        }

        .promo-row {
            padding: 20px 15px;
            gap: 25px;
        }

        .prom-text h2 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .prom-text h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .prom-text p {
            font-size: 13px;
            margin-bottom: 15px;
        }

        .prom-text li {
            font-size: 13px;
            margin-bottom: 8px;
        }

        .img-hero img {
            max-width: 350px;
        }

        .btn-outline {
            max-width: 280px;
            padding: 10px 20px;
        }

        .quotation {
            font-size: 14px;
        }
       }

       @media (max-width: 360px) {
        .promo-row {
            padding: 15px 10px;
            gap: 20px;
        }

        .prom-text h2 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .prom-text h3 {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .prom-text p {
            font-size: 12px;
            margin-bottom: 12px;
        }

        .prom-text li {
            font-size: 12px;
            margin-bottom: 6px;
        }

        .img-hero img {
            max-width: 300px;
        }

        .btn-outline {
            max-width: 250px;
            padding: 8px 16px;
        }

        .quotation {
            font-size: 13px;
        }
       }

        /* Footer Styles */
        .footer {
            background: #000;
            color: white;
            padding: 30px 0 25px 0;
            margin-top: auto;
        }

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

        /* Email Signup Section */
        .email-signup {
            text-align: center;
            margin-bottom: 25px;
        }

        .email-signup-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 14px;
            color: #e0e0e0;
        }

        .email-icon {
            width: 16px;
            height: 16px;
            fill: #e0e0e0;
        }

        /* Blue Divider Lines */
        .divider {
            height: 2px;
            background: #3498db;
            margin: 20px 0;
            width: 100%;
        }

        /* Footer Links */
        .footer-links {
            text-align: center;
            margin: 25px 0;
        }

        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }
      
        .ratte{
            margin-top:80px;
        }
        .footer-nav a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .footer-nav a:hover {
            color: #3498db;
        }

        .footer-separator {
            color: #888;
            font-weight: normal;
            margin: 0 4px;
        }

        .privacy-choice {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .privacy-icon {
            width: 14px;
            height: 14px;
            background: #3498db;
            border-radius: 2px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .privacy-icon::before {
            content: "✓";
            color: white;
            font-size: 10px;
            font-weight: bold;
        }

        /* Social Media Icons */
        .social-media {
            text-align: center;
            margin-top: 25px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .social-icon {
            width: 24px;
            height: 24px;
            fill: #888;
            cursor: pointer;
            transition: fill 0.3s ease;
        }

        .social-icon:hover {
            fill: #3498db;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer {
                padding: 25px 0 20px 0;
            }

            .footer-container {
                padding: 0 15px;
            }

            .email-signup-content {
                flex-direction: column;
                gap: 8px;
                font-size: 13px;
            }

            .footer-nav {
                flex-direction: column;
                gap: 15px;
                line-height: 1.8;
            }

            .footer-nav a {
                display: block;
                padding: 5px 0;
            }

            .footer-separator {
                display: none;
            }

            .social-icons {
                gap: 25px;
            }

            .social-icon {
                width: 22px;
                height: 22px;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 20px 0 15px 0;
            }

            .email-signup-content {
                font-size: 12px;
                padding: 0 10px;
            }

            .footer-nav {
                font-size: 12px;
                gap: 12px;
            }

            .social-icons {
                gap: 20px;
            }

            .social-icon {
                width: 20px;
                height: 20px;
            }

            .divider {
                margin: 15px 0;
            }
        }

        @media (max-width: 360px) {
            .footer-container {
                padding: 0 10px;
            }

            .email-signup-content {
                font-size: 11px;
            }

            .footer-nav {
                font-size: 11px;
                gap: 10px;
            }
        }

        /* Desktop-specific responsive adjustments */
        @media (min-width: 769px) and (max-width: 1024px) {
            .footer-nav {
                gap: 6px;
            }

            .footer-separator {
                margin: 0 3px;
            }
        }
.img-hero img{
    width:500px;
    padding-left: 50px;
}

.tv-device1{
     display: flex;
    justify-content: center;
    position: relative;
    margin-top:-70px;
    z-index: 10;
}

.tvbox{
    width: 350px;
    filter: drop-shadow(5px 8px 10px rgba(0, 0, 0, 0.6));
}

.quotation{
    margin-top: 10px;
    text-decoration: none;
    color: #000;
}

.spacer-div{
    padding-top: 20px;

}
.spacer-div-1{
    margin-top: 80px;
}

/* Mega Dropdown */
        .mega-dropdown {
            position: fixed;
            top: 100px;
            left: 50%;
            transform: translateX(-50%);
            background-color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            width: 1000px;
            max-width: 90vw;
            margin-top: 20px;
            z-index: 9999;
        }

        .mega-dropdown::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid white;
        }

        .nav-item:hover .mega-dropdown {
            opacity: 1;
            visibility: visible;
            margin-top: 10px;
        }

        .dropdown-content {
            display: flex;
            padding: 40px;
            gap: 40px;
        }

        /* Left Section */
        .dropdown-left {
            flex: 0 0 250px;
            border-right: 1px solid #e0e0e0;
            padding-right: 40px;
        }

        .dropdown-label {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .dropdown-section-link {
            color: #007bff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .dropdown-section-link:hover {
            color: #0056b3;
            text-decoration: underline;
        }

        /* Right Section */
        .dropdown-right {
            flex: 1;
        }

        .dropdown-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .dropdown-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .service-column h3 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .service-column ul {
            list-style: none;
        }

        .service-column li {
            margin-bottom: 10px;
        }

        .service-column a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .service-column a:hover {
            color: #007bff;
        }

        /* Contact Info */
        .nav-contact {
            position: absolute;
            right: 40px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .phone-number {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .phone-number:hover {
            color: #007bff;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .mega-dropdown {
                width: 800px;
            }

            .dropdown-content {
                padding: 30px;
            }

            .dropdown-title {
                font-size: 26px;
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                flex-wrap: wrap;
                height: auto;
                padding: 20px;
            }

            .nav-item {
                margin: 10px;
            }

            .mega-dropdown {
                width: 95vw;
                position: fixed;
                left: 2.5vw;
                transform: none;
            }

            .dropdown-content {
                flex-direction: column;
                padding: 20px;
            }

            .dropdown-left {
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
                padding-right: 0;
                padding-bottom: 20px;
                margin-bottom: 20px;
            }

            .nav-contact {
                position: static;
                width: 100%;
                justify-content: center;
                margin-top: 10px;
            }
        }

        .movies-sec{
    display: flex;
    gap: 10px; /* Space between images */
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
        }
        @media (max-width: 768px) {
            .movies-sec{
                gap:3px;
            }
            }

       .movies-sec img {
    width: 80px; /* Adjust this value to make them smaller/larger */
    height: auto; /* Maintains aspect ratio */
}
@media (max-width: 768px) {
    .movies-sec img{
        width: 40px;
    }
}

.clients-fea{
      display: flex;
    gap: 10px; /* Space between images */
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    
}
 @media (max-width: 768px) {
    .clients-fea{
        gap:3px;
    }
 }
.clients-fea img{
    width: 150px; /* Adjust this value to make them smaller/larger */
    height: auto;
}
 @media (max-width: 768px) {
    .clients-fea img{
        width: 75px;
    }
 }
.featured-client {
    margin-top: 120px;
    position: relative;
}

.featured-client::after {
    content: "";
    display: block;
    width: 850px;
    height: 1px;
    background-color: #000;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
 .reviews-container {
            max-width: 900px;
            margin: 0 auto;
            align-items: center;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 40px;

        }

        .reviews-header h1 {
            font-size: 32px;
            color: #333;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .reviews-header p {
            color: #666;
            font-size: 16px;
        }

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

        .review-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .reviewer-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            background-color: #2fbcdb;
        }
        .text-av{
            font-size: 20px;
            font-weight: 600;
            padding: 5px 10px 5px 10px;
            text-align: center;
        }
        .textcenter{
            text-align: center;
        }

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

        .reviewer-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        .review-text {
            color: #666;
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .review-stars {
            display: flex;
            gap: 4px;
        }

        .star {
            color: #ddb035;
            font-size: 20px;
        }

        .star.empty {
            color: #e5e7eb;
        }

        @media (max-width: 768px) {
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .review-card {
                padding: 24px;
            }
            
            .reviewer-avatar {
                width: 50px;
                height: 50px;
            }
            
            .reviewer-name {
                font-size: 18px;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1025px) {
            .reviews-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

.review-cont{
    margin-top: 120px;
    margin-bottom: 60px;
}
.kudz{
    color: #000;
    padding-top: 60px;
    padding-left: 35px;
}

/* Feedback Button Styles */
.feedback-button {
    position: fixed;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    background-color: black;
    color: white;
    border: none;
    padding: 18px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    writing-mode: vertical-rl;
    
}

.feedback-button:hover {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #5bcbe3 0%, #5bcbe3 100%);
}

/* Modal Styles */
.feedback-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.feedback-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.feedback-modal-header {
    background: linear-gradient(135deg, #5bcbe3 0%, #5bcbe3 100%);
    color: black;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.feedback-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.feedback-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.feedback-close:hover {
    opacity: 0.7;
}

.feedback-modal-body {
    padding: 25px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 8px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.star-rating {
    display: flex;
    gap: 5px;
    align-items: center;
}

.star {
    font-size: 24px;
    color: #ddb035;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star:hover,
.star.active {
    color: #ffd700;
}

.submit-btn {
    background: linear-gradient(135deg, #5bcbe3 0%, #5bcbe3 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    display: none;
    text-align: center;
    padding: 20px;
    color: #28a745;
    font-weight: 600;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

/* Responsive Design for Feedback */
@media (max-width: 768px) {
    .feedback-button {
        right: 10px;
        padding: 12px 8px;
        font-size: 14px;
    }

    .feedback-modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .feedback-modal-header,
    .feedback-modal-body {
        padding: 20px;
    }
}

/* Feedback Form Scrollbar Styles */
.feedback-modal-body {
    max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #5bcbe3 #f1f1f1;
}

.feedback-modal-body::-webkit-scrollbar {
    width: 8px;
}

.feedback-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.feedback-modal-body::-webkit-scrollbar-thumb {
    background: #5bcbe3;
    border-radius: 4px;
}

.feedback-modal-body::-webkit-scrollbar-thumb:hover {
    background: #4a9cc7;
}

.feedback-form {
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #5bcbe3 #f1f1f1;
}

.feedback-form::-webkit-scrollbar {
    width: 8px;
}

.feedback-form::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.feedback-form::-webkit-scrollbar-thumb {
    background: #5bcbe3;
    border-radius: 4px;
}

.feedback-form::-webkit-scrollbar-thumb:hover {
    background: #4a9cc7;
}
.contact-wrapper {
            padding: 60px 20px;
            background-color: #ffffff;
        }

        /* Contact Container */
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Form Container */
        .form-container {
            display: flex;
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            min-height: 500px;
        }

        /* Left Panel */
        .left-panel {
            flex: 1;
            background: linear-gradient(135deg, #5bcbe3 0%, #5bcbe3 100%);
            color: white;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .left-panel h2 {
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .left-panel > p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        /* Contact Info */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .teh {
            flex: 1;
            font-size: 14px;
            line-height: 0.8;
            font-weight: 400;
        }

        .teh strong {
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
            font-size: 17px;
        }

        /* Right Panel */
        .right-panel {
            flex: 1.2;
            padding: 50px;
            background-color: white;
        }

        .right-panel h2 {
            font-size: 32px;
            margin-bottom: 30px;
            color: #000000;
            font-weight: 700;
        }

        /* Form Styles */
        form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-group {
            flex: 1;
        }

        input,
        textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #5bcbe3;
            border-radius: 10px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: #5bcbe3;
            background-color: white;
            box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
        }

        input::placeholder,
        textarea::placeholder {
            color: #7f8c8d;
        }

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

        /* Submit Button */
        .submit-btn {
            background: linear-gradient(135deg, #5bcbe3 0%, #5bcbe3 100%);
            color: white;
            padding: 16px 40px;
            border: none;
            border-radius: 10px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Tablet Styles */
        @media (max-width: 992px) {
            .form-container {
                flex-direction: column;
            }

            .left-panel {
                padding: 40px;
            }

            .left-panel h2 {
                font-size: 30px;
            }

            .right-panel {
                padding: 40px;
            }

            .right-panel h2 {
                font-size: 28px;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .contact-wrapper {
                padding: 40px 15px;
            }

            .form-container {
                border-radius: 16px;
            }

            .left-panel {
                padding: 30px;
                min-height: auto;
            }

            .left-panel h2 {
                font-size: 26px;
                margin-bottom: 15px;
            }

            .left-panel > p {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .contact-info {
                gap: 25px;
            }

            .contact-icon {
                width: 45px;
                height: 45px;
            }

            .contact-icon svg {
                width: 22px;
                height: 22px;
            }

            .teh {
                font-size: 15px;
            }

            .teh strong {
                font-size: 16px;
            }

            .right-panel {
                padding: 30px;
            }

            .right-panel h2 {
                font-size: 24px;
                margin-bottom: 25px;
            }

            .form-row {
                flex-direction: column;
                gap: 25px;
            }

            input,
            textarea {
                padding: 14px 18px;
                font-size: 15px;
            }

            .submit-btn {
                width: 100%;
                padding: 15px 30px;
                font-size: 16px;
                align-self: stretch;
            }
        }

        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .contact-wrapper {
                padding: 30px 10px;
            }

            .left-panel,
            .right-panel {
                padding: 25px 20px;
            }

            .left-panel h2 {
                font-size: 22px;
            }

            .left-panel > p {
                font-size: 15px;
            }

            .contact-item {
                gap: 15px;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
            }

            .contact-icon svg {
                width: 20px;
                height: 20px;
            }

            .teh {
                font-size: 14px;
            }

            .teh strong {
                font-size: 15px;
            }

            .right-panel h2 {
                font-size: 22px;
                margin-bottom: 20px;
            }

            input,
            textarea {
                padding: 12px 16px;
                font-size: 14px;
                border-radius: 8px;
            }

            textarea {
                min-height: 120px;
            }

            .submit-btn {
                padding: 14px 25px;
                font-size: 15px;
                border-radius: 8px;
            }
        }

        /* Large Desktop Styles */
        @media (min-width: 1400px) {
            .contact-container {
                max-width: 1300px;
            }

            .left-panel,
            .right-panel {
                padding: 60px;
            }

            .left-panel h2 {
                font-size: 40px;
            }

            .left-panel > p {
                font-size: 20px;
            }

            .contact-icon {
                width: 55px;
                height: 55px;
            }

            .contact-icon svg {
                width: 26px;
                height: 26px;
            }

            .teh {
                font-size: 17px;
            }

            .teh strong {
                font-size: 18px;
            }

            .right-panel h2 {
                font-size: 36px;
            }

            input,
            textarea {
                padding: 18px 24px;
                font-size: 17px;
            }

            .submit-btn {
                padding: 18px 45px;
                font-size: 18px;
            }
        }

        /* Print Styles */
        @media print {
            .contact-wrapper {
                padding: 20px;
            }

            .form-container {
                box-shadow: none;
                border: 1px solid #ddd;
            }

            .left-panel {
                background: none;
                color: #333;
                border-right: 1px solid #ddd;
            }

            .contact-icon {
                background-color: #f0f0f0;
            }

            .contact-icon svg {
                fill: #333;
            }

            .submit-btn {
                background: #333;
            }
        }

        /* Form Validation Styles */
        input:invalid:not(:focus),
        textarea:invalid:not(:focus) {
            border-color: #5bcbe3;
        }

        input:valid:not(:focus),
        textarea:valid:not(:focus) {
            border-color: #27ae60;
        }

        /* Loading State for Button */
        .submit-btn.loading {
            pointer-events: none;
            opacity: 0.7;
        }

        .submit-btn.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid white;
            border-top-color: transparent;
            border-radius: 50%;
            left: 50%;
            top: 50%;
            margin-left: -10px;
            margin-top: -10px;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* PDF Responsive Styles */
        object[type="application/pdf"] {
            width: 100%;
            max-width: 800px;
            height: 750px;
        }

        @media (max-width: 768px) {
            object[type="application/pdf"] {
                width: 100%;
                height: 500px;
            }
            
            .table-container {
                padding: 20px 10px;
                overflow-x: auto;
            }
        }

        @media (max-width: 480px) {
            object[type="application/pdf"] {
                width: 100%;
                height: 400px;
            }
            
            .table-container {
                padding: 15px 5px;
            }
        }

        @media (max-width: 360px) {
            object[type="application/pdf"] {
                width: 100%;
                height: 350px;
            }
        }
        /* Remove underline from all links */
a {
    text-decoration: none;
    color: #000;
}

/* If you want to be more specific for just the shop plans button */
