/* Global Styles */
:root {
    --primary-color: #00CED1; /* Vibrant teal */
    --secondary-color: #6A0DAD; /* Deep purple */
    --accent-color: #FF7F50; /* Orange for CTAs */
    --light-color: #f4f4f4;
    --dark-color: #333333; /* Charcoal for text */
    --text-color: #4D4D4D;
    --white-color: #fff;
    --success-color: #28a745;
    --border-color: #ddd;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #00CED1 0%, #6A0DAD 100%);
    --gradient-accent: linear-gradient(135deg, #FF7F50 0%, #FF5F1F 100%);
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --diagonal-angle: -5deg;
    --animation-duration: 0.8s;
    /* Base spacing units following 8px rule */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    /* Grid settings */
    --container-width: 1200px;
    --grid-gutter: 24px;
    --grid-margin: 24px;
}

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

body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--grid-margin);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900; /* Black weight for dramatic headlines */
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800; /* ExtraBold weight */
    position: relative;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--spacing-xxl) 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white-color);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: var(--white-color);
    border: none;
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.btn-outline:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--white-color);
}

.btn-outline:hover:after {
    height: 100%;
}

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
    transition: all 0.3s ease;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.navbar ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.navbar ul li a:hover:after,
.navbar ul li a.active:after {
    width: 100%;
}

.navbar ul li a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.1) 0%, rgba(106, 13, 173, 0.1) 100%);
    z-index: 0;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.05) 0%, rgba(255, 95, 31, 0.05) 100%);
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    line-height: 1.2;
}

.hero-content h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 450px;
    background-image: url('../images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
    z-index: 2;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.4) 0%, rgba(106, 13, 173, 0.4) 100%);
    z-index: 1;
}

/* Add overlay to improve text readability if placed on the background */
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Fallback for background image if it fails to load */
.hero-image.error {
    background-image: url('https://img.freepik.com/free-photo/group-diverse-business-people-meeting_53876-103962.jpg');
}

/* Services Overview Section */
.services-overview {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.services-overview:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(var(--diagonal-angle), var(--white-color) 0%, transparent 100%);
    z-index: 1;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.services-overview h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: var(--spacing-md) auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: var(--spacing-xl) auto;
    position: relative;
    z-index: 2;
    justify-content: center;
    max-width: 1100px;
}

.service-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: var(--spacing-xl) var(--spacing-lg);
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(234, 234, 234, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.03) 0%, rgba(106, 13, 173, 0.03) 100%);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 206, 209, 0.2);
}

.service-card:hover:before {
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--white-color);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 206, 209, 0.2);
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    box-shadow: 0 10px 25px rgba(0, 206, 209, 0.3);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
    color: var(--secondary-color);
}

.service-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card:hover h3:after {
    width: 60px;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

/* About Preview Section */
.about-preview {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.about-preview:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(var(--diagonal-angle), transparent 0%, #f9f9f9 100%);
    z-index: 1;
}

.about-preview .container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transform: perspective(1000px) rotateY(5deg) rotateX(-2deg);
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.about-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.2) 0%, rgba(106, 13, 173, 0.2) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.about-content {
    flex: 1;
    padding: 20px 0;
}

.about-content h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
}

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

.about-content p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-color);
}

.location {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, rgba(0, 206, 209, 0.1), rgba(106, 13, 173, 0.1));
    padding: 12px 25px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--secondary-color);
}

.location i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--white-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-choose-us:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(var(--diagonal-angle), #f9f9f9 0%, transparent 100%);
    z-index: 1;
}

.why-choose-us h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.why-choose-us h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.why-choose-us > p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: var(--spacing-xl) auto;
    position: relative;
    z-index: 2;
    justify-content: center;
    max-width: 1100px;
}

.feature {
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(234, 234, 234, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-primary);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 206, 209, 0.2);
}

.feature:hover:before {
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.1) 0%, rgba(106, 13, 173, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.5s ease;
}

.feature:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--white-color);
    transform: rotateY(360deg);
    box-shadow: 0 10px 25px rgba(0, 206, 209, 0.3);
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.feature h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.feature:hover h3:after {
    width: 60px;
}

.feature p {
    color: var(--text-color);
    line-height: 1.7;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white-color);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.cta-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.cta-section h2 {
    color: var(--white-color);
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--white-color);
    font-weight: 700;
    padding: 15px 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: var(--white-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: #aaa;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-primary);
}

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

.footer-logo img {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--white-color);
    margin-top: 15px;
    font-weight: 600;
}

.footer h3 {
    color: var(--white-color);
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
}

.footer h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.footer-links ul li a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #777;
}

/* Add animation keyframes for various animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-up {
    animation: fadeInUp 1s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 1s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

.animate-delay-4 {
    animation-delay: 0.8s;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-header:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.page-header:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.page-header h1 {
    color: var(--white-color);
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.page-header h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--white-color);
    border-radius: 2px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white-color);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: var(--white-color);
    font-weight: 600;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-header h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Section */
.about-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-section .about-image {
    flex: 1;
}

.about-section .about-content {
    flex: 1;
}

.who-we-are {
    background-color: var(--light-color);
}

.why-choose-us-detailed {
    padding: 80px 0;
}

.team-section {
    background-color: var(--light-color);
}

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

.team-member {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
}

.designation {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

/* Vision & Mission Page Styles */
.vision-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.section-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-statement {
    font-size: 1.5rem;
    margin: 30px 0;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.mission-section {
    padding: 80px 0;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.values-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.value-item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.goals-section {
    padding: 80px 0;
}

.goals-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.goal-item {
    display: flex;
    margin-bottom: 30px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.goal-item:hover {
    transform: translateX(10px);
}

.goal-number {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 2rem;
    font-weight: 700;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.goal-content {
    padding: 20px;
    flex: 1;
}

/* Services Page Styles */
.services-section {
    padding: 80px 0;
}

.service-intro {
    text-align: center;
    margin-bottom: 50px;
}

.service-intro .service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-intro h2 {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.service-intro h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-tagline {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.service-intro p {
    max-width: 800px;
    margin: 0 auto;
}

.services-grid .service-card {
    padding: 30px;
}

.service-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 5px;
}

.staffing-services {
    background-color: var(--white-color);
}

.manpower-services {
    background-color: var(--light-color);
}

.services-divider {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/services-divider-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
    text-align: center;
}

.divider-content {
    max-width: 800px;
    margin: 0 auto;
}

.divider-content h2 {
    color: var(--white-color);
    margin-bottom: 20px;
}

.job-seeker-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.job-seeker-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.job-seeker-image {
    flex: 1;
}

.job-seeker-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.job-seeker-text {
    flex: 1;
}

.benefits-list {
    margin: 20px 0;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.benefits-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.cta-box {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.cta-box h4 {
    margin-bottom: 20px;
}

/* Clients Page Styles */
.clients-intro {
    padding: 80px 0 40px;
}

.client-logos {
    padding: 40px 0;
    background-color: var(--light-color);
}

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

.logo-item {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.logo-item:hover {
    transform: translateY(-10px);
}

.logo-inner {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.logo-inner img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.logo-item h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

.testimonials {
    padding: 80px 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.testimonials-container {
    display: flex;
    overflow: hidden;
}

.testimonial {
    width: 100%;
    flex-shrink: 0;
    padding: 0 20px;
    transition: transform 0.5s ease;
}

.testimonial-content {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.slider-prev,
.slider-next {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--accent-color);
}

.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-color);
}

.industries-served {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.industry-item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.industry-item:hover {
    transform: translateY(-10px);
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.industry-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Enhanced Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.contact-section h2 {
    margin-bottom: 25px;
    position: relative;
}

.contact-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-info {
    display: flex;
    gap: 50px;
}

.contact-details {
    flex: 1;
}

.contact-details p {
    margin-bottom: 35px;
    color: var(--text-color);
    line-height: 1.7;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 40px;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-icon {
    color: var(--accent-color);
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-text p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.social-contact h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.social-contact .social-icons {
    margin-top: 15px;
}

.social-contact .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-contact .social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.contact-form-container {
    flex: 1;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
}

.contact-form-container h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--primary-color);
}

.required {
    color: #e74c3c;
}

input, textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background-color: var(--white-color);
}

input:hover, textarea:hover {
    border-color: #bbb;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
    outline: none;
}

input.error, textarea.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-message {
    display: none;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-note {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
    text-align: center;
}

.form-note a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-note a:hover {
    color: var(--accent-color);
}

.map-section {
    padding: 70px 0;
    background-color: var(--light-color);
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

.map-container iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.contact-cta {
    padding: 80px 0;
    background-color: var(--white-color);
}

.cta-content {
    display: flex;
    gap: 40px;
}

.cta-info {
    flex: 1;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.cta-info:hover {
    transform: translateY(-10px);
}

.cta-info:hover:before {
    transform: scaleX(1);
}

.cta-info h2 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.cta-info p {
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Mobile Responsiveness - Enhanced */
@media (max-width: 1200px) {
    :root {
        --grid-margin: 20px;
    }
    
    .services-grid, 
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 0 var(--spacing-sm);
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    :root {
        --grid-margin: 16px;
    }
    
    .services-grid, 
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .hero .container,
    .about-preview .container,
    .contact-info {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
}

@media (max-width: 768px) {
    :root {
        --grid-margin: 12px;
    }
    
    .services-grid, 
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card,
    .feature {
        max-width: 100%;
    }
    
    .service-icon, 
    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card h3 {
        text-align: center;
    }
    
    .service-card h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-card p {
        text-align: center;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
}

@media (max-width: 576px) {
    :root {
        --grid-margin: 12px;
    }
    
    .service-card,
    .feature {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .btn-contact {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* Handle broken images */
img.error {
    position: relative;
    display: inline-block;
    color: transparent;
}

img.error::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    border-radius: 10px;
    z-index: 1;
}

img.error::after {
    content: "\f03e" " " attr(alt);
    font-family: 'Font Awesome 6 Free', sans-serif;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1rem;
    z-index: 2;
    text-align: center;
    padding: 10px;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Shapes and Decorative Elements */
.shape {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.shape-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.1) 0%, rgba(106, 13, 173, 0.1) 100%);
    animation: morphShape 15s ease-in-out infinite;
}

.shape-2 {
    bottom: 10%;
    left: 5%;
    width: 250px;
    height: 250px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.1) 0%, rgba(106, 13, 173, 0.1) 100%);
    animation: morphShape 20s ease-in-out infinite alternate;
}

.shape-3 {
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    animation: morphShape 18s ease-in-out infinite;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.4) 0%, rgba(106, 13, 173, 0.4) 100%);
    border-radius: inherit;
    z-index: 1;
}

/* Animation Classes */
.animate-on-scroll.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transform: translateX(0) !important;
}

/* Print styles for background colors */
@media print {
    body {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    
    .header, .footer, .cta-section, .hamburger {
        display: none !important;
    }
    
    .service-card, .feature {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ddd !important;
        box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.9) !important;
    }
    
    .service-icon, .feature-icon {
        box-shadow: inset 0 0 0 1000px var(--primary-color) !important;
        color: var(--white-color) !important;
    }
    
    .hero, .page-header {
        background: none !important;
        box-shadow: none !important;
        padding-top: 50px !important;
    }
    
    section {
        padding: 20px 0 !important;
    }
    
    .shape {
        display: none !important;
    }
    
    a.btn {
        border: 2px solid #000 !important;
        color: #000 !important;
        background: none !important;
    }
}

/* Contact Button - Dark Red */
.btn-contact {
    background: linear-gradient(135deg, #8B0000 0%, #A00000 100%); /* Dark red gradient */
    color: var(--white-color);
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #A00000 0%, #C00000 100%); /* Slightly lighter red gradient on hover */
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
    transform: translateY(-3px);
    color: var(--white-color);
}

.btn-contact:hover:before {
    left: 100%;
}

.view-more {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.view-more .btn-outline {
    padding: var(--spacing-sm) var(--spacing-xl);
    font-weight: 600;
    border-width: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.view-more .btn-outline:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 206, 209, 0.15);
} 