/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* General mobile adjustments */
    body {
        font-size: 14px;
    }

    .container{
        margin: 8vh 11vw 0 11vw;
        width: 100%;
    }
    
    /* Navbar fixes */
    .navbar {
        padding: 0 5vw;
        max-height: 12vh;
        width: 100vw;
    }
    
    .logo img {
        min-width: 40vw;
        max-width: 45vw;
    }
    
    .menu-btn {
        display: block;
        font-size: 15px;
        padding: 8px 12px;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #ddd9c3;
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        padding: 15px;
        border-bottom: 1px solid #ccc;
        font-size: 18px;
    }
    
    /* Hide circles on mobile */
    .circle {
        display: none;
    }
    
    /* Section 1 adjustments */
    .section-1 {
        height: 50vh;
        background-position: center;
    }
    
    .center-text {
        top: 31%;
        width: 90%;
        padding: 20px 15px;
        height: auto;
    }
    
    .p {
        font-size: 5vw;
        line-height: 1.3;
    }
    .video{
        display: none;
    }
    
    /* Hero section fixes */
    .hero .inner {
        grid-template-columns: 1fr;
        margin: 2vh 3vw;
        gap: 20px;
    }
    
    .hero-card {
        padding: 20px;
    }
    
    .title {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* About section */
    
    .section-head h2 {
        font-size: 24px;
    }
    
    .muted {
        font-size: 16px;
    }
    
    .grid.grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Services section */
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .card-pad {
        padding: 15px 10px;
    }
    
    /* Clients section */
    .logo-item {
        height: 150px;
        width: 150px;
    }
    
    .logo-div {
        margin: 0 20px;
    }
    
    /* Gallery section */
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Contact section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form .row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    iframe {
        width: 100%;
        height: 250px;
    }
    
    /* Floating buttons */
    .fab {
        bottom: 70px;
        right: 302vw;
    }
    
    .fab a {
        height: 40px;
        width: 40px;
        font-size: 18px;
    }
    
    .to-top {
        right: 302vw;
        bottom: 10px;
        padding: 10px 15px;
    }

    .limg{
        height: 11vh;
        max-width: 65vw;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
    .p {
        font-size: 6vw;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .logo-item {
        height: 120px;
        width: 120px;
    }
    
    .hero .inner {
        margin: 1vh 2vw;
    }
    
}