  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            width: 100%;
            min-height: 100vh;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        
        /* Main Container */
        .main-container {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: linear-gradient(135deg, #ff6300 0%, #e61c1c 100%);
            position: relative;

            animation: slideInFromLeft 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            will-change: transform, opacity;
            animation: slideInFromLeft 1.1s ease-out;
        }

        @keyframes slideInFromLeft {
            from {
                transform: translateX(-60px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        /* Left Content Section */
        .left-content {
            padding: 60px 80px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        /* Logo Section */
        .logo-section {
            display: flex;
            align-items: center;
            /* gap: 16px; */
            /* margin-bottom: 60px; */
        }
        
        .logo-img {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }
        
        .logo-text {
            color: white;
            font-weight: 500;
            letter-spacing: -0.5px;
            font-size: 32px;
            line-height: 1;
        }
        
        /* Content Section */
        .content-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
            max-width: 600px;
        }
        
        .title {
            color: white;
            font-weight: 500;
            letter-spacing: -1px;
            font-size: 42px;
            line-height: 1.1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .subtitle {
            color: rgba(255, 255, 255, 0.95);
            font-size: 22px;
            font-weight: 500;
            line-height: 1.4;
        }
        
        .packages-info {
            color: white;
            font-size: 22px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .icon {
            width: 40px;
            height: 40px;
            color: white;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }
        
        /* Download Section */
        .download-section {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 40px;
        }
        
        .download-icon {
            width: 180px;
            height: auto;
            margin-bottom: 8px;
        }
        
        .coming-soon {
            color: #ffbd38;
            font-weight: 600;
            letter-spacing: -0.5px;
            font-size: 28px;
            line-height: 1.2;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }
        
        .stores-info {
            color: white;
            font-size: 26px;
            font-weight: 500;
            line-height: 1.4;
        }
        
        /* Right Phone Section */
        .right-phone {
            padding: 40px 80px 40px 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .phone-container {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        /* Phone Mockup */
        .phone-mockup {
            /*background: #1a1a1a;*/
            border-radius: 25px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            width: 340px;
            height: 695px;
            /*padding: 12px;*/
            transition: transform 0.3s ease;
        }
        
        .phone-mockup:hover {
            transform: scale(1.02);
        }
        
        /* Phone Screen */
        .phone-screen {
            width: 100%;
            height: 100%;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
            background: white;
        }
        
        /* Phone Notch */
        /*.phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 28px;
            background: #1a1a1a;
            border-bottom-left-radius: 18px;
            border-bottom-right-radius: 18px;
            z-index: 10;
        }*/
        
        /* Iframe styling */
        .phone-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Loading State */
        .iframe-loading {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
        }
        
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(230, 28, 28, 0.2);
            border-top: 5px solid #e61c1c;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Error State */
        .iframe-error {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            padding: 30px;
            text-align: center;
            color: #333;
        }
        
        .error-icon {
            font-size: 48px;
            color: #e61c1c;
            margin-bottom: 16px;
        }
        
        /* Tablet Styles */
        @media (max-width: 1200px) {
            .main-container {
                grid-template-columns: 1fr;
                grid-template-rows: auto 1fr;
            }
            
            .left-content {
                padding: 40px 50px;
                min-height: auto;
            }
            
            .content-section {
                text-align: center;
                align-items: center;
            }
            
            .logo-section {
                justify-content: center;
                margin-bottom: 40px;
            }
            
            .packages-info {
                justify-content: center;
            }
            
            .download-section {
                align-items: center;
                margin-top: 30px;
            }
            
            .right-phone {
                padding: 40px 50px;
                min-height: 600px;
            }
            
            .phone-mockup {
                width: 280px;
                height: 572px;
            }
            
            .title {
                font-size: 42px;
            }
            
            .subtitle {
                font-size: 22px;
            }
            
            .packages-info {
                font-size: 22px;
            }
            
            .coming-soon {
                font-size: 24px;
            }
            
            .stores-info {
                font-size: 22px;
            }
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            .left-content {
                padding: 32px 24px;
            }
            
            .logo-text {
                font-size: 24px;
            }
            
            .logo-img {
                width: 50px;
                height: 50px;
            }
            
            .title {
                font-size: 36px;
            }
            
            .subtitle {
                font-size: 20px;
            }
            
            .packages-info {
                font-size: 20px;
            }
            
            .icon {
                width: 36px;
                height: 36px;
            }
            
            .download-icon {
                width: 150px;
            }
            
            .coming-soon {
                font-size: 22px;
            }
            
            .stores-info {
                font-size: 20px;
            }
            
            .right-phone {
                padding: 20px;
                min-height: 500px;
            }
            
            .phone-mockup {
                width: 240px;
                height: 490px;
            }
        }
        
        /* Small Mobile */
        @media (max-width: 480px) {
            .left-content {
                padding: 24px 20px;
            }
            
            .logo-text {
                font-size: 20px;
            }
            
            .logo-img {
                width: 40px;
                height: 40px;
            }
            
            .title {
                font-size: 28px;
            }
            
            .subtitle {
                font-size: 18px;
            }
            
            .packages-info {
                font-size: 18px;
            }
            
            .icon {
                width: 32px;
                height: 32px;
            }
            
            .download-icon {
                width: 130px;
            }
            
            .coming-soon {
                font-size: 20px;
            }
            
            .stores-info {
                font-size: 18px;
            }
            
            .phone-mockup {
                width: 200px;
                height: 408px;
            }
            
            /*.phone-notch {
                width: 120px;
                height: 24px;
            }*/
        }
        
        /* Animation for page load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .content-section > * {
            animation: fadeInUp 0.6s ease-out forwards;
        }
        
        .content-section > *:nth-child(1) { animation-delay: 0.1s; }
        .content-section > *:nth-child(2) { animation-delay: 0.2s; }
        .content-section > *:nth-child(3) { animation-delay: 0.3s; }
        
        .download-section {
            animation: fadeInUp 0.6s ease-out 0.4s forwards;
        }
        
        .phone-mockup {
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .main-container {
                display: block;
            }
            
            .left-content {
                display: none;
            }
            
            .right-phone {
                padding: 0;
                min-height: 100vh;
                width: 100%;
            }
            
            .phone-container {
                width: 100%;
                height: 100vh;
            }
            
            .phone-mockup {
                width: 100%;
                height: 100%;
                border-radius: 0;
                box-shadow: none;
            }
            
            .phone-mockup:hover {
                transform: none;
            }
            
            .phone-screen {
                border-radius: 0;
            }
        }
		
		


#tidio-chat-root {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
}

/* Chat window */
#tidio-chat-root iframe {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
}


 .navbar-nav .dropdown-menu {
      display: none;
    }
    .dropdown.show > .dropdown-menu {
      display: block;
    }
/* Hamburger 3 lines */

.navbar-toggler {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  padding: 0;
}

.navbar-toggler .toggler-icon {
  display: block;
  height: 3px;
  width: 100%;
  background-color: black; /* Black lines */
 border-radius: 2px;
}

.custom-container{
    margin-top: 0px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 0px;
   min-width:100vw;
   display: flex;
   justify-content: space-between;
    
    
}
.navbar-col{
    margin-left: 30px;
    margin-right: 20px;
}
nav ul{
    gap: 5px;
}