@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0066cc;
    --secondary-color: #00d4ff;
    --accent-color: #ff6b6b;
    --dark-bg: #0a1628;item.element.style.backgroundAttachment = 'scroll';

    --text-dark: #1a2332;
    --text-light: #6c757d;
    --border-color: #e9ecef;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}



/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover ;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.slide.active {
    opacity: 0;
    z-index: 1;
}
/* Slide Backgrounds */
.slide-1 {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center ;
    background-image: url('assets/images/workslider.jpg')
}


.slide-2 {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image:url('assets/images/work1.jpg')
    
}

.slide-3 {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center ;
    background-image:url('assets/images/space2.png')
    
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    animation: slideInUp 0.8s ease;
    width: 90%;
    max-width: 1200px;
}


.hero-title {
    font-size: 4rem;
    color: white;

}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    display: flex;
    gap: 20px;
    z-index: 20;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-btn.prev {
    margin-right: 10px;
}

.slider-btn.next {
    margin-left: 10px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.cta-button {
    padding: 14px 38px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.25);
    letter-spacing: 0.3px;
}

.cta-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.35);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.25);
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto 0;
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 102, 204, 0.15);
    border-color: var(--secondary-color);
}

.category-icon {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    color: var(--secondary-color);
    transform: scale(1.12) rotate(5deg);
}

.category-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.35rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 102, 204, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 102, 204, 0.18);
    border-color: var(--secondary-color);
}

.service-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image::before {
    left: 100%;
}

.service-content {
    padding: 28px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.6;
}

.service-tag {
    display: inline-block;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-right: 8px;
    font-weight: 500;
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.learn-more::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card:hover .learn-more::after {
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #00d4ff 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    animation: fadeIn 0.6s ease;
    padding: 20px 0;
}

.stat-card h3 {
    font-size: 3.5rem;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.stat-card p {
    font-size: 1.05rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02), rgba(0, 212, 255, 0.02));
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.vision-card {
    border-left-color: var(--secondary-color);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.vision-card .card-icon {
    background: linear-gradient(135deg, var(--secondary-color), #00ff88);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.mission-list,
.vision-list {
    list-style: none;
    padding: 0;
}

.mission-list li,
.vision-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.vision-list i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.image-placeholder {
    width: 100%;
    height: 400px;
   
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-message {
    margin-top: 15px;
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 15px;
    letter-spacing: 0.3px;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #0d5c1f;
    border: 2px solid #5ed478;
    box-shadow: 0 4px 15px rgba(93, 212, 120, 0.2);
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #7a1e26;
    border: 2px solid #f55a5a;
    box-shadow: 0 4px 15px rgba(245, 90, 90, 0.2);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
}

/* Map Container */
.map-container {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

.leaflet-container {
    border-radius: 12px;
}

/* Responsive adjustments for map */
@media (max-width: 768px) {
    .contact-map {
        height: 300px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #0d1d2d 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 22px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== FLEXIBLE LAYOUT SECTIONS ==================== */

/* CEO Section */
.ceo-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0066cc 0%, #00d4ff 100%);
    color: white;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ceo-image {
    position: relative;
}

.ceo-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.ceo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #0066cc;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ceo-text .section-title {
    color: white;
    margin-bottom: 15px;
}

.ceo-name {
    font-size: 1.3rem;
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 20px;
}

.ceo-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin: 20px 0;
    line-height: 1.8;
    border-left: 4px solid #00d4ff;
    padding-left: 20px;
}

.ceo-bio {
    margin-top: 30px;
}

.ceo-bio p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.ceo-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.achievement {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.achievement:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.achievement i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.achievement p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
    border-top-color: var(--secondary-color);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    animation: slideInUp 0.6s ease-out;
}

.benefit-card h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-top: -20px;
    margin-bottom: 40px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    gap: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
}

.gallery-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-view-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-view-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.gallery-modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.gallery-modal-caption {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    color: white;
    padding: 20px 0;
    font-size: 1.1rem;
}

.gallery-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-modal-close:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

/* Featured Solutions Section */
.featured-solutions {
    padding: 80px 20px;
    background: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.featured-item {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    overflow: hidden;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-item.large {
    grid-row: span 2;
    min-height: auto;
}

.featured-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.25);
}

.featured-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.featured-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.featured-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-item p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

.learn-more {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-bottom: 2px solid white;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: fit-content;
}

.learn-more:hover {
    padding-left: 0;
    padding-right: 5px;
}

.featured-image {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 6rem;
    opacity: 0.15;
    z-index: 1;
}

.featured-item.large .featured-image {
    font-size: 8rem;
}

/* Enhanced About Section */
.about-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.about-section .section-title {
    margin-bottom: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-text .cta-button {
    margin-top: 20px;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

/* ==================== RESPONSIVE NEWS SECTION ==================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        gap: 10px;
        box-shadow: var(--shadow);
    }

    .slider-container {
        margin-top: 70px;
        min-height: 50vh;
        height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 25px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .categories-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .image-placeholder {
        height: 300px;
        font-size: 3rem;
    }

    .ceo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ceo-achievements {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .benefit-card {
        padding: 25px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-item.large {
        grid-row: span 1;
    }

    .featured-content {
        padding: 20px;
    }

    .featured-item h3 {
        font-size: 1.2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        padding: 20px;
    }

    /* Gallery Mobile Styles */
    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-filters {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
    }

    .gallery-filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-image {
        height: 100%;
    }

    .gallery-modal {
        padding: 20px;
    }

    #galleryModalContent {
        width: 95%;
        max-height: 80vh;
        padding: 20px;
    }

    #galleryModalImage {
        max-width: 100%;
        max-height: 70vh;
        object-fit: contain;
    }

    .gallery-modal-close {
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
    }
}

/* ==================== LATEST NEWS SECTION ==================== */

.latest-news-section {
    padding: 80px 20px;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.12);
    transform: translateY(-5px);
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.date-day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.date-month {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
}

.news-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.news-card:hover h3 {
    color: var(--primary-color);
}

.news-category {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: 5px;
}

.news-card p:not(.news-category) {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.featured-news {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    grid-column: auto;
}

.featured-news::before {
    display: none;
}

.featured-news h3,
.featured-news p:not(.news-category) {
    color: white;
}

.featured-news .news-category {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.featured-news .date-day,
.featured-news .date-month {
    color: white;
}

.featured-news .read-more {
    color: white;
    border-bottom: 2px solid white;
}

.featured-news:hover .read-more {
    color: white;
}

.news-action {
    text-align: center;
}

/* ==================== RESPONSIVE NEWS SECTION ==================== */

@media (max-width: 480px) {
    * {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

    body {
        overflow-x: hidden;
    }

    .slider-container {
        margin-top: 70px;
        min-height: 100vh;
        height: auto;
    }

    .slide {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.3;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slide-content {
        width: 95%;
        padding: 20px;
    }

    .ceo-section {
        padding: 60px 20px;
    }

    .ceo-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ceo-img {
        border-radius: 12px;
    }

    .ceo-name {
        font-size: 1.1rem;
    }

    .ceo-quote {
        font-size: 1rem;
        padding-left: 15px;
    }

    .ceo-achievements {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .achievement {
        padding: 15px;
    }

    .achievement i {
        font-size: 1.5rem;
    }
}

/* ==================== Service Modal ==================== */

.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.service-modal.open {
    display: flex;
}

/* Quote Modal */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    overflow-y: auto;
}

.quote-modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px 0;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 2001;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 50%;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 40px;
}

.service-icon-large {
    text-align: center;
    margin-bottom: 30px;
}

.service-icon-large span {
    font-size: 80px;
    display: inline-block;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-section {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.detail-section h3 {
    margin-top: 0;
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.detail-section p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.secondary-button {
    padding: 12px 24px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secondary-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.secondary-button:active {
    transform: translateY(0);
}

.service-card {
    cursor: pointer;
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions button {
        width: 100%;
    }

    .service-icon-large span {
        font-size: 60px;
    }
}

/* ==================== Services Section Updates ==================== */

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Live Chat Button */
.live-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.live-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.6);
}

.live-chat-btn:active {
    transform: scale(0.95);
}

.chat-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.live-chat-btn:hover .chat-tooltip {
    opacity: 1;
}

/* Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
    display: none;
    flex-direction: column;
    z-index: 998;
    animation: slideUp 0.3s ease;
}

.live-chat-widget.open {
    display: flex;
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
}

.chat-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-close:hover {
    transform: rotate(90deg);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    animation: fadeIn 0.3s ease;
}

.chat-message p {
    background: white;
    padding: 12px 15px;
    border-radius: 10px;
    margin: 0;
    max-width: 80%;
    word-wrap: break-word;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chat-message small {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    display: block;
}

.bot-message {
    justify-content: flex-start;
}

.bot-message p {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.user-message {
    justify-content: flex-end;
}

.user-message p {
    background: var(--primary-color);
    color: white;
}

/* Chat Input Area */
.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 10px 10px;
}

.chat-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.2);
}

.chat-send {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.05);
}

.chat-send:active {
    transform: scale(0.95);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Equipment Rentals Section */
.rentals-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e9f0ff 100%);
}

.rentals-section .section-title {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.rental-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rental-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.rental-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e9ecef;
}

.rental-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rental-card:hover .rental-image img {
    transform: scale(1.05);
}

.rental-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rental-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.rental-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.rental-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rental-card .cta-button {
    width: 100%;
    padding: 12px 20px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rental-card .cta-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.rentals-note {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rentals-note p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

/* Rental Modal */
.rental-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

.rental-modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
    z-index: 2001;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.modal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.modal-details {
    padding: 30px;
}

.modal-details h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-details > p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Rental & Service Quote Forms */
.rental-form,
.service-quote-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f3ff 100%);
    border-radius: 12px;
    border: 1px solid #e0e6ff;
}

.rental-form input,
.rental-form select,
.rental-form textarea,
.service-quote-form input,
.service-quote-form select,
.service-quote-form textarea {
    padding: 14px 16px;
    border: 2px solid #e0e6ff;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: white;
    color: var(--text-dark);
}

.rental-form input::placeholder,
.rental-form select::placeholder,
.rental-form textarea::placeholder,
.service-quote-form input::placeholder,
.service-quote-form select::placeholder,
.service-quote-form textarea::placeholder {
    color: #999;
}

.rental-form input:focus,
.rental-form select:focus,
.rental-form textarea:focus,
.service-quote-form input:focus,
.service-quote-form select:focus,
.service-quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
    background: white;
    transform: translateY(-2px);
}

.rental-form button,
.service-quote-form button {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), #0052cc);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.rental-form button:hover,
.service-quote-form button:hover {
    background: linear-gradient(135deg, #0052cc, #003d99);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.rental-form button:active,
.service-quote-form button:active {
    transform: translateY(-1px);
}

.rental-form button:disabled,
.service-quote-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#rentalRequestLink {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

#rentalRequestLink:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Responsive Design */
@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100% - 40px);
        height: 400px;
        right: 20px;
        bottom: 90px;
    }

    .chat-messages {
        padding: 15px;
    }

    .chat-message p {
        max-width: 90%;
    }

    .whatsapp-btn,
    .live-chat-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}
.slider-container,
.slider,
.slide {
    min-height: calc(100vh - 70px);
}

.slide {
    z-index: 1;
    background-size: cover ;
    background-position: center ;
    background-repeat: no-repeat;
}

.slide.active {
    z-index: 5;
    opacity: 1;
}

