/* Reset and 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;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 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: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Logo Container Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text-image {
    height: 35px;
    width: auto;
    object-fit: contain;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

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

.nav-link:focus {
    outline: none;
}

.nav-link:focus-visible {
    outline: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 23px;
    height: 2px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Image Slider Styles */
.image-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    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;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

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

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
    pointer-events: none;
}

.slider-btn {
    pointer-events: auto;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Button Styles */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Mobile Contact Button */
.mobile-contact-btn {
    display: none;
}

/* Slider Contact Form Styles */
.slider-contact-form {
    position: absolute;
    top: 50%;
    right: 150px;
    transform: translateY(-50%);
    z-index: 10;
    width: 380px;
    max-width: 90vw;
}

/* Contact Form Popup Overlay */
.contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form-popup {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-popup h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.contact-form-popup p {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #7f8c8d;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #f1f1f1;
    color: #2c3e50;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.contact-form-card p {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.slider-contact-form-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-contact-form-content input,
.slider-contact-form-content select,
.slider-contact-form-content textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.slider-contact-form-content input:focus,
.slider-contact-form-content select:focus,
.slider-contact-form-content textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.slider-contact-form-content textarea {
    resize: vertical;
    min-height: 80px;
}

.slider-contact-form-content button {
    background: #3498db;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.slider-contact-form-content button:hover {
    background: #2980b9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #7f8c8d;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Our Process Section Styles */
.our-process {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.92) 0%, rgba(233, 236, 239, 0.92) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="triangle-tech" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><path d="M 100 20 L 180 180 L 20 180 Z" fill="none" stroke="%233498db" stroke-width="0.4" opacity="0.06"/><path d="M 100 40 L 160 160 L 40 160 Z" fill="none" stroke="%233498db" stroke-width="0.3" opacity="0.05"/><path d="M 100 60 L 140 140 L 60 140 Z" fill="none" stroke="%233498db" stroke-width="0.2" opacity="0.04"/><path d="M 100 80 L 120 120 L 80 120 Z" fill="%233498db" opacity="0.08"/><path d="M 50 50 L 150 50 L 100 150 Z" fill="none" stroke="%233498db" stroke-width="0.3" opacity="0.05"/><path d="M 70 70 L 130 70 L 100 130 Z" fill="none" stroke="%233498db" stroke-width="0.2" opacity="0.04"/></pattern></defs><rect width="100%" height="100%" fill="url(%23triangle-tech)"/></svg>');
    background-size: 200px 200px;
    background-position: center;
    position: relative;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}



.process-step.step-1,
.process-step.step-3 {
    margin-left: 50px;
    flex-direction: row;
}

.process-step.step-2 {
    margin-right: 50px;
    flex-direction: row;
    margin-left: auto;
    max-width: 80%;
}

.step-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
}

.step-circle i {
    font-size: 2.5rem;
    color: #3498db;
}

.step-content {
    flex: 1;
    max-width: 500px;
}

.step-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.step-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-points p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 5px;
}

/* Logo Carousel Section */
.logo-carousel {
    padding: 2px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 0px;
}

.carousel-header h3 {
    font-size: 1rem;
    color: #6e7379;
    margin-bottom: 0;
    font-weight: 500;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 5px 0;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 16); /* 8 items × 2 (duplicated) × 200px each */
    gap: 1px;
}

.carousel-item {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0; /* Remove any margins to use only gap */
}

.logo-item {
    background: transparent;
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logo-item i {
    font-size: 1.1rem;
    color: #3498db;
    order: 2;
}

.logo-item span {
    font-size: 0.9rem;
    font-weight: 600;
    order: 1;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.1);
    border-color: #3498db;
    color: #3498db;
}

.logo-item:hover i {
    color: #3498db;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 8 - 1px * 8)); /* Move by half the total width including gaps */
    }
}

/* Quick Enquiry Section - COMMENTED OUT */
/*
.quick-enquiry {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.quick-enquiry .section-header p {
    color: white;
}

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

.enquiry-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.enquiry-info ul {
    list-style: none;
    margin-bottom: 3rem;
}

.enquiry-info ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: white;
}

.enquiry-info ul li i {
    color: #3498db;
    background: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.enquiry-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-highlight i {
    font-size: 1.5rem;
    color: #3498db;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-highlight h4 {
    margin-bottom: 0.3rem;
    color: white;
}

.contact-highlight p {
    color: white;
}

.enquiry-form-container {
    display: flex;
    justify-content: center;
}

.enquiry-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.enquiry-form-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.quick-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-enquiry-form input,
.quick-enquiry-form select,
.quick-enquiry-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quick-enquiry-form input:focus,
.quick-enquiry-form select:focus,
.quick-enquiry-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.quick-enquiry-form textarea {
    resize: vertical;
    min-height: 80px;
}
*/

/* Services Section */
.services {
    padding: 6rem 0;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

.services-closing {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 4px solid #3498db;
}

.services-closing p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

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

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.industry-card h3 {
    color: #2c3e50;
    font-size: 1.2rem;
}

/* Jobs Section */
.jobs {
    padding: 6rem 0;
}

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

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

.job-card:hover {
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.job-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    flex: 1;
    margin: 0;
    line-height: 1.3;
}

.job-type {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 32px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.job-type:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.job-details {
    margin-bottom: 1rem;
}

.job-details p {
    color: #7f8c8d;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-details i {
    color: #3498db;
    width: 16px;
}

.job-description {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.jobs-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #3498db;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header p {
    color: white;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #3498db;
}

.contact-details h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: white;
    opacity: 0.9;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-section ul li a:focus {
    outline: none;
}

.footer-section ul li a:focus-visible {
    outline: none;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }

    .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: 1rem 0;
    }

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

    .nav-item {
        margin: 8px 0;
    }

    /* Image Slider Mobile Styles */
    .image-slider {
        height: 70vh;
        margin-top: 70px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-dots {
        bottom: 1rem;
    }

    /* Logo Mobile Styles */
    .logo-container {
        gap: 6px;
    }
    
    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .logo-text-image {
        height: 24px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat {
        text-align: center;
    }
    
    .stat h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .stat p {
        font-size: 0.8rem;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Industries Section */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .industry-card {
        padding: 1rem;
    }
    
    .industry-card h3 {
        font-size: 0.9rem;
    }
    
    .industry-card i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    /* Jobs Section */
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .job-card {
        padding: 1rem;
    }
    
    .job-header h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .job-type {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .job-details p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .job-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-author h4 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .testimonial-author p {
        font-size: 0.8rem;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.3rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Our Process Mobile Styles */
    .process-steps {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .process-step {
        flex-direction: column !important;
        text-align: center;
        gap: 0.8rem;
        padding: 1rem;
    }

    .process-step.step-2 {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .process-step.step-2 .step-circle { 
        order: -1; 
    }
    
    .process-step.step-2 .step-content { 
        order: 0; 
    }

    .process-step.step-1,
    .process-step.step-3 {
        margin-left: 0;
    }

    .step-circle {
        width: 60px;
        height: 60px;
    }

    .step-circle i {
        font-size: 1.2rem;
    }

    .step-content {
        max-width: 100%;
    }

    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-points p {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    /* Logo Carousel */
    .carousel-track {
        animation-duration: 45s;
    }
    
    .carousel-item {
        margin: 0 1px;
    }
    
    .carousel-header h3 {
        display: none;
    }
    
    .logo-item {
        padding: 0.8rem;
    }
    
    .logo-item span {
        font-size: 0.8rem;
    }
    
    .logo-item i {
        font-size: 1rem;
    }
    
    .slide-content {
        left: 50%;
        max-width: 800px;
    }
    
    .mobile-contact-btn {
        display: block;
        margin-top: 1.5rem;
    }
    
    .slider-contact-form {
        display: none;
    }
    
    .contact-form-card {
        margin: 0 15px;
        background: rgba(255, 255, 255, 0.98);
    }
}

@media (max-width: 480px) {
    /* Logo Small Mobile Styles */
    .logo-container {
        gap: 6px;
    }
    
    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .logo-text-image {
        height: 24px;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 200px;
    }

    .slider-controls {
        padding: 0 0.5rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .service-card,
    .job-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .enquiry-form-card {
        padding: 1rem;
    }

    .enquiry-info ul li {
        font-size: 0.9rem;
    }
    
    /* Contact form popup styles for mobile */
    .contact-form-overlay {
        z-index: 10000;
    }
    
    .contact-form-popup {
        max-width: 90%;
        max-height: 80vh;
    }

    /* Our Process Small Mobile Styles */
    .step-circle {
        width: 80px;
        height: 80px;
    }

    .step-circle i {
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-points p {
        font-size: 0.9rem;
    }
    
    /* Jobs Section for Small Mobile */
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .job-card {
        padding: 1rem;
    }
    
    .job-header h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .job-type {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }
    
    .job-details p {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
    
    .job-description {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    
    /* Logo Carousel Mobile Styles */
    .logo-carousel {
        padding: 15px 0;
    }
    
    .carousel-header h3 {
        display: none; /* Hide h3 title on mobile */
    }
    
    .carousel-track {
        animation-duration: 45s; /* Slower on mobile */
    }
    
    .carousel-item {
        flex: 0 0 140px;
        margin: 0; /* Use only gap for consistent spacing */
    }
    
    .logo-item {
        padding: 12px 15px;
        font-size: 0.95rem;
        min-width: 110px;
        border-width: 1px;
    }
    
    /* Additional Compact Styling for Small Mobile */
    .container {
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .section-header p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .slide-content h1 {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        width: 180px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
    }
    
    /* About Section */
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .stat p {
        font-size: 0.7rem;
    }
    
    /* Services Section */
    .service-card {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    /* Industries Section */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .industry-card {
        padding: 0.8rem;
    }
    
    .industry-card h3 {
        font-size: 0.8rem;
    }
    
    .industry-card i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    /* Testimonials Section */
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .testimonial-author h4 {
        font-size: 0.9rem;
        margin-bottom: 0.1rem;
    }
    
    .testimonial-author p {
        font-size: 0.7rem;
    }
    
    /* Contact Section */
    .contact-item {
        margin-bottom: 0.8rem;
        padding: 0.8rem;
    }
    
    .contact-details h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-details p {
        font-size: 0.75rem;
    }
    
    /* Footer */
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.2rem;
    }
    
    .footer-section ul li a {
        font-size: 0.75rem;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    /* Our Process Section */
    .process-steps {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .process-step {
        gap: 0.5rem;
        padding: 0.8rem;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
    }
    
    .step-circle i {
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .step-points p {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    /* Logo Carousel */
    .logo-carousel {
        padding: 1.5rem 0;
    }
    
    .carousel-track {
        animation-duration: 40s;
    }
    
    .logo-item {
        padding: 0.6rem;
        gap: 4px;
    }
    
    .logo-item span {
        font-size: 0.7rem;
    }
    
    .logo-item i {
        font-size: 0.8rem;
    }
    
    /* Contact Form */
    .contact-form-overlay {
        padding: 0.5rem;
    }
    
    .contact-form-popup {
        max-width: 95%;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 6px;
    }
    
    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .logo-text-image {
        height: 24px;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 200px;
    }

    .slider-controls {
        padding: 0 0.5rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .service-card,
    .job-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .enquiry-form-card {
        padding: 1rem;
    }

    .enquiry-info ul li {
        font-size: 0.9rem;
    }
    
    /* Contact form popup styles for mobile */
    .contact-form-overlay {
        z-index: 10000;
    }
    
    .contact-form-popup {
        max-width: 90%;
        max-height: 80vh;
    }

    /* Our Process Small Mobile Styles */
    .step-circle {
        width: 80px;
        height: 80px;
    }

    .step-circle i {
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-points p {
        font-size: 0.9rem;
    }
    
    /* Logo Carousel Small Mobile Styles */
    .logo-carousel {
        padding: 0px 0;
    }
    
    .carousel-header h3 {
        display: none; /* Hide h3 title on small mobile */
    }
    
    .carousel-track {
        animation-duration: 40s; /* Slower on small mobile */
    }
    
    .carousel-item {
        flex: 0 0 110px;
        margin: 0; /* Use only gap for consistent spacing */
    }
    
    .logo-item {
        padding: 10px 12px;
        font-size: 0.85rem;
        min-width: 90px;
        border-width: 1px;
    }
}

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

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

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