.header {
    margin: 15px;
    position: fixed;
    top: 0;
    width: calc(100% - 30px); 
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(56, 50, 50, 0.1);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 15px; 
}

/* Background */

/* .about-hero {
  background-color: #0d0c0c;
  padding: 5px 20px;
   margin-top: 120px;
  text-align: center;
    border-radius: 15px; 
} */


/* // Background ke upar ext */
.about-hero .hero-content h1 {
  font-size: clamp(4rem, 7vw, 3rem);
  font-weight: bold;         
  color: 	#333333;   
  text-align: center;  
    padding: 5px 20px;
     margin-top: 120px;                    
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3.5rem 5%;
}

.about-section {
    padding: 5rem 5%;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}


.about-text {
    line-height: 1.8;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: #666;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 25px 25px 25px 25px rgba(119, 109, 109, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-section {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.map-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.map-frame {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.get-route-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
}

.get-route-button:hover {
    background-color: #45a049;
}

.testimonials {
    padding: 5rem 5%;
}

.testimonials h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Small Mobile Phones (320px - 480px) */
@media screen and (max-width: 480px) {
    .about-hero {
        /* padding: 40px 15px;
        margin-top: 60px; */
    }

    .about-hero .hero-content h1 {
        font-size: clamp(3rem, 8vw, 4rem);
    }

    .about-section {
        padding: 2rem 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .map-section {
        padding: 2rem 15px;
    }

    .map-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .map-frame {
        height: 300px;
    }

    .get-route-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .testimonials {
        padding: 2rem 15px;
    }

    .testimonials h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }
}

/* Large Mobile Phones (481px - 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
        margin-top: 70px;
    }

    .about-hero .hero-content h1 {
        font-size: clamp(4rem, 10vw, 5rem);
    }

    .about-section {
        padding: 3rem 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .map-section {
        padding: 3rem 20px;
    }

    .map-frame {
        height: 350px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Tablets (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .about-hero {
        padding: 80px 30px;
    }

    .about-hero .hero-content h1 {
        font-size: clamp(5rem, 11vw, 6rem);
    }

    .about-section {
        padding: 4rem 30px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .map-section {
        padding: 4rem 30px;
    }

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

/* Small Laptops (1025px - 1366px) */
@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .about-content,
    .map-container,
    .testimonial-grid {
        max-width: 1000px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Laptops and Desktops (1367px and above) */
@media screen and (min-width: 1367px) {
    .about-content,
    .map-container,
    .testimonial-grid {
        max-width: 1200px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .get-route-button:hover {
        background-color: #4CAF50;
    }

    .get-route-button:active {
        background-color: #45a049;
        transform: scale(0.98);
    }
}
