/* responsive.css - Responsive Styles */

/* Tablets and smaller desktops */
@media screen and (max-width: 1200px){
    .header-down{
        top: -7%;
    }
}

@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-down{
        top: -7%;
    }

    .prdc_ctg_product_title.my-2 {
    margin-top: 46px !important;
    }
}

/* Tablets and large phones */
@media screen and (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        z-index: 999;
    }

    .header-down {
    top: 0;
}

    #google_translate_element select {
    font-size: 13px;
    width: 100%;
    max-width: 100%;
  }
    .header-top{
        display: none;
    }
    
    .main-nav.show {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 10px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-buttons .btn {
        margin-bottom: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-section h2 {
        font-size: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav ul li a:after{
        display: none;
    }
    .prdc_ctg_product_title.my-2 {
    margin-top:20px !important;
    }
}

/* Small phones */
@media screen and (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .experience-badge {
        font-size: 14px;
        padding: 6px 12px;
    }

    .main-header .logo {
        width: 40%;
        }
    
    .features h2,
    .services h2,
    .cta-section h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .whatsapp-icon {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon a {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Extra small phones */
@media screen and (max-width: 375px) {
    .logo h1 {
        font-size: 20px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .features h2, 
    .services h2, 
    .cta-section h2 {
        font-size: 24px;
    }
    
    .feature-item,
    .service-item {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 32px;
    }
    
    .feature-item h3,
    .service-item h3 {
        font-size: 18px;
    }
}