/* Custom Upgraded CSS for Aakashiansh Landing Page - Exact Viewport Locked Redesign */

/* Base Reset & Variables */
:root {
    --bg-dark: #080a0d;
    --bg-card: rgba(18, 22, 26, 0.75);
    --border-color: rgba(0, 0, 0, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;
    
    /* Brand Theme Colors */
    --accent-orange: #e54e23;
    
    /* Service Category Colors */
    --color-mlm: #ff4d4d;
    --color-trading: #2196f3;
    --color-mobile: #b388ff;
    --color-web: #00e676;
    --color-domain: #ff9100;
    --color-maintenance: #00e5ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    height: 100vh;
    overflow: hidden;
    position: relative;
    line-height: 1.4;
    padding: 0;
}

/* Background Glow Effects */
.bg-glow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: absolute;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(120px);
    opacity: 0.45;
}

.glow-top {
    top: -15vw;
    left: 8vw;
    background: radial-gradient(circle, rgba(229, 78, 35, 0.15) 0%, rgba(8, 10, 13, 0) 70%);
}

.glow-middle {
    top: 35%;
    right: -15vw;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.03) 0%, rgba(8, 10, 13, 0) 70%);
}

.glow-bottom {
    bottom: -10vw;
    left: -10vw;
    background: radial-gradient(circle, rgba(229, 78, 35, 0.05) 0%, rgba(8, 10, 13, 0) 70%);
}

/* Full Width Container (Locked to exactly 100vh) */
.container-fluid {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Typography Utilities */
h1, h2, h3, .logo-title, .contact-action-btn, .bar-title, .footer-categories-text {
    font-family: 'Outfit', sans-serif;
}

.highlight-orange {
    color: var(--accent-orange);
}

.font-semibold {
    font-weight: 600;
}

.text-underline-hover {
    text-decoration: none;
    transition: color 0.2s ease;
}

.text-underline-hover:hover {
    text-decoration: underline;
}

/* Diagonal Split Container (Stretches to fill viewport height) */
.diagonal-split-container {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0; /* Crucial: allows it to shrink below content height if needed */
    background: 
        linear-gradient(112deg, #0b0e14 43.5%, var(--accent-orange) 43.5%, var(--accent-orange) 44%, transparent 44%),
        radial-gradient(#d1d5db 1.2px, transparent 1.2px) 50% 50% / 20px 20px,
        #f3f5f8;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: none;
}

/* Left Column: Dark Navy Notice (40% width equivalent) */
.split-left {
    width: 40%;
    padding: 2.2rem 2rem 2.5rem 5vw; /* padding matches logo positioning */
    position: relative;
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
}

/* Right Column: Light Grey Services (60% width equivalent) */
.split-right {
    width: 60%;
    padding: 2.2rem 5vw 2.5rem 8vw; /* padding offsets diagonal boundary */
    position: relative;
    z-index: 1;
    color: #1f2937;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
}

/* Brand Logo (Top Left) */
.logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.brand-logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(229, 78, 35, 0.15));
}

/* Header - Promo Badge (Top Right) */
.header-promo-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    align-self: flex-end;
    margin-bottom: 1.5rem;
}

.promo-text-banner {
    background: var(--accent-orange);
    padding: 0.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    box-shadow: 0 4px 12px rgba(229, 78, 35, 0.3);
}

.white-promo {
    font-size: 0.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
}

.yellow-promo {
    font-size: 0.9rem;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 0.5px;
}

.promo-rosette-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Notice Content Area */
.notice-content-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.8rem;
}

.notice-header-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.2rem;
}

.warning-large-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(229, 78, 35, 0.5));
    animation: warningPulse 2.5s infinite ease-in-out;
}

@keyframes warningPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.85; }
}

.notice-text-group {
    display: flex;
    flex-direction: column;
    line-height: 0.95;
}

.notice-heading-main {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.notice-heading-sub {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-orange);
    letter-spacing: 1.5px;
    text-shadow: 0 0 25px rgba(229, 78, 35, 0.35);
}

.notice-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.notice-main-text {
    color: #ffffff;
}

.notice-sub-text {
    color: var(--text-secondary);
    font-weight: 300;
}

.notice-sub-text a {
    color: var(--accent-orange);
}

.notice-hindi-text {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    border-top: 1px dashed rgba(229, 78, 35, 0.35);
    padding-top: 0.6rem;
    color: #ffd700;
}

.notice-hindi-text a {
    color: #ffd700;
    font-weight: 700;
    text-underline-offset: 3px;
}


/* Integrated Contact Box */
.integrated-contact-box {
    background: #111520;
    border: 1px solid var(--accent-orange);
    border-radius: 8px;
    padding: 0.65rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    gap: 1rem;
}

.contact-box-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.phone-block-icon {
    background: var(--accent-orange);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(229, 78, 35, 0.4);
    animation: phoneShake 3.5s infinite ease-in-out;
}

@keyframes phoneShake {
    0%, 100% { transform: rotate(0); }
    8%, 24% { transform: rotate(-10deg); }
    16%, 32% { transform: rotate(10deg); }
    40% { transform: rotate(0); }
}

.contact-number-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.contact-box-title {
    font-size: 0.68rem;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    font-weight: 700;
}

.contact-box-number {
    font-size: 1.65rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.contact-box-right {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 125px;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0.38rem 0.65rem;
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.25s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-phone {
    background: var(--accent-orange);
    box-shadow: 0 3px 8px rgba(229, 78, 35, 0.25);
}

.btn-phone:hover {
    background: #c63914;
    transform: translateY(-1.5px);
    box-shadow: 0 5px 12px rgba(229, 78, 35, 0.4);
}

.btn-whatsapp-direct {
    background: #25d366;
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-direct:hover {
    background: #1eb855;
    transform: translateY(-1.5px);
    box-shadow: 0 5px 12px rgba(37, 211, 102, 0.4);
}

/* Services Header (Right Split) */
.services-column-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.services-column-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #111520;
}

.header-dot {
    color: var(--accent-orange);
    font-size: 1.5rem;
}

/* Services Grid (3 Columns, 2 Rows) */
.services-split-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    flex: 1;
    min-height: 0; /* permits scaling inside flex container */
    align-content: center;
}

/* Cut-Corner Card Borders and Styling */
.card-border-wrapper {
    padding: 1px;
    clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.service-split-card {
    background: #ffffff;
    color: #1f2937;
    clip-path: polygon(11px 0%, 100% 0%, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0% 100%, 0% 11px);
    padding: 0.85rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    transition: all 0.25s ease;
}

/* Subtle Color Borders */
.border-mlm { background: rgba(255, 77, 77, 0.2); }
.border-trading { background: rgba(33, 150, 243, 0.2); }
.border-mobile { background: rgba(179, 136, 255, 0.2); }
.border-web { background: rgba(0, 230, 118, 0.2); }
.border-domain { background: rgba(255, 145, 0, 0.2); }
.border-cyan { background: rgba(0, 229, 255, 0.2); }

/* Color Icons */
.service-card-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
}

.bg-orange-dim { color: var(--accent-orange); background: rgba(229, 78, 35, 0.05); border-color: rgba(229, 78, 35, 0.15); }
.bg-blue-dim { color: var(--color-trading); background: rgba(33, 150, 243, 0.05); border-color: rgba(33, 150, 243, 0.15); }
.bg-purple-dim { color: var(--color-mobile); background: rgba(179, 136, 255, 0.05); border-color: rgba(179, 136, 255, 0.15); }
.bg-green-dim { color: var(--color-web); background: rgba(0, 230, 118, 0.05); border-color: rgba(0, 230, 118, 0.15); }
.bg-cyan-dim { color: var(--color-maintenance); background: rgba(0, 229, 255, 0.05); border-color: rgba(0, 229, 255, 0.15); }

/* Hover animations for Cut-Corner Cards */
.card-border-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-border-wrapper:hover.border-mlm { background: var(--color-mlm); }
.card-border-wrapper:hover.border-trading { background: var(--color-trading); }
.card-border-wrapper:hover.border-mobile { background: var(--color-mobile); }
.card-border-wrapper:hover.border-web { background: var(--color-web); }
.card-border-wrapper:hover.border-domain { background: var(--color-domain); }
.card-border-wrapper:hover.border-cyan { background: var(--color-maintenance); }

.card-border-wrapper:hover .service-split-card {
    background: #fafafa;
}

.card-border-wrapper:hover .service-card-icon-circle {
    transform: scale(1.08);
    box-shadow: 0 0 12px currentColor;
}

.service-split-card-title {
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.2px;
    color: #1f2937;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-split-card-desc {
    font-size: 0.62rem;
    color: #4b5563;
    line-height: 1.3;
    font-weight: 400;
}

/* Five Features Ribbon Bar (Fixed height bar) */
.features-bar-container {
    background: rgba(18, 22, 26, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.75rem 5vw;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    flex-shrink: 0; /* Prevents vertical squashing */
}

.features-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bar-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.bar-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    filter: drop-shadow(0 0 4px rgba(229, 78, 35, 0.25));
}

.bar-feature-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.bar-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.bar-desc {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--accent-orange);
    letter-spacing: 1px;
}

.bar-divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.08);
}

/* Diagonal Split Bottom Footer Bar (Stretches Full Width) */
.diagonal-footer-bar {
    display: flex;
    background: transparent;
    overflow: hidden;
    width: 100%;
    align-items: stretch;
    flex-shrink: 0; /* Prevents vertical squashing */
}

.footer-segment-left {
    width: 68%;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 5vw; /* aligned horizontally */
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
    margin-right: -3%;
    position: relative;
    z-index: 2;
}

.footer-segment-right {
    width: 35%;
    background: var(--accent-orange);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 5vw 0.75rem 3.5rem;
    clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
    position: relative;
    z-index: 1;
}

.footer-globe-badge {
    background: var(--accent-orange);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-categories-text {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tagline-slogan {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: center;
}

.slogan-white {
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.slogan-yellow {
    font-size: 0.82rem;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 0.5px;
}

.font-italic {
    font-style: italic;
}

/* Responsive Overrides */

/* Tablets and Laptops (992px) */
@media (max-width: 992px) {
    body, html {
        height: auto;
        overflow: auto;
    }
    
    .container-fluid {
        height: auto;
        overflow: auto;
        min-height: auto;
    }
    
    .diagonal-split-container {
        flex-direction: column;
        background: #0b0e14;
        flex: none;
    }
    
    .split-left {
        width: 100%;
        padding: 3.5rem 5vw;
        height: auto;
        overflow: auto;
    }
    
    .logo {
        justify-content: center;
    }
    
    .notice-content-wrapper {
        align-items: center;
        text-align: center;
    }
    
    .notice-header-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .notice-text-group {
        align-items: center;
    }
    
    .integrated-contact-box {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }
    
    .split-right {
        width: 100%;
        padding: 3.5rem 5vw;
        background: #f3f5f8;
        background-image: radial-gradient(#d1d5db 1px, transparent 1px);
        background-size: 20px 20px;
        height: auto;
        overflow: auto;
    }
    
    .header-promo-badge {
        align-self: center;
        margin-bottom: 2rem;
    }
    
    .services-split-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        flex: none;
    }
}

/* Mobile Screens (768px) */
@media (max-width: 768px) {
    .notice-heading-main, .notice-heading-sub {
        font-size: 2.8rem;
    }
    
    .integrated-contact-box {
        flex-direction: column;
        padding: 1.2rem;
        gap: 1.2rem;
        text-align: center;
    }
    
    .contact-box-left {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-box-right {
        width: 100%;
    }
    
    .contact-action-btn {
        width: 100%;
        padding: 0.6rem;
    }
    
    .features-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-left: 5vw;
    }
    
    .bar-divider {
        display: none;
    }
    
    .diagonal-footer-bar {
        flex-direction: column;
        clip-path: none;
        box-shadow: none;
        gap: 0.5rem;
        background: transparent;
    }
    
    .footer-segment-left {
        width: 100%;
        clip-path: none;
        margin-right: 0;
        justify-content: center;
        padding: 1rem 5vw;
        border-radius: 6px;
    }
    
    .footer-categories-text {
        font-size: 0.65rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .footer-segment-right {
        width: 100%;
        clip-path: none;
        padding: 1rem 5vw;
        border-radius: 6px;
    }
    
    .tagline-slogan {
        font-size: 0.95rem;
    }
}

/* Small Screens (480px) */
@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .logo-title {
        font-size: 1.8rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
    
    .services-split-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-box-number {
        font-size: 1.5rem;
    }
}
