/* ===== ✅ CONTACT FORM RESPONSIVE - Send Us a Message ===== */

/* Tablet Devices (992px se kam) */
@media (max-width: 992px) {
    .contact-form {
        padding: 30px 25px;
    }
    
    .contact-form-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 1rem;
    }
}

/* Mobile Devices (768px se kam) */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px 20px;
        border-radius: var(--radius-lg);
    }
    
    .contact-form-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
        position: relative;
        padding-bottom: 12px;
    }
    
    .contact-form-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--accent-yellow);
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
        border-radius: var(--radius-md);
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        background-color: #ffffff;
        box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.25);
    }
    
    .contact-form .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}

/* Small Mobile Devices (600px se kam) */
@media (max-width: 600px) {
    .contact {
        padding: 50px 0;
    }
    
    .contact .section-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .contact .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 25px 18px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-form-title {
        font-size: 1.35rem;
        margin-bottom: 20px;
        color: var(--accent-yellow);
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
        background-color: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #666;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .contact-form .btn {
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: var(--radius-md);
        background: var(--accent-yellow);
        color: var(--dark-blue);
        font-weight: 700;
        border: none;
        transition: all 0.3s ease;
    }
    
    .contact-form .btn:hover {
        background: #ffd633;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 204, 0, 0.3);
    }
    
    .contact-form .btn:active {
        transform: translateY(0);
    }
}

/* Very Small Devices (400px se kam) */
@media (max-width: 400px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact .section-title {
        font-size: 1.5rem;
    }
    
    .contact .section-subtitle {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .contact-form-title {
        font-size: 1.25rem;
        margin-bottom: 18px;
    }
    
    .form-group {
        margin-bottom: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .contact-form .btn {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}

/* Landscape Mode (Mobile Horizontal) */
@media (max-width: 900px) and (orientation: landscape) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
}

/* Form Validation Styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ff4444;
    background-color: rgba(255, 68, 68, 0.05);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #00C851;
    background-color: rgba(0, 200, 81, 0.05);
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 20px;
    background: rgba(0, 200, 81, 0.1);
    border-radius: var(--radius-md);
    color: #00C851;
    margin-top: 15px;
    display: none;
}

.form-success.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Error Message */
.form-error {
    text-align: center;
    padding: 20px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: var(--radius-md);
    color: #ff4444;
    margin-top: 15px;
    display: none;
}

.form-error.show {
    display: block;
    animation: slideIn 0.5s ease;
}
/* ===== Responsive Design ===== */

/* Large Devices (Desktops) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .hero-title {
        font-size: 3rem;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    .header-top {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1.125rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        padding: var(--spacing-md);
        box-shadow: var(--shadow-hover);
        z-index: 1000;
    }
    .nav-menu.show {
        display: flex;
    }
    .nav-item {
        margin: var(--spacing-xs) 0;
    }
    .hero {
        min-height: 60vh;
        padding: var(--spacing-lg) 0;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .product-actions {
        flex-direction: column;
    }
    .specs-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 576px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    .section-padding {
        padding: var(--spacing-lg) 0;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .category-filter {
        flex-direction: column;
        align-items: center;
    }
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    .contact-form,
    .contact-info-box {
        padding: var(--spacing-md);
    }
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== ✅ FINAL FIX: 600px se kam width ===== */
/* === Logo FIXED, Contact SCROLL === */
@media (max-width: 600px) {
    .header {
        position: relative;
        padding-top: 80px;  /* Logo fixed hai to space do */
    }
    
    /* ✅ Logo + Logo Text - Fixed, Scroll Nahi Hoga */
    .logo {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        padding: 15px 20px;
        z-index: 1001;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .text-logo {
        font-size: 1.25rem;
    }
    
    /* ✅ Contact Info - Scroll Hoga Page Ke Saath */
    .contact-info {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 15px 20px;
        background-color: var(--primary-blue);
        margin-top: 10px;
    }
    
    .contact-item {
        width: 100%;
        justify-content: flex-start;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .contact-item:last-child {
        border-bottom: none;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .contact-value {
        font-size: 0.95rem;
    }
    
    /* ✅ Navigation - Normal Scroll */
    .header-bottom {
        margin-top: 10px;
        padding: 0 20px;
    }
    
    /* ✅ Mobile Menu Button - Fixed with Logo */
    .mobile-menu-btn {
        position: fixed;
        top: 15px;
        right: 20px;
        z-index: 1002;
        background: var(--primary-blue);
        padding: 8px 12px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    /* Container adjustment */
    .header .container {
        padding: 0;
    }
    
    /* Hero section ko thoda neeche karo logo fixed hai isliye */
    .hero {
        margin-top: 20px;
    }
}

/* Very Small Devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .about-buttons {
        flex-direction: column;
    }
    .product-header h3 {
        font-size: 1.25rem;
    }
    .service-icon {
        height: 80px;
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .floating-whatsapp,
    .mobile-menu-btn,
    .hero-buttons,
    .product-actions,
    .contact-form {
        display: none !important;
    }
    .header {
        position: static;
        box-shadow: none;
    }
    .footer {
        border-top: 1px solid #000;
    }
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    a {
        color: #000;
        text-decoration: none;
    }
}






/* ===== ROTATING TITLES - Fade Out/In ===== */
.rotating-title-container {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    width: 100%;
}

.rotating-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-yellow);
    text-align: center;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    pointer-events: none;
}

.rotating-title.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Optional - Gradient effect */
.rotating-title {
    background: linear-gradient(135deg,#ffcc00,#ffcc00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(191, 186, 186, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .rotating-title {
        font-size: 3rem;
    }
    .rotating-title-container {
        min-height: 100px;
    }
}

@media (max-width: 768px) {
    .rotating-title {
        font-size: 2.5rem;
    }
    .rotating-title-container {
        min-height: 90px;
    }
}

@media (max-width: 576px) {
    .rotating-title {
        font-size: 2rem;
    }
    .rotating-title-container {
        min-height: 80px;
    }
}

@media (max-width: 400px) {
    .rotating-title {
        font-size: 1.75rem;
    }
    .rotating-title-container {
        min-height: 70px;
    }
}






/* ===== EXTRA SMALL DEVICES (400px to 200px) - White Space Fix ===== */

/* 400px to 350px */
@media (max-width: 400px) and (min-width: 351px) {
    .container {
        padding: 0 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Header Fix */
    .header {
        padding-top: 70px;
    }
    
    .logo {
        padding: 12px 10px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .text-logo {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 12px 10px;
    }
    
    .contact-item {
        padding: 6px 0;
    }
    
    .contact-value {
        font-size: 0.9rem;
        word-break: break-word;
    }
    
    /* Hero Section */
    .hero {
        margin-top: 10px;
        padding: 30px 0;
        min-height: 50vh;
    }
    
    .hero-content {
        width: 100%;
        padding: 0 5px;
    }
    
    .rotating-title-container {
        min-height: 60px;
        margin-bottom: 15px;
    }
    
    .rotating-title {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 5px;
    }
    
    .typing-container {
        min-height: 150px;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .typing-text {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 10px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn {
        max-width: 100%;
        width: 100%;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    /* Contact Form */
    .contact {
        padding: 30px 0;
    }
    
    .contact .section-title {
        font-size: 1.4rem;
    }
    
    .contact .section-subtitle {
        font-size: 0.85rem;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .contact-container {
        gap: 20px;
    }
    
    .contact-info-box,
    .contact-form {
        padding: 15px 12px;
    }
    
    .contact-info-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .contact-info-item {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-info-heading {
        font-size: 1rem;
    }
    
    .contact-info-text {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .contact-info-content .btn-whatsapp {
        padding: 8px 12px;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .contact-form-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 90px;
    }
    
    .contact-form .btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-column {
        gap: 12px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-links li {
        font-size: 0.85rem;
    }
    
    .copyright {
        font-size: 0.75rem;
        padding-top: 15px;
    }
    
    /* Floating WhatsApp */
    .floating-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
}

/* 350px to 300px */
@media (max-width: 350px) and (min-width: 301px) {
    .container {
        padding: 0 8px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .logo {
        padding: 10px 8px;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .text-logo {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 10px 8px;
    }
    
    .contact-value {
        font-size: 0.85rem;
    }
    
    .rotating-title {
        font-size: 1.3rem;
    }
    
    .typing-text {
        font-size: 0.85rem;
        padding: 8px;
    }
    
    .hero-buttons .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .contact .section-title {
        font-size: 1.3rem;
    }
    
    .contact-info-box,
    .contact-form {
        padding: 12px 8px;
    }
    
    .contact-info-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-info-text {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .floating-whatsapp {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 10px;
        right: 10px;
    }
}

/* 300px to 250px */
@media (max-width: 300px) and (min-width: 251px) {
    .container {
        padding: 0 5px !important;
    }
    
    .logo {
        padding: 8px 5px;
    }
    
    .logo-icon {
        width: 25px;
        height: 25px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .text-logo {
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 8px 5px;
        gap: 10px;
    }
    
    .contact-item {
        padding: 4px 0;
    }
    
    .contact-label {
        font-size: 0.7rem;
    }
    
    .contact-value {
        font-size: 0.75rem;
    }
    
    .rotating-title {
        font-size: 1.1rem;
    }
    
    .rotating-title-container {
        min-height: 50px;
    }
    
    .typing-container {
        min-height: 180px;
    }
    
    .typing-text {
        font-size: 0.75rem;
        padding: 5px;
        line-height: 1.4;
    }
    
    .hero-buttons .btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .contact .section-title {
        font-size: 1.1rem;
    }
    
    .contact .section-subtitle {
        font-size: 0.7rem;
    }
    
    .contact-info-box,
    .contact-form {
        padding: 10px 5px;
    }
    
    .contact-info-title {
        font-size: 1rem;
    }
    
    .contact-info-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .contact-info-heading {
        font-size: 0.85rem;
    }
    
    .contact-info-text {
        font-size: 0.7rem;
    }
    
    .contact-info-content .btn-whatsapp {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
    
    .contact-form-title {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 6px 8px;
        font-size: 0.75rem;
    }
    
    .form-group textarea {
        min-height: 70px;
    }
    
    .contact-form .btn {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    .footer-title {
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.7rem;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .footer-links li {
        font-size: 0.7rem;
    }
    
    .copyright {
        font-size: 0.6rem;
    }
    
    .floating-whatsapp {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* 250px to 200px */
@media (max-width: 250px) {
    .container {
        padding: 0 3px !important;
    }
    
    .logo {
        padding: 5px 3px;
        gap: 5px;
    }
    
    .logo-icon {
        width: 20px;
        height: 20px;
    }
    
    .logo-text {
        font-size: 0.85rem;
    }
    
    .text-logo {
        font-size: 0.75rem;
    }
    
    .mobile-menu-btn {
        padding: 5px 8px;
        font-size: 1rem;
        top: 8px;
        right: 8px;
    }
    
    .contact-info {
        padding: 5px 3px;
        gap: 8px;
    }
    
    .contact-item {
        padding: 3px 0;
        gap: 5px;
    }
    
    .contact-icon {
        font-size: 0.8rem;
    }
    
    .contact-label {
        font-size: 0.6rem;
    }
    
    .contact-value {
        font-size: 0.65rem;
        word-break: break-all;
    }
    
    .rotating-title {
        font-size: 0.9rem;
    }
    
    .rotating-title-container {
        min-height: 40px;
    }
    
    .typing-container {
        min-height: 200px;
    }
    
    .typing-text {
        font-size: 0.65rem;
        padding: 3px;
        line-height: 1.3;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-buttons .btn {
        padding: 5px 8px;
        font-size: 0.6rem;
    }
    
    .contact .section-title {
        font-size: 0.9rem;
    }
    
    .contact .section-subtitle {
        font-size: 0.6rem;
        padding: 0 5px;
    }
    
    .contact-info-box,
    .contact-form {
        padding: 8px 3px;
    }
    
    .contact-info-title {
        font-size: 0.85rem;
    }
    
    .contact-info-item {
        gap: 5px;
        margin-bottom: 8px;
    }
    
    .contact-info-icon {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    .contact-info-heading {
        font-size: 0.7rem;
    }
    
    .contact-info-text {
        font-size: 0.6rem;
        word-break: break-all;
    }
    
    .contact-info-content .btn-whatsapp {
        padding: 4px 6px;
        font-size: 0.6rem;
    }
    
    .contact-form-title {
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 4px 6px;
        font-size: 0.6rem;
    }
    
    .form-group textarea {
        min-height: 60px;
    }
    
    .contact-form .btn {
        padding: 6px 8px;
        font-size: 0.65rem;
    }
    
    .footer {
        padding: 20px 0 10px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-title {
        font-size: 0.8rem;
        padding-bottom: 5px;
    }
    
    .footer-title::after {
        width: 25px;
        height: 2px;
    }
    
    .footer-description {
        font-size: 0.6rem;
    }
    
    .social-link {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .footer-links li {
        font-size: 0.6rem;
        margin-bottom: 3px;
    }
    
    .copyright {
        font-size: 0.5rem;
        padding-top: 10px;
    }
    
    .floating-whatsapp {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        bottom: 8px;
        right: 8px;
    }
}

/* Ultra Small Devices (200px se bhi chhote) */
@media (max-width: 200px) {
    body {
        min-width: 200px;
        overflow-x: auto;
    }
    
    .container {
        padding: 0 2px !important;
        min-width: 196px;
    }
    
    .logo-text, .text-logo {
        font-size: 0.7rem;
    }
    
    .rotating-title {
        font-size: 0.8rem;
    }
    
    .typing-text {
        font-size: 0.55rem;
    }
    
    .btn {
        font-size: 0.55rem;
        padding: 4px 6px;
    }
    
    /* Horizontal scroll allow for extreme cases */
    .header, .hero, .contact, .footer {
        min-width: 200px;
        overflow-x: auto;
    }
}