/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.navbar {
    padding: 1rem 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo h2 {
    color: #2c5aa0;
    font-weight: 700;
    font-size: 1.8rem;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover {
    color: #2c5aa0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5aa0;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #a9b4eb 0%, #2c5aa0 100%);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1;
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e8f2ff;
}
.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}
.btn-primary {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}
.btn-primary:hover {
    background: transparent;
    color: #ff6b6b;
    border-color: #ff6b6b;
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}
.btn-secondary:hover {
    background: white;
    color: #768df4;
    transform: translateY(-2px);
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}
.slider-dots {
    display: flex;
    gap: 8px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

.features {
    padding: 80px 0;
    background: #f8f9fa;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}
.feature-card p {
    color: #666;
    line-height: 1.6;
}

.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}
.about-text h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}
.about-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.about-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5aa0;
    font-weight: 600;
}
.about-feature i {
    font-size: 1.2rem;
}
.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quote {
    padding: 80px 0;
    background: linear-gradient(135deg, #a9b4eb 0%, #2c5aa0 100%);
    color: white;
}
.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.quote-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.quote-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group input,
.form-group select {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}
.form-group input::placeholder,
.form-group select {
    color: #666;
}
.form-group input:invalid,
.form-group select:invalid {
    border-color: #ff0000;
}

.form-message {
    margin-top: 1rem;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

.services {
    padding: 80px 0;
    background: #f8f9fa;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}
.section-header h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}
.section-header p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}
.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}
.service-card p {
    color: #666;
    line-height: 1.6;
}

.why-choose-us {
    padding: 80px 0;
}
.features-list {
    display: grid;
    gap: 2rem;
}
.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.feature-item .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}
.feature-content h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}
.feature-content p {
    color: #666;
    line-height: 1.6;
}

.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #a9b4eb 0%, #2c5aa0 100%);
    color: white;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item {
    padding: 0.5rem;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ff6b6b;
}
.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: #f8f9fad9;
}

.gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(85, 35, 35, 0.1);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    flex: 0 0 calc(20% - 16px);
    min-width: 200px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #f8f9fadf;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #667eea;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.gallery-arrow:hover {
    background: rgba(102, 126, 234, 0.9);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-arrow-left {
    left: -25px;
}

.gallery-arrow-right {
    right: -25px;
}

.gallery-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.gallery-arrow:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq {
    padding: 70px 0;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.faq-question {
    padding: 1.5rem;
    background: #eaedf0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition:  0.3s ease;
}
.faq-question:hover {
    background: #b4b5b7;
}
.faq-question h4 {
    color: #333;
    font-size: 1.1rem;
}
.faq-question i {
    color: #2c5aa0;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}
.faq-answer p {
    color: #666;
    line-height: 1.6;
}

.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.maps-section {
    padding: 80px 0;
    background: white;
}
.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.office-info {
    display: flex;
    align-items: center;
}

.office-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.office-details h4 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.office-address,
.office-hours,
.office-contact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.office-address i,
.office-hours i,
.office-contact i {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.office-address p,
.office-hours p,
.office-contact p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.office-address p:first-child,
.office-hours p:first-child,
.office-contact p:first-child {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
.whatsapp-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.whatsapp-button a:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.whatsapp-button i {
    font-size: 24px;
}
@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
}
.contact-details p {
    color: #666;
    line-height: 1.6;
}
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-form h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
  background: #2c3e50;
  color: #bdc3c7;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.footer-section p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.footer-section i {
  color: #ff6b6b;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ff6b6b;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #34495e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.social-links a:hover {
  background: #ff6b6b;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  font-size: 14px;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 100px; 
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2c5aa0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(44,90,160,0.25);
    border: none;
    cursor: pointer;
    z-index: 1100;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.back-to-top i {
    font-size: 18px;
}

/* Visible state */
.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover / focus */
.back-to-top:hover,
.back-to-top:focus {
    background: #1f497f;
    outline: none;
}

/* Adjust on small screens so it do not overlap the WhatsApp button */
@media (max-width: 768px) {
    .back-to-top { right: 20px; bottom: 90px; width:44px; height:44px; }
    .whatsapp-button { right: 20px; bottom: 20px; }
}
@media (max-width: 420px) {
    .back-to-top { bottom: 80px; width:42px; height:42px; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .image-slider {
        height: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

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

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button a {
        padding: 12px 16px;
        font-size: 14px;
    }

    .whatsapp-button span {
        display: none;
    }

    .features-list .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .gallery-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-arrow {
        position: static;
        transform: none;
        margin: 0 10px;
    }

    .gallery-arrow-left {
        left: auto;
    }

    .gallery-arrow-right {
        right: auto;
    }

    .gallery-item {
        flex: 0 0 calc(33.333% - 14px); 
        min-width: 180px;
    }

    .gallery-item img {
        height: 200px;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header h3 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 2rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .image-slider {
        height: 250px;
    }

    .slider-controls {
        bottom: 15px;
        padding: 8px 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

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

    .gallery-item {
        height: 180px;
    }

    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .gallery-item {
        flex: 0 0 calc(50% - 10px); 
        min-width: 150px;
    }

    .gallery-item img {
        height: 180px;
        object-fit: contain;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* improved mobile responsiveness & touch-friendly gallery/controls */

/* General small-screen polish */
@media (max-width: 420px) {
    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons .btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    /* Make image slider shorter for phones */
    .image-slider {
        height: 220px;
    }
    .slide img {
        object-fit: cover;
    }

    /* Services — stack and make cards compact, good for vehicle items */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .service-card {
        display: flex;
        gap: 1rem;
        align-items: center;
        padding: 1rem;
    }
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    .service-card h4 {
        font-size: 1.05rem;
        margin: 0;
    }
    .service-card p {
        font-size: 0.95rem;
        margin: 0.25rem 0 0;
    }

    /* Gallery: enable touch-swipe & single prominent item view */
    .gallery-container {
        gap: 0.75rem;
    }
    .gallery-slider {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .gallery-track {
        display: flex;
        gap: 12px;
        padding: 12px;
        align-items: stretch;
    }
    .gallery-item {
        flex: 0 0 82%; /* big single card that is swipeable */
        min-width: 82%;
        max-width: 82%;
        scroll-snap-align: center;
    }
    .gallery-slider {
        scroll-snap-type: x mandatory;
    }
    .gallery-item img {
        height: 200px;
        object-fit: cover;
    }
    .gallery-arrow { display: none; }

    /* Features (vehicle cards) — make icons touch-friendly */
    .feature-card {
        padding: 1rem;
    }
    .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
    }

    /* Contact / Maps */
    .map-wrapper iframe {
        height: 150px;
    }

    /* WhatsApp button smaller & icon-only on very small */
    .whatsapp-button a {
        padding: 10px 12px;
        gap: 8px;
        font-size: 13px;
    }
    .whatsapp-button span { display: none; }

    /* Forms and buttons touch-friendly */
    input, select, textarea, .btn {
        font-size: 1rem;
        padding: 12px;
    }

    /* Office details compact */
    .office-details {
        padding: 1rem;
    }
    .office-details h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
}

/* Slightly larger phones / small tablets: show 2 gallery items */
@media (min-width: 421px) and (max-width: 768px) {
    .gallery-item {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
    .gallery-item img { height: 220px; object-fit: cover; }

    .image-slider { height: 280px; }
    .hero-title { font-size: 2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { padding: 1.25rem; }
    .map-wrapper iframe { height: 300px; }
}

/* Accessibility: increase tap targets on small screens */
@media (max-width: 480px) {
    .nav-toggle .bar { height: 4px; }
    .nav-link { padding: 0.75rem 0; font-size: 1rem; }
    .btn { padding: 12px 18px; border-radius: 12px; }
}

/* Minor enhancement: prevent gallery arrows overlapping on small screens */
@media (max-width: 900px) {
    .gallery-arrow-left { left: 6px; }
    .gallery-arrow-right { right: 6px; }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Notification animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Notification styles */
.notification {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.notification-close:hover {
    opacity: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
}

/* About Page Styles */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.company-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-highlights {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.highlight i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.highlight h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.highlight p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
}

.values {
    padding: 80px 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.value-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #667eea;
}

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

.team-member h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Active navigation link */
.nav-link.active {
    color: #2c5aa0;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-card {
        padding: 2rem;
    }
    
    .story-highlights {
        grid-template-columns: 1fr;
    }
    
    .highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}