/* Global Styles */
:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --dark-gray: #374151;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-blue);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.section {
    padding: 100px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary-blue);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--secondary-blue);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light-gray);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-weight: 600;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 15px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .btn {
    margin-top: 40px;
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.4s both;
    transition: all 0.3s;
}

.hero .btn:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
}

.services-overview h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.services-overview>.container>p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
    border-color: var(--light-blue);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Why Choose PROMARK */
.why-choose {
    text-align: center;
    padding: 100px 0;
    background: var(--white);
}

.why-choose h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.4rem;
    color: var(--secondary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose>.container>p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
    position: relative;
}

.feature::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), transparent);
    border-radius: 0 15px 0 100%;
    pointer-events: none;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
    border-left-color: var(--secondary-blue);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.feature:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
}

.feature p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Clients Slider */
.clients {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f0ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23dbeafe" opacity="0.3"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.clients h2 {
    position: relative;
    z-index: 1;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.clients-slider {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 40px;
}

.client-logo {
    flex: 0 0 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
}

.client-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
}

/* Stop slider on hover */
.clients-slider:hover .slider-track {
    animation-play-state: paused;
}


.client-logo:hover~.slider-track,
.client-logo:hover .slider-track {
    animation-play-state: paused;
}


.client-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 20 - 40px * 20));
    }
}

/* Work Together */
.work-together {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.work-together::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.work-together .container {
    position: relative;
    z-index: 1;
}

.work-together h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.work-together p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.work-together .btn {
    background-color: var(--white);
    color: var(--primary-blue);
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.work-together .btn:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Who We Are Section */
.who-we-are-section {
    background: linear-gradient(135deg, #f8faff 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.who-we-are-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05), transparent);
    border-radius: 50%;
}

.content-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.content-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.content-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.content-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-blue);
    font-size: 2.8rem;
}

.content-text {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.content-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.content-text p strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 15px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Our Story Section */
.our-story-section {
    background: linear-gradient(135deg, var(--white) 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.our-story-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent);
    border-radius: 50%;
}

.story-content {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.story-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    animation: pulse 2s infinite;
}

.story-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.story-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-blue);
    font-size: 2.8rem;
}

.story-text {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.story-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.story-highlight {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 25px auto;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-left: 4px solid var(--primary-blue);
    border-radius: 10px;
    max-width: 700px;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.story-text p strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.story-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 50px auto 0;
}

.timeline-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.15);
    border-left-color: var(--secondary-blue);
}

.timeline-year {
    min-width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
    flex-shrink: 0;
}

.timeline-content h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.team-member-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-blue);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover .team-member-img {
    border-color: var(--secondary-blue);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.3);
    transform: scale(1.05);
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-member-img img {
    transform: scale(1.1);
}

.team-member h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-member p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Mission Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.mv-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.mv-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mv-card p {
    color: var(--dark-gray);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.value {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid var(--secondary-blue);
}

.value:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.15);
}

.value h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.value p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Projects List */
.projects-list {
    margin-left: 25px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.projects-list li {
    margin-bottom: 15px;
    list-style-type: disc;
    color: var(--dark-gray);
    line-height: 1.8;
    padding-left: 5px;
}

.projects-list li::marker {
    color: var(--primary-blue);
}

/* Services Detailed */
.services-detailed {
    margin-top: 50px;
}

.service-detail {
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.service-detail:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.15);
}

.service-detail h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
}

.service-detail>p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-detail ul {
    margin-left: 25px;
    margin-top: 15px;
}

.service-detail li {
    margin-bottom: 12px;
    list-style-type: disc;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.industry {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.industry::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.03), transparent);
    pointer-events: none;
}

.industry:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.industry h3 {
    color: var(--primary-blue);
    margin-bottom: 18px;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.industry p {
    color: var(--dark-gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Contact Info */
.contact-info {
    margin-top: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 25px;
    padding: 25px;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.15);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-top: 5px;
    min-width: 30px;
}

.contact-item p,
.contact-item a {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    font-weight: 500;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.05"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--light-blue);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
}

.footer-section ul li a:hover {
    color: var(--light-blue);
}

.footer-section p a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section p a:hover {
    color: var(--light-blue);
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    footer .social-links {
        flex-direction: row;
        justify-content: flex-start;
    }

    .logo span {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .clients h2 {
        font-size: 2rem;
    }

    .services-overview h2,
    .why-choose h2 {
        font-size: 2rem;
    }

    .client-logo {
        flex: 0 0 150px;
        height: 90px;
    }

    .slider-track {
        gap: 25px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-150px * 20 - 25px * 20));
        }
    }

    .team-member-img {
        width: 150px;
        height: 150px;
    }

    .team-member {
        padding: 25px 20px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-card,
    .story-content {
        padding: 40px 30px;
    }

    .content-card h2,
    .story-content h2 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-timeline {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-year {
        margin: 0 auto 15px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Logo Styling */
footer .logo1 img {
    align-items: left;
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
    float: left;
}

footer .social-link {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

footer .social-link:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    footer .logo1 img {
        width: 140px;
    }

    footer .social-links {
        flex-direction: row;
        justify-content: flex-start;
    }
}