/* Responsive Styles for Airavat Overseas Website */

/* Tablet Devices */
@media screen and (max-width: 992px) {
    /* Header */
    #header .container {
        padding: 10px 20px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    #navbar ul li {
        margin-left: 20px;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Section Padding */
    #popular-products,
    #our-process,
    #testimonials,
    #supply-chain {
        padding: 60px 0;
    }
    
    /* Section Titles */
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    /* Header & Navigation */
    #header .container {
        padding: 10px 15px;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .mobile-menu-btn.active i::before {
        content: '\f00d'; /* FontAwesome X icon */
    }
    
    #navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    #navbar.active {
        right: 0;
    }
    
    #navbar ul {
        flex-direction: column;
        align-items: center;
    }
    
    #navbar ul li {
        margin: 15px 0;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Section Padding */
    #popular-products,
    #our-process,
    #testimonials,
    #supply-chain {
        padding: 50px 0;
    }
    
    /* Section Titles */
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    /* Single Image Container */
    .single-image-container {
        height: 320px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    

    
    .social-icons {
        justify-content: center;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Section Titles */
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    /* Single Image Container */
    .single-image-container {
        height: 250px;
    }
    
    .image-counter {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    /* Footer */
    #footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
}
.footer-content p {
    margin-left: 10px;
    text-align: left;
    margin-top: 5px;
    margin-bottom: 5PX;
}
