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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Hamburger Menu */
.hamburger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgb(80, 80, 77);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: none;
    }
}

.hamburger-menu:hover {
    background: rgba(80, 80, 77, 0.8);
    transform: scale(1.05);
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Navigation Drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: rgb(80, 80, 77);
    z-index: 1001;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.nav-drawer.active {
    left: 0;
}

.nav-drawer-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.close-drawer {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: transform 0.3s ease;
}

.close-drawer:hover {
    transform: rotate(90deg);
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 500;
    display: block;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header Section */
.header {
    background-image: url('images/hero_img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 20px 200px;
    text-align: center;
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
}

/* Header Navigation */
.header-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgb(80, 80, 77);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.header-nav-item {
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
}

.header-nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header-nav-item.active {
    background: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* About Page Header */
.about-page-header {
    background: linear-gradient(135deg, #1a4d7c 0%, #2c5f8d 50%, #1a4d7c 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.about-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/about_us_bg.png') center/cover no-repeat;
    opacity: 0.1;
}

.about-page-header .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-content {
    text-align: center;
}

.about-hero-content .logo {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero-content .tagline {
    font-size: 1.4rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about-page-header {
        min-height: 200px;
        padding: 60px 15px 40px;
    }

    .about-hero-content .logo {
        font-size: 1.8rem;
    }

    .about-hero-content .tagline {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
}

/* Bottom Navigation for Mobile */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 6px 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: #666;
    text-decoration: none;
    padding: 6px 0;
    transition: all 0.3s ease;
    font-size: 10px;
    min-width: 0;
}

.bottom-nav-item svg {
    margin-bottom: 3px;
}

.bottom-nav-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: #1a4d7c;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 400px) {
    .bottom-nav-item {
        font-size: 9px;
    }

    .bottom-nav-item svg {
        width: 20px;
        height: 20px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 77, 124, 0);
    z-index: 1;
}

.header .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Hero Highlights - Key Differentiators */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 18px 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.hero-highlight-card:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.highlight-text {
    flex: 1;
}

.highlight-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.highlight-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .hero-highlights {
        gap: 12px;
        padding: 0 10px;
    }

    .hero-highlight-card {
        padding: 15px;
        gap: 12px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .highlight-text strong {
        font-size: 1rem;
    }

    .highlight-text p {
        font-size: 0.85rem;
    }
}

.header-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

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

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

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

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

.btn-govt {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-govt:hover {
    background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-govt svg {
    animation: checkmark 2s ease-in-out infinite;
}

@keyframes checkmark {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive Button Sizing for Large Desktops */
@media (min-width: 1400px) {
    .header-buttons {
        gap: 20px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .header-buttons {
        gap: 15px;
    }
    
    .btn {
        padding: 12px 26px;
        font-size: 0.97rem;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .header-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Government Approvals Modal */
.govt-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.govt-modal.active {
    display: flex;
}

.govt-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.govt-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 2001;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.govt-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 40px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2002;
}

.govt-modal-close:hover {
    background: #f0f0f0;
    color: #333;
    transform: rotate(90deg);
}

.govt-modal-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, #1a4d7c 0%, #2c5f8d 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.govt-modal-header .header-icon {
    animation: bounceIn 0.6s ease;
    color: #28a745;
    filter: drop-shadow(0 4px 8px rgba(40, 167, 69, 0.3));
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.govt-modal-header h2 {
    font-size: 2rem;
    margin: 15px 0 10px;
    font-weight: 700;
}

.govt-modal-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.govt-modal-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.approval-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease;
}

.approval-card:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.approval-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 77, 124, 0.15);
    border-color: #1a4d7c;
}

.approval-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.gst-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.gst-icon svg {
    color: white;
}

.udyam-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.3);
}

.udyam-icon svg {
    color: white;
}

.approval-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.approval-title {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.approval-value {
    font-size: 1.3rem;
    color: #1a4d7c;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    animation: fadeIn 0.8s ease;
}

@media (max-width: 768px) {
    .govt-modal-content {
        width: 95%;
    }

    .govt-modal-header {
        padding: 30px 20px 20px;
    }

    .govt-modal-header h2 {
        font-size: 1.5rem;
    }

    .govt-modal-body {
        padding: 20px;
    }

    .approval-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .approval-value {
        font-size: 1.1rem;
    }
}

/* Useful Links Modal Styles */
#usefulLinksModal .govt-modal-content {
    max-width: 700px;
}

#usefulLinksModal .govt-modal-header {
    padding: 25px 25px 20px;
}

#usefulLinksModal .govt-modal-header h2 {
    font-size: 1.6rem;
    margin: 12px 0 5px;
}

#usefulLinksModal .govt-modal-header .header-icon {
    width: 40px;
    height: 40px;
}

#usefulLinksModal .govt-modal-body {
    padding: 25px;
    gap: 0;
}

.disclaimer-text {
    font-size: 0.875rem !important;
    color: #2c3e50 !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    border: none;
    border-radius: 12px;
    line-height: 1.7;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.disclaimer-text::before {
    content: "ℹ️";
    position: absolute;
    top: 16px;
    left: -50px;
    font-size: 4rem;
    opacity: 0.1;
}

.disclaimer-text::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #ff9800 0%, #f57c00 100%);
}

.links-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 5px;
}

.links-container::-webkit-scrollbar {
    width: 6px;
}

.links-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.links-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.links-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5558e3 0%, #6841a0 100%);
}

.link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    color: #1a4d7c;
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 77, 124, 0.15);
    border-color: #667eea;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
}

.link-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.25);
}

.link-icon svg {
    color: white;
    width: 18px;
    height: 18px;
}

.link-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #usefulLinksModal .govt-modal-content {
        max-width: 95%;
    }
    
    #usefulLinksModal .govt-modal-header {
        padding: 20px 20px 15px;
    }
    
    #usefulLinksModal .govt-modal-header h2 {
        font-size: 1.3rem;
    }
    
    #usefulLinksModal .govt-modal-body {
        padding: 20px;
    }
    
    .links-container {
        grid-template-columns: 1fr;
        max-height: 60vh;
    }
    
    .link-card {
        padding: 12px;
    }
    
    .disclaimer-text {
        font-size: 0.8rem !important;
        padding: 12px 15px;
    }
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1a4d7c;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #1a4d7c, #ff9800);
}

/* About Section Home */
.about-section-home {
    background: #f8f9fa;
    padding: 0;
    position: relative;
}

.about-section-home .container {
    padding: 0;
    max-width: 100%;
}

.about-home-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-home-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.hindi {
    font-size: 1.5rem;
}

/* About Section */
.about-section {
    background-image: url('images/about_us_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0;
}

.about-section .section-title {
    color: #1a4d7c;
    margin-bottom: 50px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text {
    max-width: 100%;
    margin: 0;
    background: white;
    padding: 50px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

\n .about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a4d7c 0%, #ff9800 50%, #1a4d7c 100%);
}

.about-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 77, 124, 0.05) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

.about-intro-image {
    max-width: 350px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(26, 77, 124, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 5px solid white;
}

.about-intro-image:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 77, 124, 0.4);
}

.about-subtitle {
    color: #1a4d7c;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #1a4d7c 0%, #2c5f8d 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.about-mission,
.about-why-choose,
.about-commitment {
    margin-top: 40px;
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #1a4d7c;
    transition: all 0.3s ease;
    position: relative;
}

.about-mission:hover,
.about-why-choose:hover,
.about-commitment:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(26, 77, 124, 0.15);
}

.about-cta {
    margin-top: 40px;
    padding: 35px;
    border-radius: 15px;
    background: linear-gradient(135deg, #1a4d7c 0%, #2c5f8d 100%);
    box-shadow: 0 10px 40px rgba(26, 77, 124, 0.3);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.about-heading {
    color: #1a4d7c;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-left: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(135deg, #ff9800 0%, #1a4d7c 100%);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.4);
}

.about-cta .about-heading {
    color: white;
}

.about-cta .about-heading::before {
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
}

.about-mission p,
.about-commitment p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
    font-weight: 400;
}

.about-cta p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.about-list {
    list-style: none;
    font-size: 1.05rem;
    padding: 0;
    margin: 20px 0;
}

.about-list li {
    padding: 15px 20px;
    padding-left: 50px;
    position: relative;
    color: #444;
    line-height: 1.7;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-list li:hover {
    color: #1a4d7c;
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(26, 77, 124, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.about-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.about-buttons .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.about-cta {
    text-align: center;
}

/* Unique Model Section */
.unique-model-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.feature-card h3 {
    font-size: 1.1rem;
    color: #333;
}

/* Smart Management Section */
.smart-management-section {
    background: #2563a0;
    color: white;
    padding: 60px 20px;
}

.smart-management-section .section-title {
    color: white;
}

.smart-management-section .section-title::after {
    background: linear-gradient(90deg, white, #ff9800);
}

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

.management-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.management-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.management-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.management-icon img {
    width: 70%;
    height: 70%;
    object-fit: cover;
}

.management-card h3 {
    font-size: 1.1rem;
}

/* Categories Section */
.categories-section {
    background: white;
    padding: 60px 20px;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 124, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
}

/* Special Nivedan Section */
.special-nivedan-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
    padding: 60px 20px;
}

.nivedan-request {
    text-align: center;
    font-size: 1.15rem;
    margin: 30px auto;
    padding: 25px 40px;
    max-width: 800px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border-left: 4px solid #ff9800;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #333;
    line-height: 1.8;
}

.nivedan-request strong {
    color: #ff6600;
    font-weight: 600;
}

.nivedan-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.nivedan-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.flow-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.flow-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    object-fit: contain;
}

.flow-item p {
    font-weight: 600;
    color: #333;
}

.flow-arrow {
    font-size: 2rem;
    color: #ff9800;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f8 100%);
    padding: 80px 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a4d7c 0%, #2563a0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #1a4d7c;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #1a4d7c;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a4d7c;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Visitor Counter Section */
.visitor-counter-section {
    background: linear-gradient(135deg, #1a4d7c 0%, #2c5f8d 100%);
    padding: 60px 20px;
    margin-bottom: 0;
}

.visitor-counter-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.counter-icon {
    flex-shrink: 0;
}

.counter-icon svg {
    color: #ff9800;
    filter: drop-shadow(0 4px 8px rgba(255, 152, 0, 0.3));
}

.counter-text {
    text-align: left;
    color: white;
}

.counter-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff9800;
    font-weight: 600;
}

.counter-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.count-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.count-label {
    font-size: 1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .visitor-counter-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .counter-text {
        text-align: center;
    }

    .count-number {
        font-size: 2.5rem;
    }

    .counter-text h3 {
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    background: #1a4d7c;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ff9800;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #ff9800;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
}


/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hindi {
        font-size: 1.2rem;
    }

    .header {
        padding: 40px 15px 0;
        min-height: 500px;
        padding-top: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .header-buttons {
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-section {
        min-height: auto;
        padding: 40px 0;
        background-size: cover;
        background-position: center;
    }

    .about-text {
        padding: 20px 15px;
        border-radius: 0;
        box-shadow: none;
    }

    .about-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
        padding-bottom: 10px;
    }

    .about-subtitle {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }

    .about-heading {
        font-size: 1.2rem;
        padding-left: 20px;
        letter-spacing: 0.5px;
    }

    .about-heading::before {
        width: 4px;
        height: 25px;
    }

    .about-description,
    .about-mission p,
    .about-commitment p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }

    .about-cta p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-list {
        font-size: 0.9rem;
    }

    .about-list li {
        padding: 10px 12px;
        padding-left: 40px;
        font-size: 0.9rem;
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .about-list li::before {
        left: 10px;
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
    }

    .about-intro-image {
        max-width: 200px;
        border-radius: 15px;
        border: 3px solid white;
    }

    .about-intro {
        padding: 25px 15px;
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .about-mission,
    .about-why-choose,
    .about-commitment {
        padding: 20px 15px;
        margin-top: 25px;
        border-radius: 10px;
        border-left: 4px solid #1a4d7c;
    }

    .about-cta {
        padding: 25px 15px;
        margin-top: 30px;
        border-radius: 10px;
    }

    .about-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 25px;
    }

    .about-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 30px;
        font-size: 1rem;
    }

    .about-page-header {
        min-height: 180px;
        padding: 70px 15px 35px;
    }

    .about-hero-content .logo {
        font-size: 1.6rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .about-hero-content .tagline {
        font-size: 1rem;
    }

    .about-text::before {
        height: 3px;
    }

    /* Unique Model Section */
    .unique-model-section {
        padding: 50px 15px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 0.95rem;
    }

    /* Smart Management Section */
    .smart-management-section {
        padding: 50px 15px;
    }

    .management-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .management-card {
        padding: 25px;
    }

    /* Categories Section */
    .categories-section {
        padding: 50px 15px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card img {
        height: 200px;
    }

    .category-card h3 {
        font-size: 1.1rem;
        padding: 12px;
    }

    /* Special Nivedan Section */
    .special-nivedan-section {
        padding: 50px 15px;
    }

    .nivedan-request {
        font-size: 1rem;
        padding: 20px 25px;
        margin: 20px auto;
    }

    .nivedan-subtitle {
        font-size: 1rem;
    }

    .nivedan-flow {
        flex-direction: column;
    }

    .flow-item {
        min-width: 200px;
        padding: 25px;
    }

    .flow-item img {
        width: 80px;
        height: 80px;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    /* Contact Section */
    .contact-section {
        padding: 50px 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 40px 15px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 1.2rem;
    }
}

/* Extra small devices (phones in portrait mode) */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .header {
        min-height: 450px;
        padding-top: 50px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-icon,
    .management-icon {
        width: 70px;
        height: 70px;
    }

    .feature-card h3,
    .management-card h3 {
        font-size: 0.9rem;
    }

    .flow-item {
        min-width: 180px;
        padding: 20px;
    }

    .flow-item img {
        width: 70px;
        height: 70px;
    }

    .flow-item p {
        font-size: 0.9rem;
    }

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

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

    .contact-form {
        padding: 25px 15px;
    }

    .contact-form h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================
   PRODUCTS PAGE STYLES
   ========================================== */

/* Products Page Header */
.products-page-header {
    background: linear-gradient(135deg, #1a4d7c 0%, #2c5f8d 50%, #1a4d7c 100%);
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.products-page-header::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 30px 30px;
}

.products-hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 20px 40px;
}

.products-hero-content .page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.products-hero-content .page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge svg {
    color: #ff9800;
}

/* Brands Section */
.brands-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-title {
    font-size: 2.2rem;
    color: #1a4d7c;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.brand-card {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 77, 124, 0.15);
    border-color: #1a4d7c;
}

.brand-logo-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a4d7c 0%, #2c5f8d 100%);
    border-radius: 50%;
}

.brand-logo {
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
}

.brand-card h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.brand-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.brand-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Products Intro Section */
.products-intro-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a4d7c 0%, #0d3a5c 100%);
    color: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff9800;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 25px;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.intro-feature svg {
    color: #4caf50;
    flex-shrink: 0;
}

.intro-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Product Category Section */
.product-category-section {
    padding: 70px 20px;
    background: #ffffff;
}

.product-category-section:nth-child(even) {
    background: #f8f9fa;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-title {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    color: #1a4d7c;
    margin-bottom: 15px;
}

.category-title svg {
    color: #ff9800;
}

.category-description {
    font-size: 1.1rem;
    color: #666;
}

/* Product Subcategory */
.product-subcategory {
    margin-bottom: 50px;
}

.product-subcategory:last-child {
    margin-bottom: 0;
}

.subcategory-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff9800;
    display: inline-block;
}

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

.product-item {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a4d7c, #ff9800);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 77, 124, 0.12);
    border-color: #1a4d7c;
}

.product-item:hover::before {
    transform: scaleX(1);
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: grayscale(0);
}

.product-item h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-tag {
    display: inline-block;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1a4d7c;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Electronics Section */
.electronics-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.electronics-section .subcategory-title {
    border-bottom-color: #2196f3;
}

.electronics-section .product-item:hover {
    border-color: #2196f3;
}

.electronics-section .product-item::before {
    background: linear-gradient(90deg, #2196f3, #64b5f6);
}

.electronics-section .product-tag {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
}

/* Fitness Section */
.fitness-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.fitness-section .subcategory-title {
    border-bottom-color: #4caf50;
}

.fitness-section .product-item:hover {
    border-color: #4caf50;
}

.fitness-section .product-item::before {
    background: linear-gradient(90deg, #4caf50, #81c784);
}

/* Kitchen Section */
.kitchen-section .subcategory-title {
    border-bottom-color: #ff5722;
}

.kitchen-section .product-item:hover {
    border-color: #ff5722;
}

.kitchen-section .product-item::before {
    background: linear-gradient(90deg, #ff5722, #ff8a65);
}

/* Dinnerware Section */
.dinnerware-section {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.dinnerware-section .subcategory-title {
    border-bottom-color: #ff9800;
}

/* Soft Furnishings Section */
.soft-furnishings-section .subcategory-title {
    border-bottom-color: #9c27b0;
}

.soft-furnishings-section .product-item:hover {
    border-color: #9c27b0;
}

.soft-furnishings-section .product-item::before {
    background: linear-gradient(90deg, #9c27b0, #ce93d8);
}

/* Misc Section */
.misc-section {
    background: linear-gradient(135deg, #eceff1 0%, #cfd8dc 100%);
}

/* Products CTA Section */
.products-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a4d7c 0%, #0d3a5c 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #1a4d7c;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.85;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Products Page Responsive */
@media (max-width: 768px) {
    .products-hero-content .page-title {
        font-size: 2rem;
    }

    .products-hero-content .page-subtitle {
        font-size: 1rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .trust-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .brand-card {
        padding: 20px 15px;
    }

    .brand-logo-container {
        width: 60px;
        height: 60px;
    }

    .brand-logo {
        font-size: 0.55rem;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-stats {
        justify-content: center;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .category-title svg {
        width: 24px;
        height: 24px;
    }

    .subcategory-title {
        font-size: 1.2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-item {
        padding: 20px 15px;
    }

    .product-icon {
        font-size: 2rem;
    }

    .product-item h4 {
        font-size: 0.9rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-trust {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* ============================================
   WORKING MODEL PAGE STYLES
   ============================================ */

/* Working Model Header */
.working-model-header {
    background: linear-gradient(135deg, #1a4d7c 0%, #0d3a5c 50%, #1a4d7c 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.working-model-header::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.working-model-hero {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.model-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.working-model-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.trust-icon {
    font-size: 1.5rem;
}

/* Roadmap Section */
.roadmap-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 20px;
}

.roadmap-intro {
    text-align: center;
    margin-bottom: 60px;
}

.roadmap-intro h2 {
    font-size: 2.5rem;
    color: #1a4d7c;
    margin-bottom: 15px;
}

.roadmap-intro p {
    font-size: 1.1rem;
    color: #666;
}

/* Visual Road Diagram */
.road-diagram {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(180deg, #e8f4e8 0%, #d4e8d4 30%, #c8ddc8 60%, #b8d4b8 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.road-diagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, #87CEEB 0%, #e8f4e8 100%);
    opacity: 0.6;
}

.road-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 900px;
}

.road-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.road-path {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}



/* Road Step Cards */
.road-step {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 280px;
}

.road-step-number {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    border: 3px solid #fff;
}

.road-step-content {
    background: white;
    padding: 15px 18px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #8B4513;
    position: relative;
}

.road-step-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 15px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.road-step-content h4 {
    font-size: 1rem;
    color: #1a4d7c;
    margin-bottom: 6px;
    font-weight: 700;
}

.road-step-content p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

/* Position each step along the road */
.road-step-1 {
    top: 0;
    left: 0;
}

.road-step-2 {
    top: 80px;
    right: 50px;
    left: auto;
    flex-direction: row-reverse;
}

.road-step-2 .road-step-content::before {
    left: auto;
    right: -12px;
    border-right: none;
    border-left: 8px solid white;
}

.road-step-3 {
    top: 220px;
    left: 0;
}

.road-step-4 {
    top: 320px;
    right: 0;
    left: auto;
    flex-direction: row-reverse;
}

.road-step-4 .road-step-content::before {
    left: auto;
    right: -12px;
    border-right: none;
    border-left: 8px solid white;
}

.road-step-5 {
    top: 450px;
    left: 0;
}

.road-step-6 {
    top: 550px;
    right: 0;
    left: auto;
    flex-direction: row-reverse;
}

.road-step-6 .road-step-content::before {
    left: auto;
    right: -12px;
    border-right: none;
    border-left: 8px solid white;
}

.road-step-7 {
    top: 680px;
    left: 50px;
}

.road-step-8 {
    top: 810px;
    right: 50px;
    left: auto;
    flex-direction: row-reverse;
}

.road-step-8 .road-step-content::before {
    left: auto;
    right: -12px;
    border-right: none;
    border-left: 8px solid white;
}



/* Decorative trees */
.road-tree {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.7;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.road-tree-1 {
    top: 150px;
    left: 45%;
}

.road-tree-2 {
    top: 380px;
    left: 55%;
}

.road-tree-3 {
    top: 600px;
    right: 35%;
}

.road-tree-4 {
    top: 750px;
    left: 50%;
}

.road-diagram-note {
    text-align: center;
    margin-bottom: 40px;
}

.road-diagram-note p {
    font-size: 1.1rem;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f4f8;
    padding: 12px 25px;
    border-radius: 30px;
}

/* Responsive Road Diagram */
@media (max-width: 992px) {
    .road-container {
        height: 750px;
    }

    .road-step {
        max-width: 220px;
    }

    .road-step-content h4 {
        font-size: 0.9rem;
    }

    .road-step-content p {
        font-size: 0.8rem;
    }

    .road-step-2 {
        top: 60px;
    }

    .road-step-3 {
        top: 180px;
    }

    .road-step-4 {
        top: 260px;
    }

    .road-step-5 {
        top: 370px;
    }

    .road-step-6 {
        top: 450px;
    }

    .road-step-7 {
        top: 560px;
    }

    .road-step-8 {
        top: 670px;
    }
}

@media (max-width: 768px) {
    .road-diagram {
        padding: 30px 15px;
        background: linear-gradient(180deg, #e8f4e8 0%, #d4e8d4 100%);
    }

    .road-diagram::before {
        height: 60px;
    }

    .road-container {
        height: auto;
        position: relative;
    }

    .road-svg {
        display: none;
    }

    .road-tree {
        display: none;
    }

    /* Mobile vertical road layout */
    .road-step {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        max-width: 100%;
        margin-bottom: 20px;
        flex-direction: row !important;
        padding-left: 20px;
        border-left: 4px solid #4a4a4a;
        animation: none;
        opacity: 1;
    }

    .road-step:last-child {
        margin-bottom: 0;
    }

    .road-step::before {
        content: '';
        position: absolute;
        left: -8px;
        top: 18px;
        width: 12px;
        height: 12px;
        background: #4a4a4a;
        border-radius: 50%;
    }

    .road-step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.1rem;
    }

    .road-step-content {
        padding: 12px 15px;
        flex: 1;
    }

    .road-step-content::before {
        display: none;
    }

    .road-step-content h4 {
        font-size: 0.95rem;
    }

    .road-step-content p {
        font-size: 0.8rem;
    }

    .road-diagram-note {
        margin-bottom: 30px;
    }

    .road-diagram-note p {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Roadmap Timeline */
.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-step {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a4d7c 0%, #2c5f8d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(26, 77, 124, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.roadmap-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 77, 124, 0.4);
}

.roadmap-step.active .step-number {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.step-line {
    width: 3px;
    flex-grow: 1;
    background: linear-gradient(180deg, #1a4d7c 0%, #ddd 100%);
    min-height: 30px;
}

.step-line.last {
    background: transparent;
}

.step-content {
    flex-grow: 1;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.step-content:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.roadmap-step.active .step-content {
    border-color: #ff9800;
    box-shadow: 0 8px 35px rgba(255, 152, 0, 0.15);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-header:hover {
    background: #f8f9fa;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.step-title {
    flex-grow: 1;
}

.step-title h3 {
    font-size: 1.2rem;
    color: #1a4d7c;
    margin-bottom: 5px;
    font-weight: 600;
}

.step-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.step-toggle {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-toggle svg {
    transition: transform 0.3s ease;
    color: #666;
}

.roadmap-step.active .step-toggle {
    background: #ff9800;
}

.roadmap-step.active .step-toggle svg {
    transform: rotate(180deg);
    color: white;
}

/* Step Details (Accordion Content) */
.step-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: #f8f9fa;
    border-top: 1px solid #e8e8e8;
}

.roadmap-step.active .step-details {
    max-height: 600px;
    padding: 25px;
}

.detail-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #1a4d7c;
}

.detail-card h4 {
    color: #1a4d7c;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.detail-card li:last-child {
    border-bottom: none;
}

.detail-card li strong {
    color: #1a4d7c;
}

.step-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.step-benefit.final {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left-color: #ff9800;
}

.benefit-icon {
    font-size: 1.2rem;
    color: #28a745;
    font-weight: bold;
    flex-shrink: 0;
}

.step-benefit.final .benefit-icon {
    color: #ff9800;
}

.step-benefit span:last-child {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

/* Model Summary Section */
.model-summary {
    margin-top: 80px;
    text-align: center;
}

.model-summary h3 {
    font-size: 2rem;
    color: #1a4d7c;
    margin-bottom: 40px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.summary-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.summary-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.summary-card h4 {
    font-size: 1.2rem;
    color: #1a4d7c;
    margin-bottom: 10px;
}

.summary-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Model CTA Section */
.model-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, #1a4d7c 0%, #2c5f8d 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.model-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.model-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-dark {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

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

/* Working Model Button in Hero */
.btn-model {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-model:hover {
    background: linear-gradient(135deg, #5558e3 0%, #7c4fe0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Responsive Design for Working Model */
@media (max-width: 992px) {
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .working-model-header {
        padding: 80px 15px 60px;
    }

    .working-model-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .trust-indicators {
        gap: 15px;
    }

    .trust-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .roadmap-intro h2 {
        font-size: 1.8rem;
    }

    .roadmap-step {
        gap: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .step-header {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .step-icon {
        font-size: 1.5rem;
    }

    .step-title h3 {
        font-size: 1rem;
    }

    .step-subtitle {
        font-size: 0.85rem;
    }

    .step-toggle {
        width: 35px;
        height: 35px;
    }

    .roadmap-step.active .step-details {
        padding: 20px;
    }

    .detail-card {
        padding: 15px;
    }

    .model-summary h3 {
        font-size: 1.5rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .summary-card {
        padding: 25px 20px;
    }

    .model-cta {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .model-cta h3 {
        font-size: 1.5rem;
    }

    .model-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .working-model-hero h1 {
        font-size: 1.7rem;
    }

    .model-badge {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }

    .trust-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .step-header {
        gap: 10px;
    }

    .step-title {
        flex-basis: 100%;
        order: 3;
        margin-top: 10px;
    }

    .step-toggle {
        margin-left: auto;
    }

    .detail-card li {
        font-size: 0.9rem;
    }

    .step-benefit span:last-child {
        font-size: 0.9rem;
    }
}