* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fef7f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #fef7f5;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF6B47;
}

.header-cta {
    background-color: transparent;
    border: 2px solid #333;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background-color: #333;
    color: white;
}

/* Main Hero Section */
.main {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    z-index: 10;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 35px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 27px;
    
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.contact-form {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.form-field {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.field-placeholder {
    flex: 1;
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
}

.form-button {
    background: #FF6B47;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6B47, #FF8A65);
}

.profile-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.profile-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    cursor: pointer;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.whatsapp {
    background-color: #25d366;
}

.verified-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.badge-circle {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FF6B47;
}

/* Decorative Shapes */
.decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape-1 {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #FFE082, #FFD54F);
    border-radius: 50%;
    opacity: 0.8;
    z-index: 1;
}

.shape-2 {
    position: absolute;
    top: 30%;
    right: -5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF8A65, #FF6B47);
    border-radius: 20px;
    transform: rotate(45deg);
    opacity: 0.7;
    z-index: 1;
}

.shape-3 {
    position: absolute;
    bottom: 20%;
    left: -15%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FFB74D, #FFA726);
    border-radius: 30px;
    opacity: 0.6;
    z-index: 1;
}

.shape-4 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFAB91, #FF8A65);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
}

/* Hero Right Content */
.hero-right {
    padding-left: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #FF6B47;
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background: #FF6B47;
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 71, 0.3);
}

.cta-button:hover {
    background: #FF5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 71, 0.4);
}

/* Features Section */
.features-section {
  
    background-color: #fef7f5;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 120px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-item:nth-child(2) {
    grid-template-columns: 1fr 1fr;
}

.feature-content {
    padding: 0 20px;
}

.feature-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.feature-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

/* Hand Mockup Styles */
.hand-mockup {
    position: relative;
    width: 100%;
    height: 100%;
}

.hand-illustration {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.phone-in-hand {
    width: 200px;
    height: 380px;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 25px;
    padding: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: rotate(-5deg);
}

.right-hand .phone-in-hand {
    transform: rotate(5deg);
}

.phone-screen-content {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 19px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Website Preview (Left Side) */
.website-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6B47, #FF8A65);
}

.profile-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.profile-details p {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}

.social-row {
    display: flex;
    gap: 4px;
}

.social-mini {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.social-mini.facebook {
    background-color: #3b5998;
}

.social-mini.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.social-mini.linkedin {
    background-color: #0077b5;
}

.social-mini.whatsapp {
    background-color: #25d366;
}

.products-section h5 {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.product-item {
    width: 100%;
    height: 40px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 6px;
}

/* Desktop Preview */
.desktop-preview {
    position: absolute;
    top: -40px;
    left: -60px;
    width: 120px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.desktop-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    padding: 12px;
}

.browser-bar {
    height: 12px;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    margin-bottom: 4px;
}

.browser-dots {
    display: flex;
    gap: 3px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.dot.red {
    background-color: #ff5f56;
}

.dot.yellow {
    background-color: #ffbd2e;
}

.dot.green {
    background-color: #27ca3f;
}

.desktop-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nav-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 2px;
}

.content-lines {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.line {
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
}

.line:nth-child(1) {
    width: 80%;
}

.line:nth-child(2) {
    width: 60%;
}

.line:nth-child(3) {
    width: 90%;
}

/* Commission Display (Right Side) */
.commission-display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.percentage-circle {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
   
}

.zero {
    font-size: 36px;
    font-weight: 700;
    color: #ff4444;
}

.commission-text {
    font-size: 12px;
    color: #ff4444;
    font-weight: 600;
}

/* Background Shapes */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape-circle {
    position: absolute;
    border-radius: 50%;
}

.shape-circle.blue {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #E3F2FD, #BBDEFB);
    top: -20%;
    left: -30%;
    opacity: 0.8;
}

.shape-circle.yellow {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #FFF9C4, #FFEB3B);
    top: -10%;
    right: -40%;
    opacity: 0.7;
}

.shape-dots {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, #FF6B47 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.4;
}

.shape-triangle {
    position: absolute;
    bottom: 10%;
    right: 20%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid #E8F5E8;
    opacity: 0.6;
}

.money-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.coin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3);
}

.coin-1 {
    top: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.coin-2 {
    top: 60%;
    right: 15%;
    animation: float 3s ease-in-out infinite 0.5s;
}

.coin-3 {
    bottom: 25%;
    left: 20%;
    animation: float 3s ease-in-out infinite 1s;
}

.bill {
    position: absolute;
    width: 40px;
    height: 20px;
    background: linear-gradient(45deg, #90EE90, #32CD32);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(50, 205, 50, 0.3);
}

.bill-1 {
    top: 30%;
    right: 10%;
    animation: float 3s ease-in-out infinite 0.3s;
}

.bill-2 {
    bottom: 40%;
    left: 5%;
    animation: float 3s ease-in-out infinite 0.8s;
}

.store-icon {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 35px;
    height: 30px;
    background: linear-gradient(45deg, #FF6B47, #FF8A65);
    border-radius: 6px 6px 0 0;
    box-shadow: 0 4px 10px rgba(255, 107, 71, 0.3);
}

.store-icon::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(45deg, #FF5722, #FF6B47);
    border-radius: 0 0 6px 6px;
}

.shape-mesh {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    opacity: 0.6;
}

.shape-mesh.orange {
    background: linear-gradient(45deg, #FFCC80, #FFB74D);
    top: 40%;
    left: -10%;
    transform: rotate(15deg);
}

.shape-mesh.pink {
    background: linear-gradient(45deg, #F8BBD9, #F48FB1);
    bottom: 20%;
    right: -5%;
    transform: rotate(-20deg);
}

/* Google Section */
.google-section {
  
    background-color: #fef7f5;
}

.google-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.google-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.search-mockup {
    position: relative;
    width: 100%;
    height: 100%;
}

.hand-with-magnifier {
    position: absolute;
    top: 10%;
    left: 10%;
    z-index: 20;
}

.magnifying-glass {
    position: relative;
    width: 120px;
    height: 120px;
    transform: rotate(-15deg);
}

.glass-lens {
    width: 80px;
    height: 80px;
    border: 4px solid #666;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    position: relative;
}

.glass-lens::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.glass-handle {
    position: absolute;
    bottom: 30px;
    right: 12px;
    width: 52px;
    height: 8px;
    background: #666;
    border-radius: 4px;
    transform: rotate(45deg);
}

.google-search-results {
    position: relative;
    z-index: 10;
    margin-left: 40px;
    margin-top: 60px;
}

.browser-window {
    width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.browser-header {
    background: #f8f9fa;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red {
    background: #ff5f56;
}

.control-dot.yellow {
    background: #ffbd2e;
}

.control-dot.green {
    background: #27ca3f;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.google-logo {
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 24px;
    padding: 8px 16px;
}

.search-text {
    font-size: 14px;
    color: #333;
}

.search-icon {
    opacity: 0.6;
}


.result-item {
    position: relative;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.result-item.highlighted {
    
    box-shadow: 0 2px 10px rgba(66, 133, 244, 0.1);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.result-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a73e8;
    margin: 0;
}

.result-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars {
    color: #fbbc04;
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    color: #666;
}

.result-preview {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.bakery-image {
    width: 80px;
    height: 60px;
    background: linear-gradient(45deg, #8bc34a, #4caf50);
    border-radius: 8px;
    position: relative;
}

.bakery-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 4px;
    opacity: 0.3;
}

.cake-image {
    width: 80px;
    height: 60px;
    background: linear-gradient(45deg, #ff9800, #f57c00);
    border-radius: 8px;
    position: relative;
}

.cake-image::after {
    content: '🎂';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-line {
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
}

.detail-line.short {
    width: 60%;
}

.actual-results-badge {
    position: absolute;
    top: -92px;
    right: -26px;
    
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(8deg);
    
}

.actual-results-badge::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 20%;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    
}

.google-text {
    padding-left: 40px;
}

.google-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.google-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Repeat Orders Section */
.repeat-orders-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.repeat-orders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.repeat-orders-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.repeat-orders-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hand-with-bag {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.shopping-bag {
    position: relative;
    width: 100px;
    height: 120px;
}

.bag-handle {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    border: 4px solid #10b981;
    border-bottom: none;
    border-radius: 30px 30px 0 0;
}

.bag-body {
    width: 100%;
    height: 100px;
    background: #10b981;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
}

.bag-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 5px,
        rgba(255, 255, 255, 0.1) 5px,
        rgba(255, 255, 255, 0.1) 10px
    );
}

.devices-flow {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.device {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.mobile-device {
    width: 180px;
    height: 320px;
    position: absolute;
    top: 10%;
    left: 25%;
}

.desktop-device {
    width: 280px;
    height: 180px;
    position: absolute;
    top: 20%;
    right: 10%;
}

.tablet-device {
    width: 200px;
    height: 280px;
    position: absolute;
    bottom: 30%;
    left: 40%;
}

.mobile-small {
    width: 160px;
    height: 280px;
    position: absolute;
    bottom: 10%;
    right: 20%;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: white;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.menu-item {
    width: 20px;
    height: 3px;
    background: #9ca3af;
    border-radius: 2px;
}

.product-showcase {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex: 1;
    align-items: center;
}

.product-image {
    width: 60px;
    height: 80px;
    border-radius: 8px;
    position: relative;
}

.yoga-mat-brown {
    background: linear-gradient(45deg, #8b5a3c, #a0522d);
}

.yoga-mat-orange {
    background: linear-gradient(45deg, #ff8c00, #ff7f50);
}

.yoga-mat-blue {
    background: linear-gradient(45deg, #4682b4, #5f9ea0);
}

.browser-bar {
    height: 25px;
    background: #f3f4f6;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    padding: 0 8px;
    margin: -12px -12px 8px -12px;
}

.browser-dots {
    display: flex;
    gap: 4px;
}

.browser-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    
}

.website-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.profile-info {
    flex: 1;
}

.profile-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.brand-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.contact-info {
    font-size: 12px;
    color: #6b7280;
}

.language-selector {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
}

.social-icons-row {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.social-icon {
    width: 30px;
    height: 24px;
    border-radius: 4px;
    position: relative;
}

.social-icon.amazon {
    background: #ff9900;
}

.social-icon.flipkart {
    background: #2874f0;
}

.social-icon.other {
    background: #10b981;
}

.social-icon.amazon-alt {
    background: #232f3e;
}

.ecommerce-view {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 100px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 4px;
}

.product-rating {
    font-size: 12px;
}

.stars {
    color: #fbbf24;
}

.product-detail {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-header {
    text-align: center;
    margin-bottom: 12px;
}

.brand-logo {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.product-title {
    font-size: 11px;
    color: #6b7280;
}

.product-main-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, #4682b4, #5f9ea0);
    border-radius: 8px;
    margin-bottom: 12px;
}

.product-details {
    text-align: center;
}

.delivery-info {
    font-size: 10px;
    color: #10b981;
    margin-top: 4px;
}

.arrow-flow {
    position: absolute;
    z-index: 5;
}

.arrow-1 {
    top: 25%;
    left: 45%;
}

.arrow-2 {
    top: 35%;
    right: 25%;
}

.arrow-3 {
    bottom: 40%;
    left: 55%;
}

.repeat-orders-text {
    color: white;
    padding-left: 40px;
}

.repeat-orders-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.repeat-orders-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Security Section */
.security-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 71, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.security-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.security-description {
    font-size: 18px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 32px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.security-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.security-feature:hover::before {
    left: 100%;
}

.security-feature:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.feature-icon.ssl {
    background: linear-gradient(135deg, #4caf4fa2, #4caf4f8f);
    box-shadow: 0 0 20px rgb(76 175 80 / 56%);
}

.feature-icon.payment {
    background: linear-gradient(135deg, #2196f39c, #42a5f587);
    box-shadow: 0 0 20px rgb(33 150 243 / 70%);
}

.feature-icon.data {
    background: linear-gradient(135deg, #ff980073, #ffb74d63);
    box-shadow: 0 0 20px rgb(255 152 0 / 71%);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-title {
    font-size: 50px;
    font-weight: 700;
    color: #1f2937;
}
.feature-title-ssl {
    font-size: 20px;
    font-weight: 700;
    color: #f8f8f8;
}

.feature-subtitle {
    font-size: 14px;
    color: #888;
}

.security-mockup {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-container {
    position: relative;
    z-index: 2;
}

.main-lock {
    position: relative;
    animation: lockPulse 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(52, 152, 219, 0.6));
}

.lock-body {
    width: 140px;
    height: 160px;
    background: linear-gradient(145deg, #1e3c72, #2a5298);
    border-radius: 25px;
    position: relative;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        inset 0 3px 15px rgba(255, 255, 255, 0.1),
        0 0 50px rgba(52, 152, 219, 0.3);
    border: 3px solid #3498db;
    overflow: hidden;
}

.lock-body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(52, 152, 219, 0.1), transparent);
    animation: lockRotate 8s linear infinite;
}

.lock-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

.lock-shackle {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
}

.shackle-left,
.shackle-right {
    position: absolute;
    width: 12px;
    height: 50px;
    background: linear-gradient(145deg, #1e3c72, #2a5298);
    border-radius: 12px;
    border: 3px solid #3498db;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.5);
}

.shackle-left {
    left: 0;
    border-radius: 12px 12px 0 0;
    animation: shackleGlow 2s ease-in-out infinite alternate;
}

.shackle-right {
    right: 0;
    border-radius: 12px 12px 0 0;
    animation: shackleGlow 2s ease-in-out infinite alternate;
    animation-delay: 1s;
}

.lock-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.keyhole {
    position: relative;
    margin-bottom: 25px;
}

.keyhole-circle {
    width: 24px;
    height: 24px;
    background: linear-gradient(145deg, #0f0f0f, #2a2a2a);
    border-radius: 50%;
    margin: 0 auto 0px;
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(52, 152, 219, 0.5);
    animation: keyholeGlow 3s ease-in-out infinite;
}

.keyhole-slot {
    width: 8px;
    height: 18px;
    background: linear-gradient(145deg, #0f0f0f, #2a2a2a);
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(52, 152, 219, 0.5);
}

.lock-brand {
    font-size: 14px;
    font-weight: 700;
    color: #3498db;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.8);
    animation: textPulse 2s ease-in-out infinite;
}

/* Security Cards */
.security-cards {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.security-card {
    position: absolute;
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: cardFloat 6s ease-in-out infinite;
}

.security-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-card .card-content h4 {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.security-card .card-content p {
    font-size: 10px;
    color: #b0b0b0;
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 0;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    animation-delay: 4s;
}

.security-shields {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
}

.shield {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatShield 5s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.shield::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: conic-gradient(transparent, rgba(52, 152, 219, 0.5), transparent);
    animation: shieldRotate 4s linear infinite;
    z-index: -1;
}

.shield-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.3) 0%, transparent 70%);
    animation: pulsate 2s ease-in-out infinite;
}

.shield-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.shield-2 {
    top: 15%;
    right: 10%;
    animation-delay: 1.5s;
}

.shield-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 3s;
}

.security-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #3498db;
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.8);
}

.particle-1 { top: 15%; left: 25%; animation-delay: 0s; }
.particle-2 { top: 35%; right: 20%; animation-delay: 1s; }
.particle-3 { bottom: 30%; left: 30%; animation-delay: 2s; }
.particle-4 { bottom: 20%; right: 35%; animation-delay: 3s; }
.particle-5 { top: 65%; left: 15%; animation-delay: 4s; }
.particle-6 { top: 25%; right: 40%; animation-delay: 5s; }
.particle-7 { bottom: 45%; left: 45%; animation-delay: 6s; }
.particle-8 { top: 80%; right: 25%; animation-delay: 7s; }

/* Data Flow Lines */
.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    border-radius: 2px;
    opacity: 0.6;
    animation: dataFlow 3s ease-in-out infinite;
}

.flow-line.line-1 {
    top: 30%;
    left: 20%;
    width: 60%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.flow-line.line-2 {
    top: 50%;
    left: 10%;
    width: 80%;
    animation-delay: 1s;
    transform: rotate(-10deg);
}

.flow-line.line-3 {
    top: 70%;
    left: 25%;
    width: 50%;
    animation-delay: 2s;
    transform: rotate(25deg);
}

.flow-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.8);
    animation: dotMove 3s ease-in-out infinite;
}

.security-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-element {
    position: absolute;
    opacity: 0.1;
}

.circuit-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><path d="M20 40h40M40 20v40M30 30h20v20H30z" stroke="%233498db" stroke-width="2" fill="none"/></svg>');
    animation: rotate 25s linear infinite;
}

.circuit-2 {
    top: 70%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="35" stroke="%23e74c3c" stroke-width="2" fill="none"/><circle cx="50" cy="50" r="20" stroke="%23e74c3c" stroke-width="2" fill="none"/></svg>');
    animation: rotate 20s linear infinite reverse;
}

.circuit-3 {
    bottom: 20%;
    left: 15%;
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><polygon points="30,5 50,18 50,42 30,55 10,42 10,18" stroke="%23f39c12" stroke-width="2" fill="none"/></svg>');
    animation: rotate 30s linear infinite;
}

.matrix-1 {
    top: 20%;
    right: 30%;
    width: 120px;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><g stroke="%2327ae60" stroke-width="1" fill="none"><rect x="10" y="10" width="20" height="20"/><rect x="40" y="10" width="20" height="20"/><rect x="70" y="10" width="20" height="20"/><rect x="10" y="40" width="20" height="20"/><rect x="40" y="40" width="20" height="20"/><rect x="70" y="40" width="20" height="20"/></g></svg>');
    animation: matrixGlow 6s ease-in-out infinite;
}

.matrix-2 {
    bottom: 40%;
    left: 40%;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><g stroke="%239b59b6" stroke-width="1" fill="none"><line x1="10" y1="10" x2="70" y2="10"/><line x1="10" y1="25" x2="70" y2="25"/><line x1="10" y1="40" x2="70" y2="40"/><line x1="10" y1="55" x2="70" y2="55"/><line x1="10" y1="70" x2="70" y2="70"/></g></svg>');
    animation: matrixGlow 8s ease-in-out infinite;
    animation-delay: 2s;
}

/* Enhanced Animations */
@keyframes backgroundPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes lockRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes shackleGlow {
    0% { box-shadow: 0 0 20px rgba(52, 152, 219, 0.5); }
    100% { box-shadow: 0 0 30px rgba(52, 152, 219, 0.8), 0 0 50px rgba(52, 152, 219, 0.4); }
}

@keyframes keyholeGlow {
    0%, 100% { box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(52, 152, 219, 0.5); }
    50% { box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.8), 0 0 25px rgba(52, 152, 219, 0.8); }
}

@keyframes textPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(52, 152, 219, 0.8); }
    50% { text-shadow: 0 0 20px rgba(52, 152, 219, 1), 0 0 30px rgba(52, 152, 219, 0.6); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes shieldRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulsate {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

@keyframes dataFlow {
    0% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%); }
}

@keyframes dotMove {
    0% { left: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes matrixGlow {
    0%, 100% { opacity: 0.1; filter: brightness(1); }
    50% { opacity: 0.3; filter: brightness(1.5); }
}

/* Update existing responsive styles */
@media (max-width: 768px) {
    .security-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .security-title {
        font-size: 36px;
    }
    
    .security-mockup {
        height: 450px;
    }
    
    .lock-body {
        width: 120px;
        height: 140px;
    }
    
    .security-shields {
        width: 280px;
        height: 280px;
    }
    
    .shield {
        width: 50px;
        height: 50px;
    }
    
    .security-cards {
        width: 320px;
        height: 320px;
    }
    
    .security-card {
        width: 150px;
        height: 100px;
        padding: 8px;
    }
    
    .security-features {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Phone Numbers and Marketing Content Section */
.phone-marketing-section {
    padding: 100px 0;
    background-color: #fef7f5;
    position: relative;
}

.phone-marketing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Phone Numbers Section */
.phone-numbers-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.phone-numbers-text {
    max-width: 500px;
}

.phone-numbers-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.phone-numbers-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.phone-numbers-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.phone-mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.phone-device {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 35px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.phone-screen-contacts {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 27px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.contacts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.header-bar {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
}

.header-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.header-badge {
    background: #ff6b47;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b47, #ff8a65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.contact-info {
    flex: 1;
}

.contact-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.contact-number {
    font-size: 14px;
    color: #666;
}

.phone-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    top: 10%;
    left: 50%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #fff3e0, #ffcc80);
    bottom: 20%;
    right: 15%;
    animation: float 6s ease-in-out infinite 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #f3e5f5, #ce93d8);
    top: 60%;
    left: 20%;
    animation: float 6s ease-in-out infinite 4s;
}

.bg-dots {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, #ff6b47 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
}

/* Marketing Content Section */
.marketing-content-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.marketing-content-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.marketing-mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.marketing-device {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(8deg);
    width: 280px;
    height: 500px;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.marketing-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shopping-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.app-back-btn {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.app-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.app-cart-icon {
    font-size: 18px;
    position: relative;
}

.app-cart-icon::after {
    content: '2';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: #ff6b47;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.shopping-app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 1;
}

.product-card-mini {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-card-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-image-mini {
    width: 100%;
    height: 60px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.product-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://encrypted-tbn0.gstatic.com/shopping?q=tbn:ANd9GcRyTs0uwo_w9qUzpBl522doqtOa20SUnA8mofw3w_-KZDkqBqBFm1TgD774am4LlXqFnlpXNkoTj3QbE2CFiBMXxBZ0spUjnEPrMVlhZyol4glunddFM7CF');
    background-size: cover;
    background-position: center;
}

.product-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-image: url('https://encrypted-tbn2.gstatic.com/shopping?q=tbn:ANd9GcQS_USYUUfAQZhRtEGWwAYLmZO6nqIunCovwmO5ZWiW7iz6vGA28tbYbus0HKmax9pVIxYPasFDwyWNT3y7y64o-bZXihSD_pJCCpM6sY0');
    background-size: cover;
    background-position: center;
}

.product-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    background-image: url('https://encrypted-tbn3.gstatic.com/shopping?q=tbn:ANd9GcS98Oeql50krI6pAbFegjxVinoMOuNlCTaGRJVxbxQWV7m1GhGxffG1roLCLKbc-5gGUQynP0GbaOVTSR4cXTCA6HLqsjfRPp3kHp_UbMT4oL5WGrj5ifqR');
    background-size: cover;
    background-position: center;
}

.product-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    background-image: url('https://encrypted-tbn1.gstatic.com/shopping?q=tbn:ANd9GcSc-4ZPF4vfxGeyY89owouTVw-Mr-7xbV2Fc96hV-6CtB-NRJk7dGoyWJmsIpCpXcL0rGw_1B_vzlPOMrcK_QDPhMDGC9jUZNmLI8ehU7WzkWzc30Kxn4l93w');
    background-size: cover;
    background-position: center;
}

.product-image-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: productShine 3s ease-in-out infinite;
}

.product-info-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-name-mini {
    font-size: 10px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.product-price-mini {
    font-size: 12px;
    font-weight: 700;
    color: #ff6b47;
}

.shopping-app-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: #ff6b47;
}

.nav-item.active .nav-icon {
    transform: scale(1.1);
}

.nav-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.nav-label {
    font-size: 8px;
    font-weight: 500;
    color: #666;
}

.nav-item.active .nav-label {
    color: #ff6b47;
    font-weight: 600;
}

.marketing-hand {
    position: absolute;
    bottom: 10%;
    left: 10%;
    z-index: 15;
}

.hand-illustration-marketing {
    width: 80px;
    height: 100px;
    background: linear-gradient(45deg, #fdbcb4, #f48fb1);
    border-radius: 40px 40px 20px 20px;
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.hand-illustration-marketing::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: linear-gradient(45deg, #fdbcb4, #f48fb1);
    border-radius: 30px;
}

.marketing-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-circle-marketing {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.bg-circle-marketing.circle-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
    top: 15%;
    right: 10%;
    animation: float 6s ease-in-out infinite 1s;
}

.bg-circle-marketing.circle-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #fff3e0, #ffcc80);
    bottom: 25%;
    left: 15%;
    animation: float 6s ease-in-out infinite 3s;
}

.bg-dots-marketing {
    position: absolute;
    top: 40%;
    right: 20%;
    width: 50px;
    height: 50px;
    background-image: radial-gradient(circle, #10b981 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.4;
}

.marketing-content-text {
    max-width: 500px;
}

.marketing-content-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.marketing-content-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-cta {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-right {
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .nav-list {
        display: none;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4 {
        display: none;
    }
    
    /* Features Section Mobile */
    .feature-item {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-item:nth-child(2) {
        grid-template-columns: 1fr;
    }
    
    .feature-item:nth-child(2) .feature-visual {
        order: -1;
    }
    
    .feature-title {
        font-size: 32px;
    }
    
    .feature-description {
        font-size: 16px;
    }
    
    .feature-visual {
        height: 400px;
    }
    
    .features-grid {
        gap: 80px;
    }
    
    .shape-circle.blue,
    .shape-circle.yellow {
        width: 150px;
        height: 150px;
    }
    
    .desktop-preview {
        display: none;
    }
    
    /* Google Section Mobile */
    .google-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .google-title {
        font-size: 36px;
    }
    
    .google-description {
        font-size: 16px;
    }
    
    .google-visual {
        height: 400px;
    }
    
    .browser-window {
        width: 300px;
    }
    
    .magnifying-glass {
        width: 80px;
        height: 80px;
    }
    
    .glass-lens {
        width: 60px;
        height: 60px;
    }
    
    /* Security Section Mobile */
    .security-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .security-title {
        font-size: 36px;
    }
    
    .security-description {
        font-size: 16px;
    }
    
    .security-visual {
        height: 400px;
    }
    
    .security-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .security-card {
        padding: 12px;
    }
    
    .security-card h4 {
        font-size: 12px;
    }
    
    .security-card p {
        font-size: 10px;
    }
    
    .main-lock {
        width: 120px;
        height: 120px;
    }
    
    .lock-body {
        width: 100px;
        height: 80px;
    }
    
    .lock-shackle {
        width: 60px;
        height: 30px;
    }
    
    /* Device Flow Mobile */
    .mobile-device {
        width: 160px;
        height: 280px;
        transform: translateY(-50%) rotateY(-10deg) rotateX(3deg);
    }
    
    .desktop-device {
        width: 240px;
        height: 140px;
        transform: rotateY(5deg) rotateX(-3deg);
    }
    
    .tablet-device {
        width: 180px;
        height: 240px;
        transform: rotateY(-5deg) rotateX(4deg);
    }
    
    .mobile-small {
        width: 120px;
        height: 200px;
        transform: translateY(-50%) rotateY(8deg) rotateX(-2deg);
    }
    
    .device-screen {
        padding: 12px;
    }
    
    .store-header {
        padding: 12px 16px;
        margin-bottom: 16px;
    }
    
    .nav-brand {
        font-size: 16px;
    }
    
    .product-showcase {
        gap: 8px;
    }
    
    .product-image {
        height: 80px;
    }
    
    .profile-section {
        padding: 12px;
    }
    
    .profile-pic {
        width: 36px;
        height: 36px;
    }
    
    .profile-info h4 {
        font-size: 12px;
    }
    
    .brand-name {
        font-size: 14px;
    }
    
    .contact-info {
        font-size: 10px;
    }
    
    .social-icons-row {
        gap: 8px;
    }
    
    .social-icon {
        width: 28px;
        height: 20px;
    }
    
    .product-grid {
        gap: 12px;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-img {
        height: 60px;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-name {
        font-size: 12px;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    .product-detail {
        padding: 12px;
    }
    
    .product-header {
        padding: 12px;
    }
    
    .brand-logo {
        font-size: 14px;
    }
    
    .product-title {
        font-size: 10px;
    }
    
    .product-details {
        padding: 12px;
    }
    
    .product-details .product-name {
        font-size: 12px;
    }
    
    .product-details .product-price {
        font-size: 14px;
    }
    
    .delivery-info {
        font-size: 10px;
    }
    
    /* Marketing Screen Mobile */
    .marketing-screen {
        padding: 16px;
    }
    
    .shopping-app-header {
        padding: 8px 12px;
    }
    
    .app-title {
        font-size: 14px;
    }
    
    .app-cart-icon {
        font-size: 16px;
    }
    
    .product-showcase-grid {
        gap: 8px;
    }
    
    .product-card-mini {
        padding: 8px;
    }
    
    .product-image-mini {
        height: 40px;
    }
    
    .product-name-mini {
        font-size: 9px;
    }
    
    .product-price-mini {
        font-size: 10px;
    }
    
    .shopping-app-footer {
        padding: 8px 0;
    }
    
    .nav-icon {
        font-size: 14px;
    }
    
    .nav-label {
        font-size: 7px;
    }
    
    /* Contact List Mobile */
    .phone-screen-contacts {
        padding: 16px;
    }
    
    .contacts-header {
        padding-bottom: 12px;
    }
    
    .header-title {
        font-size: 12px;
    }
    
    .header-badge {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .contact-item {
        padding: 8px 0;
    }
    
    .contact-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .contact-name {
        font-size: 14px;
    }
    
    .contact-number {
        font-size: 12px;
    }
    
    /* Hand Illustration Mobile */
    .hand-illustration-marketing {
        width: 60px;
        height: 80px;
    }
    
    .hand-illustration-marketing::after {
        width: 40px;
        height: 16px;
    }
    
    /* Background Elements Mobile */
    .bg-circle {
        width: 120px !important;
        height: 120px !important;
    }
    
    .bg-circle-marketing {
        width: 80px !important;
        height: 80px !important;
    }
    
    .bg-dots,
    .bg-dots-marketing {
        width: 40px;
        height: 40px;
        background-size: 8px 8px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-title,
    .google-title,
    .security-title,
    .phone-numbers-title,
    .marketing-content-title {
        font-size: 28px;
    }
    
    .feature-description,
    .google-description,
    .security-description,
    .phone-numbers-description,
    .marketing-content-description {
        font-size: 14px;
    }
    
    .phone-device,
    .marketing-device {
        width: 200px;
        height: 400px;
    }
    
    .browser-window {
        width: 280px;
    }
    
    .magnifying-glass {
        width: 70px;
        height: 70px;
    }
    
    .glass-lens {
        width: 50px;
        height: 50px;
    }
    
    .main-lock {
        width: 100px;
        height: 100px;
    }
    
    .lock-body {
        width: 100px;
        height: 100px;
    }
    
    .security-cards {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .security-card {
        padding: 8px;
    }
    
    .security-card h4 {
        font-size: 10px;
    }
    
    .security-card p {
        font-size: 8px;
    }
    
    .mobile-device {
        width: 120px;
        height: 220px;
    }
    
    .desktop-device {
        width: 200px;
        height: 120px;
    }
    
    .tablet-device {
        width: 140px;
        height: 200px;
    }
    
    .mobile-small {
        width: 100px;
        height: 180px;
    }
    
    .device-screen {
        padding: 8px;
    }
    
    .store-header {
        padding: 8px 12px;
        margin-bottom: 12px;
    }
    
    .nav-brand {
        font-size: 14px;
    }
    
    .product-showcase {
        gap: 6px;
    }
    
    .product-image {
        height: 60px;
    }
    
    .profile-section {
        padding: 8px;
    }
    
    .profile-pic {
        width: 28px;
        height: 28px;
    }
    
    .profile-info h4 {
        font-size: 10px;
    }
    
    .brand-name {
        font-size: 12px;
    }
    
    .contact-info {
        font-size: 8px;
    }
    
    .social-icons-row {
        gap: 6px;
    }
    
    .social-icon {
        width: 24px;
        height: 16px;
    }
    
    .product-grid {
        gap: 8px;
    }
    
    .product-img {
        height: 40px;
    }
    
    .product-info {
        padding: 6px;
    }
    
    .product-name {
        font-size: 10px;
    }
    
    .product-price {
        font-size: 12px;
    }
    
    .marketing-screen {
        padding: 12px;
    }
    
    .shopping-app-header {
        padding: 6px 10px;
    }
    
    .app-title {
        font-size: 12px;
    }
    
    .product-showcase-grid {
        gap: 6px;
    }
    
    .product-card-mini {
        padding: 6px;
    }
    
    .product-image-mini {
        height: 30px;
    }
    
    .product-name-mini {
        font-size: 8px;
    }
    
    .product-price-mini {
        font-size: 9px;
    }
    
    .shopping-app-footer {
        padding: 6px 0;
    }
    
    .nav-icon {
        font-size: 12px;
    }
    
    .nav-label {
        font-size: 6px;
    }
    
    .contact-avatar {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .contact-name {
        font-size: 12px;
    }
    
    .contact-number {
        font-size: 10px;
    }
    
    .hand-illustration-marketing {
        width: 50px;
        height: 60px;
    }
    
    .bg-circle {
        width: 80px !important;
        height: 80px !important;
    }
    
    .bg-circle-marketing {
        width: 60px !important;
        height: 60px !important;
    }
    
    .bg-dots,
    .bg-dots-marketing {
        width: 30px;
        height: 30px;
        background-size: 6px 6px;
    }
    
    .header-cta {
        font-size: 10px;
        padding: 8px 12px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Unified Digital Identity Section */
.unified-digital-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.unified-digital-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 107, 71, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    animation: backgroundShift 10s ease-in-out infinite;
}

.unified-digital-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.unified-digital-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.unified-digital-description {
    font-size: 18px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 32px;
}

.unified-digital-cta {
    background: linear-gradient(135deg, #FF6B47, #ff8a65);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 71, 0.3);
    position: relative;
    overflow: hidden;
}

.unified-digital-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.unified-digital-cta:hover::before {
    left: 100%;
}

.unified-digital-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 71, 0.4);
}

/* Central Profile Card */
.unified-mockup {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-profile-card {
    position: relative;
    width: 280px;
    height: 320px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: cardFloat 6s ease-in-out infinite;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 107, 71, 0.5);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-info p {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 2px;
}

.profile-info span {
    color: #888;
    font-size: 12px;
}

/* Growth Chart */
.growth-chart {
    position: relative;
    height: 160px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 8px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 6px;
    height: 100px;
}

.bar {
    width: 20px;
    background: linear-gradient(180deg, #4CAF50, #81C784);
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-out infinite;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.bar-1 { height: 30%; animation-delay: 0s; }
.bar-2 { height: 45%; animation-delay: 0.2s; }
.bar-3 { height: 35%; animation-delay: 0.4s; }
.bar-4 { height: 60%; animation-delay: 0.6s; }
.bar-5 { height: 80%; animation-delay: 0.8s; }
.bar-6 { height: 100%; animation-delay: 1s; }

.growth-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    animation: arrowPulse 2s ease-in-out infinite;
}

.profit-indicator {
    position: absolute;
    top: 10px;
    right: 80px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: profitSpin 4s linear infinite;
}

/* Platform Icons */
.platform-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.platform-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: platformFloat 8s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.platform-icon .icon-container {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.amazon { top: 5%; left: 15%; animation-delay: 0s; }
.amazon .icon-container { background: #FF9900; }

.facebook { top: 10%; right: 10%; animation-delay: 1s; }
.facebook .icon-container { background: #4267B2; }

.whatsapp { top: 35%; left: 5%; animation-delay: 2s; }
.whatsapp .icon-container {background: #25d3661c;}

.twitter {top: 54%;left: 2%;animation-delay: 3s;}
.twitter .icon-container { background: #1DA1F2; }

.instagram {bottom: -150%;left: 56%;animation-delay: 4s;}
.instagram .icon-container { background: #E4405F; }

.flipkart {bottom: 27%;right: 2%;animation-delay: 5s;}
.flipkart .icon-container { background: #047BD6; }

.zomato {bottom: -122%;right: 175%;animation-delay: 6s;}
.zomato .icon-container { background: #E23744; }

.justdial {top: 130%;right: -10%;animation-delay: 7s;}
.justdial .icon-container { background: #F39C12; font-size: 14px; }

/* Hand Illustration */
.hand-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 250px;
    z-index: 5;
}

.hand-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    animation: handWave 4s ease-in-out infinite;
}

.hand-shape {
    position: absolute;
    bottom: 40px;
    right: 20px;
    width: 120px;
    height: 150px;
}

.palm {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, #FFDBCB, #F4A688);
    border-radius: 40px 40px 20px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.thumb {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 30px;
    height: 50px;
    background: linear-gradient(135deg, #FFDBCB, #F4A688);
    border-radius: 15px;
    transform: rotate(-30deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.fingers {
    position: absolute;
    top: 0;
    left: 25px;
    display: flex;
    gap: 3px;
}

.finger {
    width: 18px;
    height: 70px;
    background: linear-gradient(135deg, #FFDBCB, #F4A688);
    border-radius: 9px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.finger-1 { height: 60px; }
.finger-2 { height: 70px; }
.finger-3 { height: 65px; }
.finger-4 { height: 55px; }

.hand-sleeve {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    height: 80px;
    background: linear-gradient(135deg, #C8E6C9, #A5D6A7);
    border-radius: 70px 70px 0 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Background Elements */
.unified-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.Digitalindians-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.Digitalindians-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.Digitalindians-text {
    z-index: 10;
    position: relative;
}

.Digitalindians-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.Digitalindians-title .highlight {
    color: #FF6B47;
    font-style: italic;
}

.Digitalindians-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.Digitalindians-cta {
    background: linear-gradient(135deg, #FF6B47, #E55A3E);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 71, 0.3);
    transition: all 0.3s ease;
}

.Digitalindians-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 71, 0.4);
}

.Digitalindians-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.Digitalindians-mockup {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 500px;
}

.checklist-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    position: relative;
    z-index: 5;
}

.checklist-header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.globe-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.checklist-item:last-child {
    border-bottom: none;
}

.check-icon {
    width: 25px;
    height: 25px;
    background: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-item span {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.Digitalindians-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.search-icon {
    position: absolute;
    top: -20px;
    right: -30px;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.shopping-cart-icon {
    position: absolute;
    bottom: -20px;
    left: -30px;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite 1.5s;
}

.Digitalindians-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-gradient {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.gradient-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FF6B47, #E55A3E);
    top: 10%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.gradient-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    bottom: 20%;
    right: 15%;
    animation: float 4s ease-in-out infinite 2s;
}

.dots-pattern {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, #FF6B47 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .Digitalindians-section {
        padding: 60px 0;
    }
    
    .Digitalindians-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .Digitalindians-title {
        font-size: 36px;
    }
    
    .Digitalindians-description {
        font-size: 16px;
    }
    
    .Digitalindians-mockup {
        max-width: 350px;
        height: 400px;
        margin: 0 auto;
    }
    
    .checklist-card {
        padding: 25px;
    }
    
    .checklist-item span {
        font-size: 14px;
    }
    
    .search-icon {
        top: -10px;
        right: -20px;
    }
    
    .shopping-cart-icon {
        bottom: -10px;
        left: -20px;
    }
}

@media (max-width: 480px) {
    .Digitalindians-section {
        padding: 40px 0;
    }
    
    .Digitalindians-title {
        font-size: 28px;
    }
    
    .Digitalindians-description {
        font-size: 14px;
    }
    
    .Digitalindians-cta {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .Digitalindians-mockup {
        max-width: 300px;
        height: 350px;
    }
    
    .checklist-card {
        padding: 20px;
    }
    
    .checklist-item {
        gap: 12px;
        padding: 10px 0;
    }
    
    .checklist-item span {
        font-size: 13px;
    }
    
    .globe-icon {
        width: 50px;
        height: 50px;
    }
    
    .check-icon {
        width: 20px;
        height: 20px;
    }
}
/* How It Works Section */
.aw-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.aw-section--inset-bottom {
    padding-bottom: 100px;
}

.aw-alignfull {
    width: 100%;
}

.aw-bg-white {
    background: #ffffff00;
    background-image: url('Stroke.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.aw-page-margin {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.aw-steps {
    position: relative;
}

.aw-container {
    width: 100%;
    position: relative;
}

.aw-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.aw-col-1 { flex: 0 0 8.33%; }
.aw-col-2 { flex: 0 0 16.66%; }
.aw-col-3 { flex: 0 0 25%; }
.aw-col-12 { flex: 0 0 100%; }

.aw-step_one {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.aw-step_one:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.aw-steps--circle {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.aw-steps--circle.one {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

.aw-steps--circle.two {
    background: linear-gradient(135deg, #9C27B0, #E91E63);
    box-shadow: 0 5px 20px rgba(156, 39, 176, 0.3);
}

.aw-steps--circle.three {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.aw-step--number-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.aw-step--number--text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.aw-step_one--container {
    padding-top: 40px;
    position: relative;
    background: rgba(255, 255, 0, 0.219);
    border-radius: 10px;
    height: 237px;
    padding: 20px;
}

.aw-step_one--heading {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.3;
}

.aw-text-base {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.aw-text-small {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.aw-text-center {
    text-align: center;
}

.aw-step--image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.aw-step--image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Spacers */
.aw-spacer-8 { height: 8px; }
.aw-spacer-16 { height: 16px; }
.aw-spacer-96 { height: 96px; }
.aw-spacer-192 { height: 192px; }

.aw-step2-spacer,
.aw-step3-spacer {
    height: 60px;
}

/* Step-specific styling */
.aw-step_one--container.two {
    background: linear-gradient(135deg, rgba(155, 39, 176, 0.267), rgba(233, 30, 98, 0.233));
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.aw-step_one--container.three {
    background: linear-gradient(135deg, rgb(76 175 80 / 35%), rgb(139 195 74 / 35%));
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.aw-steps {
    position: relative;
}

/* Responsive Design */
@media (max-width: 991px) {
    .aw-flex {
        flex-direction: column;
        gap: 40px;
    }
    
    .aw-col-1,
    .aw-col-2,
    .aw-col-3 {
        flex: 0 0 100%;
    }
    
    .aw-step2-spacer,
    .aw-step3-spacer {
        height: 0;
    }
    
    .aw-spacer-96 {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .aw-section {
        padding: 60px 0;
    }
    
    .aw-section--inset-bottom {
        padding-bottom: 80px;
    }
    
    .aw-page-margin {
        padding: 0 15px;
    }
    
    .aw-step_one {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .aw-step_one--heading {
        font-size: 20px;
    }
    
    .aw-text-base {
        font-size: 14px;
    }
    
    .aw-step--image {
        max-width: 240px;
    }
    
    .aw-steps--circle {
        width: 40px;
        height: 40px;
        top: -20px;
    }
    
    .aw-step--number--text {
        font-size: 16px;
    }
    
    .aw-step_one--container {
        padding-top: 30px;
    }
    
    .md-aw-hidden {
        display: none;
    }
    
    .md-aw-col-12 {
        flex: 0 0 100%;
    }
    
    .md-aw-spacer-192 {
        height: 40px;
    }
    .glass-handle{
        position: absolute;
        bottom: 6px;
        right: -13px;
        width: 52px;
        height: 8px;
        background: #666;
        border-radius: 4px;
        transform: rotate(45deg);
    }
}

@media (max-width: 479px) {
    .aw-section {
        padding: 40px 0;
    }
    
    .aw-section--inset-bottom {
        padding-bottom: 60px;
    }
    
    .aw-step_one {
        padding: 20px 12px;
        margin-bottom: 25px;
    }
    
    .aw-step_one--heading {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .aw-text-base {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .aw-text-small {
        font-size: 12px;
    }
    
    .aw-step--image {
        max-width: 200px;
    }
    
    .aw-steps--circle {
        width: 35px;
        height: 35px;
        top: -17px;
    }
    
    .aw-step--number--text {
        font-size: 14px;
    }
    
    .aw-step_one--container {
        padding-top: 25px;
    }
    
    .aw-step_one--container.two,
    .aw-step_one--container.three {
        padding: 15px;
        margin-top: 15px;
    }
    
    .aw-spacer-8 { height: 6px; }
    .aw-spacer-16 { height: 12px; }
    .aw-spacer-96 { height: 40px; }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aw-step_one {
    animation: fadeInUp 0.6s ease-out;
}

.aw-step_one:nth-child(1) {
    animation-delay: 0.1s;
    top: -50px;
}

.aw-step_one:nth-child(2) {
    animation-delay: 0.2s;
    top: 50px;
}

.aw-step_one:nth-child(3) {
    animation-delay: 0.3s;
}

/* Hover Effects */
.aw-steps--circle {
    transition: all 0.3s ease;
}

.aw-step_one:hover .aw-steps--circle {
    transform: translateX(-50%) scale(1.1);
}

.aw-step_one:hover .aw-steps--circle.one {
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.5);
}

.aw-step_one:hover .aw-steps--circle.two {
    box-shadow: 0 8px 30px rgba(156, 39, 176, 0.5);
}

.aw-step_one:hover .aw-steps--circle.three {
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5);
}

/* Loading States */
.aw-step--image {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
/* Pricing Section Styles */
.aw-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.aw-section--inset {
  padding: 100px 0;
}

.aw-bg-blue-500 {
  background: wheat;
  position: relative;
}

.aw-bg-blue-500::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.aw-page-margin {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.aw-container {
  max-width: 100%;
  margin: 0 auto;
}

.aw-container--wide {
  max-width: 1000px;
}

.aw-text-center {
  text-align: center;
}

.aw-text-h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgb(1, 7, 87);
  background-clip: text;
}

.aw-text-white {
  color: #ffffff;
}

.aw-secondary-heading {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.aw-spacer-16 {
  margin-top: 16px;
}


.aw-spacer-32 {
  margin-top: 32px;
}

.aw-spacer-48 {
  margin-top: 48px;
}

.aw-spacer-12 {
  margin-top: 12px;
}

.aw-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.aw-gutter-offset {
  margin: 0 -15px;
}

.aw-col-4 {
  flex: 1;
  min-width: 350px;
  max-width: 400px;
}

.aw-gutter {
  padding: 0 15px;
}

.aw-pricing-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.aw-pricing-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border-color: rgba(249, 115, 22, 0.3);
}

.aw-pricing-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  border-radius: 20px;
  pointer-events: none;
}

.ribbon {
  position: absolute;
  top: 23px;
  right: 20px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  padding: 6px 19px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 18px 0 0 20px;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  z-index: 2;
}

.ribbon::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -7px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #ea580c;
  border-top: 25px solid transparent;
  border-bottom: 19px solid transparent;
}

.aw-text-h6 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #ffffff;
}

.aw-text-h6 p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
  opacity: 0.8;
  color: #e2e8f0;
}

.aw-price--service-text del {
  font-size: 1.2rem;
  opacity: 0.7;
  color: #cbd5e1;
}

.aw-price {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.2;
}

.aw-price--service {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.aw-price--service:hover {
  background: rgba(255, 255, 255, 0.05);
  margin: 0 -15px;
  padding: 15px 15px;
  border-radius: 10px;
}

.aw-price--service-text {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
}

.aw-price--service-text p {
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
  opacity: 0.8;
  color: #cbd5e1;
  line-height: 1.4;
}

.aw-buttons {
  margin-top: auto;
  padding-top: 30px;
}

.aw-buttons--center {
  text-align: center;
}

.aw-button-primary {
  display: inline-block;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
  position: relative;
  overflow: hidden;
}

.aw-button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.aw-button-primary:hover::before {
  left: 100%;
}

.aw-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.aw-pricing-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aw-pricing-container:hover .aw-pricing-hover {
  opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .aw-text-h2 {
    font-size: 2.8rem;
  }
  
  .aw-col-4 {
    min-width: 300px;
    max-width: 350px;
  }
  
  .aw-pricing-container {
    padding: 30px 25px;
  }
  
  .aw-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .aw-page-margin {
    padding: 0 15px;
  }
  
  .aw-text-h2 {
    font-size: 2.2rem;
  }
  
  .aw-flex {
    flex-direction: column;
    gap: 20px;
  }
  
  .aw-col-4 {
    min-width: 100%;
    max-width: 100%;
  }
  
  .md-aw-col-12 {
    width: 100%;
  }
  
  .aw-pricing-container {
    padding: 25px 20px;
    margin-bottom: 20px;
  }
  
  .aw-price {
    font-size: 2.5rem;
  }
  
  .aw-section {
    padding: 50px 0;
  }
  
  .aw-section--inset {
    padding: 60px 0;
  }
  
  .ribbon {
    right: -5px;
    padding: 6px 15px;
    font-size: 11px;
  }
  
  .ribbon::after {
    border-left: 5px solid #ea580c;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
  }
}

@media (max-width: 480px) {
  .aw-text-h2 {
    font-size: 1.8rem;
  }
  
  .aw-pricing-container {
    padding: 20px 15px;
  }
  
  .aw-price {
    font-size: 2rem;
  }
  
  .aw-button-primary {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .aw-text-h6 {
    font-size: 1.2rem;
  }
  
  .aw-price--service-text {
    font-size: 14px;
  }
  
  .aw-section {
    padding: 40px 0;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .aw-pricing-container {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
  }
  
  .aw-pricing-container:hover {
    background: rgba(0, 0, 0, 0.4);
  }
}

/* Animation for loading */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aw-pricing-container {
  animation: fadeInUp 0.6s ease-out;
}

.aw-pricing-container:nth-child(1) {
  animation-delay: 0.1s;
}

.aw-pricing-container:nth-child(2) {
  animation-delay: 0.2s;
}

.aw-pricing-container:nth-child(3) {
  animation-delay: 0.3s;
}

/* Accessibility improvements */
.aw-button-primary:focus {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

.aw-pricing-container:focus-within {
  border-color: rgba(249, 115, 22, 0.5);
}

/* Print styles */
@media print {
  .aw-bg-blue-500 {
    background: #1e3a8a !important;
    color: white !important;
  }
  
  .aw-pricing-container {
    border: 2px solid #1e3a8a !important;
    background: white !important;
    color: #1e3a8a !important;
  }
}

/* Unified Digital Section */
.unified-digital-section {
    padding: 100px 0;
   
}

.unified-digital-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.unified-digital-text {
    flex: 1;
}

.unified-digital-visual {
    flex: 1;
}

.unified-digital-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
    animation: flipIn 1s ease-out;
}

.unified-digital-description {
    font-size: 1.1rem;
    color: #b0b1b3;
    line-height: 1.7;
    margin-bottom: 30px;
    animation: flipIn 1s ease-out 0.2s both;
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.unified-digital-cta {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    animation: flipIn 1s ease-out 0.4s both;
}

.unified-digital-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .feature-title,
    .google-title,
    .security-title,
    .phone-numbers-title,
    .marketing-content-title,
    .unified-digital-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .feature-item {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }
    
    .google-content,
    .security-content,
    .phone-numbers-section,
    .marketing-content-section,
    .unified-digital-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .nav-list {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .feature-title,
    .google-title,
    .security-title,
    .phone-numbers-title,
    .marketing-content-title,
    .unified-digital-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .feature-title,
    .google-title,
    .security-title,
    .phone-numbers-title,
    .marketing-content-title,
    .unified-digital-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-cta,
    .cta-button,
    .unified-digital-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .whatsapp {
    top: 10%;
    left: -2%;
    animation-delay: 2s;
    }
    .twitter {
    top: 76%;
    left: -1%;
    animation-delay: 3s;
    }
    .flipkart {
    bottom: 17%;
    right: -3%;
    animation-delay: 5s;
    }
    .zomato {
    bottom: -79%;
    right: 148%;
    animation-delay: 6s;
    }
    .justdial {
    top: 139%;
    right: 21%;
    animation-delay: 7s;
    }
    .amazon {
    top: -3%;
    left: 26%;
    animation-delay: 0s;
    }
}

