/* Professional Color Palette */
:root {
    --primary: #FD3130;
    --primary-dark: #f90101;
    --primary-light: #f8bbbb;
    --secondary: #64748B;
    --accent: #f84040;
    --dark: #1E293B;
    --light: #F8FAFC;
    --gray: #94A3B8;
    --gray-light: #E2E8F0;
    --success: #10B981;
    --warning: #fe1414;
    --card-bg: #FFFFFF;
    --border: #E2E8F0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--secondary);
    line-height: 1.7;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
 .logo img {
    margin-top: 3%;
            height: 40px;
            width: auto;
            margin-right: 5px;
            /* filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); */
        }
.logo span {
    color: var(--dark);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
    font-size: 0.95rem;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* -------------------- TOP-LEVEL DROPDOWN -------------------- */
nav ul li.dropdown {
    position: relative;
}

/* -------------------- DROPDOWN MENU (LEVEL 1 & 2) -------------------- */
nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    width: 260px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 10px 0;
    z-index: 1000;
    border: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

/* Submenu inside dropdown (LEVEL 2) */
nav ul li .dropdown-menu li.dropdown {
    position: relative;
}

nav ul li .dropdown-menu li.dropdown .dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
    opacity: 0;
    transform: translateX(10px);
}

/* -------------------- SHOW ON HOVER -------------------- */
nav ul li.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

nav ul li .dropdown-menu li.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* -------------------- DROPDOWN LINKS -------------------- */
nav ul li .dropdown-menu li {
    margin: 0;
}

nav ul li .dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: #333333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    position: relative;
    text-decoration: none;
}

/* -------------------- HOVER EFFECT -------------------- */
nav ul li .dropdown-menu a:hover {
    background: #FD3130;
    color: #ffffff;
    padding-left: 25px;
    border-left: none;
}

/* -------------------- SUBMENU ARROW INDICATOR -------------------- */
nav ul li .dropdown-menu li.dropdown > a::after {
    /* content: "▶"; */
    position: absolute;
    right: 15px;
    font-size: 0.8rem;
    color: #999999;
    transition: transform 0.3s ease;
}

nav ul li .dropdown-menu li.dropdown:hover > a::after {
    /* transform: rotate(90deg); */
    color: #FD3130;
}

/* -------------------- SCROLLBAR (OPTIONAL) -------------------- */
nav ul li .dropdown-menu::-webkit-scrollbar {
    width: 5px;
}

nav ul li .dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 10px;
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    color: var(--light);
    background-size: cover;
            background-position: center;
            color: #fff;
            padding: 5rem 0;
            text-align: center;

    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--light);
}

.hero p {
    font-size: 1.25rem;
    margin: 0 auto 3rem;
    color: var(--gray-light);
    max-width: 700px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.hero .btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--light);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--light);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.service-card img {
    width: 100%;
    height: 220px;   /* adjust as per your design */
    object-fit: cover;
    border-bottom: 1px solid var(--border);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.service-content {
    padding: 0 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    text-align: center;
}

.service-content p {
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.2s ease;
    margin-top: auto;
    justify-content: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.value-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--primary);
}

.value-item h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Technologies Grid */
.tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
      margin: 50px auto;
      max-width: 1200px;
      padding: 0 20px;
    }

    .tech-item {
      position: relative;
      height: 220px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      background-size: cover;
      background-position: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .tech-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45); /* dark overlay */
      transition: background 0.3s ease;
    }

    .tech-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .tech-item:hover::before {
      background: rgba(0, 0, 0, 0.6);
    }

    .tech-content {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      color: #fff;
      text-align: center;
      z-index: 2;
    }

    .tech-content h3 {
        color: var(--light);
      margin: 0;
      font-size: 20px;
      font-weight: 600;
    }


    .stats-section {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 5rem 0;
            margin: 4rem 0;
            border-radius: 12px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        
        .stat-item h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: white;
        }
        
        .stat-item p {
            color: var(--light);
            font-size: 1.1rem;
        }

        /* Why Choose Us */
        .features-list {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 3rem 0;
        }
        
        .features-list ul {
            list-style: none;
            columns: 2;
            column-gap: 2rem;
        }
        
        .features-list li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            break-inside: avoid;
        }
        
        .features-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
            background: #ed8484;
            color: white;
            padding: 4rem 0;
            text-align: center;
            border-radius: 12px;
            margin: 4rem 0;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .cta-section h2:after {
            display: none;
        }
                
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.2rem;
        }
        
        .btn {
            display: inline-block;
            background: white;
            color: var(--accent);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
/* Industries List */
.section {
            padding: 3rem 0;
        }
        
        .industries-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }
        
        /* Different Card Styles */
        .industry-item {
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        /* Card Style 1 - Image Top */
        .industry-item.style1 {
            background-color: var(--card-bg);
            border: 1px solid var(--border);
        }
        
        .industry-item.style1:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        
        .industry-item.style1 .industry-image {
            height: 200px;
            overflow: hidden;
        }
        
        .industry-item.style1 .industry-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .industry-item.style1:hover .industry-image img {
            transform: scale(1.05);
        }
        
        .industry-item.style1 .industry-content {
            padding: 1.8rem;
            text-align: center;
        }
        
        .industry-item.style1 h3 {
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-size: 1.4rem;
        }
        
        .industry-item.style1 p {
            color: #625d5d;
            line-height: 1.6;
        }


/* Technologies Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tech-item {
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transition: all 0.4s ease;
    z-index: 1;
}

.tech-item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    opacity: 0;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.tech-item:hover::before {
    height: 100%;
    opacity: 0.08;
}

.tech-item:hover::after {
    width: 120%;
    height: 120%;
    opacity: 0.03;
}

.tech-item img {
    max-width: 80px;
    height: auto;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    filter: grayscale(0.3);
}

.tech-item:hover img {
    transform: scale(1.15) rotate(5deg);
    filter: grayscale(0);
}

.tech-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tech-item:hover h3 {
    color: var(--accent-color, inherit);
    transform: translateY(-2px);
}

.tech-item .tech-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.tech-item:hover .tech-desc {
    opacity: 1;
    transform: translateY(-1px);
}

/* Section Styling */
.section {
    padding: 4rem 0;
    line-height: 1.7;
}

.section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Headings Styling */
.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50; /* Dark blue-gray for contrast */
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

.section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #34495e; /* Slightly lighter than h2 */
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary); /* Primary orange */
}

/* Paragraph Styling */
.section p {
    font-size: 1.1rem;
    color: #555; /* Medium gray for readability */
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* List Styling */
.section ul, 
.section ol {
    margin: 1.5rem 0 2.5rem 0;
    padding-left: 2rem;
}

.section li {
    font-size: 1.1rem;
    color: #555; /* Medium gray for readability */
    margin-bottom: 1rem;
    line-height: 1.7;
    padding-left: 0.5rem;
}

.section li strong {
    color: #d35400; /* Darker orange for better contrast */
    font-weight: 600;
}

/* Unordered List Specific */
.section ul li {
    position: relative;
}

.section ul li::before {
    content: "•";
    color: var(--primary); /* Primary orange */
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: -1.2rem;
    top: 0;
}

/* Ordered List Specific */
.section ol {
    counter-reset: list-counter;
}

.section ol li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 1rem;
}

.section ol li::before {
    content: counter(list-counter) ".";
    color: var(--primary); /* Primary orange */
    font-weight: 600;
    position: absolute;
    left: -1.5rem;
    top: 0;
}

/* Button Styling */
.section .btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); /* Orange gradient */
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    border: none;
    cursor: pointer;
}

.section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    background: linear-gradient(135deg, #ff5c5c 0%, var(--primary) 100%); /* Lighter orange on hover */
}

/* Additional Orange Accent Elements */
.section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 1rem auto 0 auto;
    border-radius: 2px;
}

/* Focus states for accessibility */
.section .btn:focus {
    outline: 3px solid rgba(230, 126, 34, 0.4);
    outline-offset: 2px;
}

/* Selection color */
.section ::selection {
    background: rgba(230, 126, 34, 0.2);
}

.section ::-moz-selection {
    background: rgba(230, 126, 34, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 2.5rem 0;
    }
    
    .section .container {
        padding: 0 1.5rem;
    }
    
    .section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section h2::after {
        width: 60px;
        margin: 0.8rem auto 0 auto;
    }
    
    .section h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .section ul, 
    .section ol {
        margin: 1rem 0 2rem 0;
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 0;
    }
    
    .section .container {
        padding: 0 1rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .section h2::after {
        width: 50px;
    }
    
    .section h3 {
        font-size: 1.3rem;
    }
    
    .section ul, 
    .section ol {
        padding-left: 1rem;
    }
    
    .section .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
/* Contact Form */
.contact-form {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
footer {
    background: var(--dark);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .values-grid,
    .tech-grid,
    .industries-list {
        grid-template-columns: 1fr;
    }
    
    .service-content,
    .value-item,
    .tech-item,
    .industry-item {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.powered-by {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.liglit-text {
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .powered-by {
        font-size: 0.8rem;
    }
}