/* Reset & Base - Green & Orange Theme */
:root {
    --primary: #FF6600; /* Orange */
    --primary-dark: #E55A00; /* Darker Orange */
    --secondary: #28A745; /* Green */
    --secondary-dark: #218838; /* Darker Green */
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --border-radius: 10px;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: white;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    color: var(--dark);
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

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

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Slider - Enhanced Design */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    margin-top: 0;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(30, 41, 59, 0.88) 0%,
        rgba(15, 23, 42, 0.92) 50%,
        rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.slide-content {
    color: white;
    max-width: 800px;
    padding: 50px 40px;
    z-index: 3;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-left: 8%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    padding-bottom: 20px;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.slide-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.5);
}

.slide-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 650px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

.slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

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

.dot.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scale(1.4);
    border-color: white;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
}

.dot:hover {
    background: white;
    transform: scale(1.25);
    border-color: var(--primary);
}

/* Hero Slider Responsive */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 3rem;
    }

    .slide-text {
        font-size: 1.2rem;
    }

    .slide-content {
        max-width: 700px;
        padding: 40px 35px;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 75vh;
        min-height: 550px;
    }

    .slide-title {
        font-size: 2.5rem;
        padding-bottom: 18px;
    }

    .slide-title::after {
        width: 80px;
    }

    .slide-content {
        margin-left: 5%;
        padding: 35px 30px;
        max-width: 650px;
    }

    .slide-text {
        font-size: 1.15rem;
        margin-bottom: 35px;
    }

    .slider-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-title {
        font-size: 2.2rem;
        padding-bottom: 15px;
    }

    .slide-title::after {
        width: 70px;
        height: 4px;
    }

    .slide-text {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .slide-content {
        margin-left: 0;
        padding: 30px 25px;
        background: rgba(255, 255, 255, 0.1);
        max-width: 90%;
        margin: 0 auto;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .slide-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

    .slider-dots {
        bottom: 30px;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 65vh;
        min-height: 450px;
    }

    .slide-title {
        font-size: 1.9rem;
        padding-bottom: 12px;
    }

    .slide-title::after {
        width: 60px;
        height: 3px;
    }

    .slide-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .slide-content {
        padding: 25px 20px;
    }

    .slide-buttons {
        gap: 12px;
    }

    .slide-buttons .btn {
        padding: 13px 25px;
        font-size: 0.95rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

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

    .slider-dots {
        bottom: 25px;
        gap: 10px;
    }
}

/* Header */
header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    margin-right: 12px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.logo-text span {
    color: var(--primary);
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 5px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #f0fff4 0%, #fff5e6 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') no-repeat center/cover;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), #d44d00);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-dark), #1e7e34);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

.btn-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mission-box {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary);
}

.vision-box {
    background: linear-gradient(135deg, #fff3e0, #ffecb3);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
}

.services-list {
    list-style: none;
    margin-top: 20px;
}

.services-list li {
    padding: 12px 0;
    color: var(--gray);
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.services-list li:before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    margin-right: 10px;
}

/* Services */
section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
}

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

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.8rem;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #ffa726, #fb8c00);
}
.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #66bb6a, #43a047);
}
.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #ffa726, #fb8c00);
}
.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #66bb6a, #43a047);
}
.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #ffa726, #fb8c00);
}
.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #66bb6a, #43a047);
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
}

.service-features li:before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Industries Section */
.industries {
    background: linear-gradient(135deg, #f8fff9, #fff9f0);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.industry-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.industry-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

/* Top row cards - Green */
.industry-card:nth-child(1):before,
.industry-card:nth-child(2):before,
.industry-card:nth-child(3):before {
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
}

/* Bottom row cards - Orange */
.industry-card:nth-child(4):before,
.industry-card:nth-child(5):before,
.industry-card:nth-child(6):before {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.industry-card:nth-child(1) .industry-icon,
.industry-card:nth-child(2) .industry-icon,
.industry-card:nth-child(3) .industry-icon {
    color: var(--secondary);
}

.industry-card:nth-child(4) .industry-icon,
.industry-card:nth-child(5) .industry-icon,
.industry-card:nth-child(6) .industry-icon {
    color: var(--primary);
}

/* Partners Section */
.partners {
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.partner-logo {
    height: 60px;
    opacity: 0.7;
    filter: grayscale(1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-5px);
}

.partner-logo span {
    font-weight: bold;
    color: var(--dark);
}

/* Image Gallery - Our Work in Action */
.image-gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 50%, #f0f9ff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(30, 41, 59, 0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Gallery Item Special Styling */
.gallery-item:nth-child(1) .gallery-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(40, 167, 69, 0.2) 40%,
        rgba(30, 41, 59, 0.95) 100%
    );
}

.gallery-item:nth-child(2) .gallery-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(255, 102, 0, 0.2) 40%,
        rgba(30, 41, 59, 0.95) 100%
    );
}

.gallery-item:nth-child(3) .gallery-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(40, 167, 69, 0.2) 40%,
        rgba(30, 41, 59, 0.95) 100%
    );
}

.gallery-item:nth-child(4) .gallery-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(255, 102, 0, 0.2) 40%,
        rgba(30, 41, 59, 0.95) 100%
    );
}

.gallery-item:nth-child(5) .gallery-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(40, 167, 69, 0.2) 40%,
        rgba(30, 41, 59, 0.95) 100%
    );
}

.gallery-item:nth-child(6) .gallery-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(255, 102, 0, 0.2) 40%,
        rgba(30, 41, 59, 0.95) 100%
    );
}

/* Gallery Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .image-gallery {
        padding: 80px 0;
    }

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

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(30, 41, 59, 0.95) 100%
        );
    }

    .gallery-overlay h4,
    .gallery-overlay p {
        transform: translateY(0);
    }
}

.it-full-image {
  width: 100%;
  margin-top: 100px;
  overflow: hidden;
}

.it-full-image img {
  width: 100%;
  height: 300px;              /* adjust height */
  object-fit: cover;
  transition: transform 0.6s ease;
}

.it-full-image:hover img {
  transform: scale(1.08);
}


/* CTA */
.cta {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    text-align: center;
    padding: 80px 0;
    border-radius: 20px;
    margin: 100px 20px;
}

.cta h2, .cta p {
    color: white;
}

.cta h2:after {
    background: white;
    left: 50%;
    transform: translateX(-50%);
}

.cta .btn {
    background: white;
    color: var(--primary);
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta .btn:hover {
    background: #f8f9fa;
    color: var(--primary-dark);
}

.it-three-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 45px 0;
}

.it-img {
  overflow: hidden;
  border-radius: 14px;
}

.it-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.it-img:hover img {
  transform: scale(1.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .it-three-images {
    grid-template-columns: 1fr;
  }

  .it-img img {
    height: 240px;
  }
}


/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    background: linear-gradient(135deg, var(--light), #ffffff);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.contact-details {
    flex: 1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-about p {
    color: #94a3b8;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

.powered-by {
    margin-top: 10px;
    font-size: 0.85rem;
}

.powered-by a {
    color: var(--primary);
    text-decoration: none;
}

.powered-by a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero:before {
        opacity: 0.05;
    }
    
    .cta {
        margin: 80px 10px;
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
        margin-left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero:before {
        display: none;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .btn-container {
        justify-content: center;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .cta {
        margin: 60px 10px;
        padding: 50px 20px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partner-logo {
        height: 50px;
        padding: 8px;
    }
}