/* CSS Variables for Applisoft Theme */
:root {
    --primary: #d62828; /* Red color from logo */
    --primary-dark: #b91c1c;
    --primary-light: #ef4444;
    --secondary: #f59e0b; /* Accent yellow/orange */
    --accent: #fbbf24; /* Light yellow accent */
    --dark: #1f2937; /* Dark gray for text */
    --light: #fef3c7; /* Light yellow background */
    --light-dark: #fde68a; /* Slightly darker yellow */
    --gray: #6b7280;
    --gray-light: #d1d5db;
    --success: #10b981;
    --error: #ef4444;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --yellow-gradient: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

p {
    margin-bottom: 1rem;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 1.1rem;
    color: var(--gray);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(254, 243, 199, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(214, 40, 40, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGO */
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: transparent;
    border-radius: 10px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* COMPANY NAME */
.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .company-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.5px;
    font-family: 'Poppins', cursive;
}

.logo-text .tagline {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 500;
    margin-top: 5px;
}

/* NAVIGATION */
.nav-links {
    display: flex;
    gap: 25px;
    margin-left: auto;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
    color: var(--dark);
    font-size: 1rem;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--gradient);
    bottom: 0;
    left: 0;
    transition: var(--transition);
    border-radius: 1.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    margin-top: 100px;
    height: 75vh;
    min-height: 600px;
    overflow: hidden;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--yellow-gradient);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.1;
    color: var(--primary);
}

.slide-content .highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.slide-content .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(245, 158, 11, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 90%;
    color: var(--dark);
}

.slide-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0.9;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--light) 0%, rgba(254, 243, 199, 0.8) 50%, rgba(254, 243, 199, 0.2) 100%);
    z-index: 1;
}

/* IT-related images */
.slide-1 .slide-image {
    background-image: url('https://images.unsplash.com/photo-1522252234503-e356532cafd5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1450&q=80');
}

.slide-2 .slide-image {
    background-image: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
}

.slide-3 .slide-image {
    background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1468&q=80');
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(214, 40, 40, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px 25px;
    transition: var(--transition);
    border: 1px solid var(--light-dark);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.service-card:hover:before {
    width: 100%;
    opacity: 0.05;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* About Section */
.about {
    background-color: var(--light);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-dark);
}

.about:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    background-color: white;
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Leadership Section */
.leadership-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 50px 40px;
    border: 1px solid var(--light-dark);
    position: relative;
    overflow: hidden;
}

.leadership-content:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
}

.leadership-content:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
}

.founder-photo {
    flex-shrink: 0;
    z-index: 2;
}

.photo-frame {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid white;
    box-shadow: var(--shadow);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    flex: 1;
    z-index: 2;
}

.founder-info h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.position {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.bio p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.quote-box {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    margin: 25px 0;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-light);
}

.quote {
    color: var(--dark);
    font-style: italic;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.fa-quote-left, .fa-quote-right {
    color: var(--primary);
    font-size: 1.2rem;
}

.founder-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.founder-stat {
    text-align: center;
}

.founder-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
    line-height: 1;
}

.founder-stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Industries Section */
.industries-section {
    background-color: white;
    border-radius: var(--radius);
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-dark);
}

.industries-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
}

.industries-section:after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.industry-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 20px 15px;
    transition: var(--transition);
    border: 1px solid var(--light-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 120px;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.industry-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    background-color: rgba(214, 40, 40, 0.1);
    transition: var(--transition);
}

.industry-card:hover .industry-icon-inner {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

.industry-card h3 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--primary);
    line-height: 1.3;
    font-weight: 600;
}

/* Tech Stack Section */
.tech-stack {
    background: linear-gradient(135deg, var(--light) 0%, #fef9c3 100%);
    border-radius: var(--radius);
    padding: 50px 30px;
    border: 1px solid var(--light-dark);
    position: relative;
    overflow: hidden;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tech-category {
    background-color: white;
    border-radius: var(--radius);
    padding: 25px 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--light-dark);
    transition: var(--transition);
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.tech-category h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 12px;
}

.tech-category h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    bottom: 0;
    left: 0;
    border-radius: 1.5px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background-color: var(--light);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--primary-light);
    transition: var(--transition);
}

.tech-tag:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

/* Clients Section */
.clients-section {
    background-color: white;
    border-radius: var(--radius);
    padding: 50px 30px;
    border: 1px solid var(--light-dark);
    position: relative;
}

.clients-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1rem;
    color: var(--gray);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.client-card {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 25px;
    transition: var(--transition);
    border: 1px solid var(--light-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    height: 140px;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-light);
}

.client-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.client-card img {
    max-width: 90%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: none;
    opacity: 1;
}

.client-card:hover img {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-info {
    background-color: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    border: 1px solid var(--light-dark);
    box-shadow: var(--shadow-light);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-form {
    background-color: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    border: 1px solid var(--light-dark);
    box-shadow: var(--shadow-light);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--light);
    border: 1px solid var(--light-dark);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.success-message {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 1px solid var(--success);
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-message {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 1px solid var(--error);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
footer {
    background-color: var(--primary);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 10px;
}

.footer-logo-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .company-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.5px;
    font-family: 'Poppins', cursive;
}

.footer-logo-text .tagline {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    margin-top: 5px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links h4, .footer-services h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    color: white;
}

.footer-links h4:after, .footer-services h4:after {
    content: '';
    position: absolute;
    width: 35px;
    height: 3px;
    background: var(--accent);
    bottom: 0;
    left: 0;
}

.footer-links ul li, .footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a, .footer-services ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links ul li a:hover, .footer-services ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-slider {
        height: 65vh;
        min-height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .leadership-content {
        flex-direction: column;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .tech-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .photo-frame {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
        margin-left: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 550px;
        margin-top: 100px;
    }
    
    .slide {
        padding: 0 20px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-image {
        width: 100%;
        opacity: 0.5;
    }
    
    .slider-controls {
        left: 20px;
        bottom: 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .about-stats,
    .founder-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-text .company-name,
    .footer-logo-text .company-name {
        font-size: 1.8rem;
    }
    
    .leadership-content {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-stats,
    .founder-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info, .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .logo-text .company-name,
    .footer-logo-text .company-name {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 55px;
        height: 55px;
    }
    
    .logo-icon img {
        width: 45px;
        height: 45px;
    }
    
    .footer-logo-icon {
        width: 55px;
        height: 55px;
    }
    
    .footer-logo-icon img {
        width: 45px;
        height: 45px;
    }
    
    .industries-section,
    .tech-stack,
    .clients-section,
    .leadership-content {
        padding: 40px 20px;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .industry-card {
        padding: 15px 10px;
        min-height: 110px;
    }
    
    .industry-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
    
    .industry-icon-inner {
        font-size: 1.3rem;
    }
    
    .industry-card h3 {
        font-size: 0.95rem;
    }
    
    .photo-frame {
        width: 180px;
        height: 180px;
        margin: 0 auto 20px;
    }
    
    .founder-info h3 {
        font-size: 1.8rem;
    }
    
    .position {
        font-size: 1.1rem;
    }
}