/* ---------- Paste your entire style block here (exactly as in your original file) ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
    color: #333;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
}

/* Navigation */
nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-block;
    min-width: 180px;
    text-align: center;
    white-space: nowrap;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: 0.3s;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

@media (max-width: 480px) {
    .chatbot-container {
        width: 300px;
        right: 10px;
        bottom: 90px;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-container.active {
    display: block;
}

.chatbot-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.chatbot-header i {
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}

.chatbot-header i:hover {
    transform: scale(1.2);
}

.chatbot-messages {
    height: 300px;
    padding: 1rem;
    overflow-y: auto;
    background: #f9f9f9;
}

.message {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.message.bot {
    align-items: flex-start;
}

.message.user {
    align-items: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bot .message-content {
    background: white;
    border: 1px solid #e0e0e0;
    border-top-left-radius: 5px;
}

.user .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-top-right-radius: 5px;
}

.message-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 0.2rem;
}

.chatbot-input {
    display: flex;
    padding: 1rem;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.chatbot-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    font-size: 0.9rem;
}

.chatbot-input input:focus {
    border-color: #667eea;
}

.chatbot-input button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.chatbot-input button:hover {
    transform: scale(1.05);
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.quick-reply {
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    border: 1px solid #667eea;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.quick-reply:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Chatbot Toggle Button */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: 0.3s;
    z-index: 999;
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(360deg);
}

@media (max-width: 768px) {
    .chatbot-toggle {
        right: 90px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        right: 20px;
        bottom: 20px;
    }
}

/* 6-Slide Auto Carousel (Reduced Height) */
.hero-slider {
    position: relative;
    top: 70px;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 420px;
    }
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102,126,234,0.9) 0%, rgba(118,75,162,0.9) 100%);
    z-index: 1;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    transform: scale(1.1);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 1.5rem;
    animation: slideUp 1s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #667eea;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid white;
    font-size: 0.95rem;
    display: inline-block;
    min-width: 160px;
    text-align: center;
    white-space: nowrap;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: 0.3s;
    font-size: 0.95rem;
    display: inline-block;
    min-width: 160px;
    text-align: center;
    white-space: nowrap;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: transparent;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        min-width: 140px;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-secondary {
        min-width: 130px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
    }
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

/* Main Content Adjustment */
.main-content {
    margin-top: 70px;
}

/* Services Section */
.services {
    padding: 4rem 5%;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-title span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.service-card {
    background: white;
    padding: 1.8rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-align: center;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.service-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.service-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.9rem;
}

.service-link:hover {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #667eea05 0%, #764ba205 100%);
    display: flex;
    justify-content: center;
}

.about-content {
    max-width: 1200px;
    width: 100%;
    text-align: justify;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    word-wrap: break-word;
}

@media (max-width: 992px) {
    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 1.5rem;
    }
    .about-content {
        text-align: justify;
    }
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 2.5rem 1rem;
    }
    .about-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* Stats section (if used) */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 2rem;
}
.feature { 
    text-align: center; 
    padding: 2rem; 
    background: #f8fafc; 
    border-radius: 28px; 
}
.feature i { 
    font-size: 2.5rem; 
    background: linear-gradient(145deg,#2563eb,#7c3aed); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* Process Section */
.process {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.process .section-title {
    color: white;
}

.process .section-title span {
    -webkit-text-fill-color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Team Section */
.team {
    padding: 4rem 5%;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.team-member {
    text-align: center;
    padding: 1.8rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.1);
}

.member-img {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-img i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.team-member .position {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.team-member p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #667eea05 0%, #764ba205 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #667eea;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.info-item p {
    color: #666;
    font-size: 0.9rem;
    word-break: break-word;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Map Section */
.map {
    height: 350px;
    width: 100%;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.footer-section p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.85rem;
}

/* Service Detail Pages */
.service-detail {
    padding: 7rem 5% 4rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.service-detail-content {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .service-detail-content {
        padding: 1.5rem;
    }
}

.service-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.service-header-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-header-text p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-header-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    max-width: 400px;
}

@media (max-width: 1024px) {
    .service-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-header-image {
        display: flex;
        justify-content: center;
    }
    
    .service-header-image img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .service-header-text h2 {
        font-size: 1.8rem;
    }
    
    .service-header-image img {
        max-width: 280px;
    }
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin: 2.5rem 0;
}

.service-feature-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea05 0%, #764ba205 100%);
    border-radius: 15px;
    transition: 0.3s;
}

.service-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.service-feature-item i {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 0.8rem;
}

.service-feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-feature-item p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

.service-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
}

.service-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.service-cta p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.back-btn {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}

.back-btn:hover {
    color: #764ba2;
}

/* Responsive Design (additional) */
@media (max-width: 1024px) {
    .hero-slider {
        height: 380px;
    }
    .slide-content h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 1rem;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }
    .nav-btn {
        width: 100%;
        min-width: auto;
    }
    .hero-slider {
        height: 320px;
    }
    .slide-content h1 {
        font-size: 1.8rem;
    }
    .slide-content p {
        font-size: 0.9rem;
    }
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    .chatbot-container {
        width: 300px;
        right: 20px;
    }
    .chatbot-toggle {
        right: 90px;
    }
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 1.2rem;
    }
    .service-cta h3 {
        font-size: 1.5rem;
    }
    .service-cta .btn-primary {
        width: auto;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
    .hero-slider {
        top: 60px;
        height: 380px;
    }
    .main-content {
        margin-top: 60px;
    }
    .slide-content h1 {
        font-size: 1.5rem;
    }
    .slide-content p {
        font-size: 0.85rem;
    }
    .btn-primary, .btn-secondary {
        width: 180px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    .service-header-image img {
        max-width: 100%;
    }
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    .info-item i {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 360px) {
    .hero-slider {
        height: 420px;
    }
    .slide-content {
        padding: 1rem;
    }
    .slide-content h1 {
        font-size: 1.3rem;
    }
    .btn-primary, .btn-secondary {
        width: 160px;
        padding: 0.5rem 0.8rem;
    }
    .service-cta .btn-primary {
        width: auto;
        min-width: 160px;
    }
}