/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Ensure Poppins font for all elements */
body,
html,
h1, h2, h3, h4, h5, h6,
p, span, div, a, li, ul, ol,
button, input, textarea, select, label,
table, th, td, tr,
nav, header, footer, main, section, article, aside,
.navbar, .nav-link, .nav-logo,
.hero-title, .hero-description,
.section-title, .section-subtitle,
.service-card h3, .service-card p,
.testimonial-card, .faq-question, .faq-answer,
.contact-details, .footer-section,
.blog-title, .blog-excerpt,
.about-card, .stat-item,
.process-step, .team-member,
.portfolio-content, .form-group label,
.breadcrumb, .pagination,
.page-title, .page-subtitle {
    font-family: 'Poppins', sans-serif !important;
}

/* Custom Properties */
:root {
    --primary-color: #3B82F6;
    --primary-dark: #1E40AF;
    --secondary-color: #8B5CF6;
    --accent-color: #06B6D4;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-dark: #111827;
    --white: #FFFFFF;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 15px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader {
    text-align: center;
    color: white;
}

.bird-animation {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fly 2s ease-in-out infinite;
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fly {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    animation: rotate 10s linear infinite;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-right: 0.5rem;
}

.footer-logo .logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-right: 0.5rem;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

.hero-graphic {
    position: relative;
    width: 100%;
    height: 400px;
}

.graphic-element {
    position: absolute;
    border-radius: 20px;
    animation: floatGraphic 4s ease-in-out infinite;
}

.element-1 {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    background: var(--gradient-secondary);
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.element-3 {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    bottom: 20%;
    left: 40%;
    animation-delay: 2s;
}

@keyframes floatGraphic {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: var(--primary-color);
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Orbit Animation */
.visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.orbit-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-medium);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px dashed rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 150px;
    height: 150px;
    animation: orbit 10s linear infinite;
}

.orbit-2 {
    width: 200px;
    height: 200px;
    animation: orbit 15s linear infinite reverse;
}

.orbit-3 {
    width: 250px;
    height: 250px;
    animation: orbit 20s linear infinite;
}

.planet {
    position: absolute;
    border-radius: 50%;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.planet-1 {
    width: 20px;
    height: 20px;
    background: var(--gradient-secondary);
}

.planet-2 {
    width: 16px;
    height: 16px;
    background: var(--gradient-accent);
}

.planet-3 {
    width: 12px;
    height: 12px;
    background: var(--success-color);
}

@keyframes orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    left: 0;
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.service-features li {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Industries We Serve Section */
.industries-section {
    background: white;
    padding: 5rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.industry-card:hover::before {
    left: 0;
    opacity: 0.05;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.industry-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industry-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.industry-features li {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-features li {
    background: var(--bg-light);
    color: var(--text-light);
}

/* Portfolio Section */
.portfolio {
    background: white;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: white;
    color: var(--text-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: white;
}

.portfolio-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    background: white;
    color: var(--text-dark);
}

/* Testimonials Section */
.testimonials {
    background: white;
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.author-info p {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
    padding: 5rem 0;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--bg-light);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    padding-top: 1rem;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: white;
    padding: 0 0.5rem;
    z-index: 1;
}

/* Contact Form Detailed Label Styling */
.contact-form-detailed .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-form-detailed label {
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
    color: #334155;
    font-weight: 500;
    font-size: 0.9rem;
    background: white;
    padding: 0 0.5rem;
    z-index: 1;
    pointer-events: none;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    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.7);
}

/* Back to Top Button */
/* Loading Logo Styles */
.loading-logo {
    max-width: 300px; /* Bigger on desktop */
    height: auto;
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

    /* Responsive loading logo */
    .loading-logo {
        max-width: 200px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filter {
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 2rem;
    }

    .orbit-animation {
        width: 250px;
        height: 250px;
    }

    .orbit-1 { width: 120px; height: 120px; }
    .orbit-2 { width: 160px; height: 160px; }
    .orbit-3 { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Extra small screens loading logo */
    .loading-logo {
        max-width: 150px;
    }
}

/* Page Hero Styles for All Pages */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    margin-top: 80px;
}

.page-hero-content {
    text-align: center;
    color: white;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.6);
}

.current {
    color: white;
    font-weight: 500;
}

/* About Page Styles */
.about-page {
    padding: 100px 0;
    background: #f8fafc;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-section .section-header {
    margin-bottom: 3rem;
}

.about-description {
    margin-bottom: 3rem;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #334155;
}

.feature-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.about-visual-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.mission-item h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mission-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: #667eea;
}

.member-info h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-info p {
    color: #667eea;
    font-weight: 500;
}

/* Founder Card Special Styling */
.founder-card {
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #667eea, #764ba2) border-box;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.founder-card::before {
    content: "👑";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 5;
    animation: pulse-crown 2s infinite;
}

@keyframes pulse-crown {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.founder-image {
    position: relative;
    border: 4px solid transparent;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 4px;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.founder-card .member-info h4 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-card .member-info p {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1rem;
}

.member-company {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: white;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.choose-item {
    text-align: center;
    padding: 2rem;
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #667eea;
    font-size: 1.8rem;
}

.choose-item h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.choose-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Services Page Styles */
.services-page {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-detailed-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-detailed-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-detailed-card h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features-detailed {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features-detailed li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

.service-features-detailed i {
    color: #667eea;
    font-size: 1rem;
}

.service-pricing {
    margin-bottom: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
}

.price-label {
    color: #64748b;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.service-btn {
    margin-top: auto;
    width: 100%;
    padding: 1rem 2rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQs Page Styles */
.faqs-page {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.category-title {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.faq-items .faq-item {
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.faq-items .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.still-questions {
    margin-top: 5rem;
    text-align: center;
    padding: 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.questions-content h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.questions-content p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Blog Page Styles */
.blog-page {
    padding: 100px 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-image {
    height: 250px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem;
}

.blog-post.featured .blog-image {
    height: 100%;
    min-height: 400px;
}

.blog-category {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-date {
    background: rgba(255, 255, 255, 0.9);
    color: #334155;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: block;
    transition: color 0.3s ease;
}

.blog-post.featured .blog-title {
    font-size: 2rem;
}

.blog-title:hover {
    color: #667eea;
}

.blog-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.author-info, .read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-btn {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more-btn:hover {
    gap: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 1rem 1.5rem;
    background: white;
    color: #334155;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover:not(.disabled) {
    background: #667eea;
    color: white;
}

.pagination-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #334155;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
    background: #667eea;
    color: white;
}


/* Contact Page Styles */
.contact-page {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info-section .section-header {
    margin-bottom: 3rem;
}

.contact-info-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(5px);
}

.contact-info-card .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
    line-height: 1.6;
}

.contact-social {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-social h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    color: #334155;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.social-link-large i {
    font-size: 1.2rem;
}

/* Contact Form Detailed */
.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-form-container p {
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-form-detailed .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form-detailed .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-detailed label {
    display: block;
    color: #334155;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form-detailed input,
.contact-form-detailed select,
.contact-form-detailed textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-form-detailed input:focus,
.contact-form-detailed select:focus,
.contact-form-detailed textarea:focus {
    border-color: #667eea;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    position: relative;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
    padding-left: 35px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-label:hover input ~ .checkmark {
    background-color: #f0f0f0;
    border-color: #007bff;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 0;
    background: #f8fafc;
}

.map-container {
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 5rem;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.map-placeholder p {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.interactive-map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.interactive-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.map-info h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.map-info p {
    color: #64748b;
    margin-bottom: 1rem;
}

/* Contact FAQ */
.contact-faq {
    padding: 100px 0;
    background: white;
}

.quick-faq {
    max-width: 800px;
    margin: 3rem auto 0;
}

.quick-faq-item {
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.quick-faq-item .faq-question {
    padding: 1.5rem 2rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.quick-faq-item .faq-question:hover {
    background: #f8fafc;
}

.quick-faq-item .faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.quick-faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.quick-faq-item .faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.quick-faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Additional Responsive Design */
@media (max-width: 1200px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
}

@media (max-width: 968px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-post.featured .blog-image {
        min-height: 250px;
    }
    
    .contact-form-detailed .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .mission-grid,
    .team-grid,
    .choose-us-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-category {
        padding: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .map-overlay {
        position: static;
        margin-bottom: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .service-detailed-card,
    .faq-category,
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Smooth Scrolling Enhancement */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Focus Outline */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Career Page Styles */
.career-program {
    padding: 100px 0;
    background: #f8fafc;
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.program-highlights {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #64748b;
    line-height: 1.6;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.program-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-content {
    padding: 3rem;
}

.pricing {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.price-note {
    color: #64748b;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.duration {
    color: #334155;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.program-features {
    list-style: none;
    margin-bottom: 3rem;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #334155;
    font-weight: 500;
}

.program-features i {
    color: #667eea;
    font-size: 1.2rem;
}

.enroll-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Curriculum Section */
.curriculum-section {
    padding: 100px 0;
    background: white;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.curriculum-module {
    background: #f8fafc;
    border-radius: 15px;
    padding: 3rem 2rem;
    transition: transform 0.3s ease;
}

.curriculum-module:hover {
    transform: translateY(-5px);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.module-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.module-header h4 {
    font-size: 1.3rem;
    color: #1e293b;
}

.module-topics {
    list-style: none;
}

.module-topics li {
    padding: 0.8rem 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 2rem;
}

.module-topics li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.8rem;
}

.module-topics li:last-child {
    border-bottom: none;
}

/* Job Assurance Section */
.job-assurance {
    padding: 100px 0;
    background: #f8fafc;
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.assurance-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.assurance-item:hover {
    transform: translateY(-5px);
}

.assurance-icon {
    width: 80px;
    height: 80px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #667eea;
    font-size: 2rem;
}

.assurance-item h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.assurance-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories {
    padding: 100px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.story-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.student-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.student-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.student-details h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.student-details p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.salary {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.story-content p {
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
}

/* Enrollment CTA */
.enrollment-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Career Page */
@media (max-width: 1200px) {
    .program-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .program-card {
        position: static;
    }
}

@media (max-width: 968px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .program-highlights {
        gap: 1.5rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .highlight-icon {
        margin-bottom: 1rem;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .student-info {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .curriculum-module {
        padding: 2rem 1.5rem;
    }
    
    .module-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .assurance-grid {
        grid-template-columns: 1fr;
    }
    
    .assurance-item {
        padding: 2rem 1.5rem;
    }
    
    .story-card {
        padding: 2rem;
    }
    
    .cta-feature {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Logo Gallery Page Styles */
.logo-gallery-page {
    padding: 100px 0;
    background: #f8fafc;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.gallery-filters .filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.gallery-filters .filter-btn.active,
.gallery-filters .filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.logo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.logo-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.logo-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.logo-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo-card:hover .logo-image img {
    transform: scale(1.05);
}

.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(139, 92, 246, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.logo-card:hover .logo-overlay {
    opacity: 1;
}

.logo-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.logo-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.logo-info p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.view-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: white;
    color: #333;
}

.lightbox-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.control-btn:hover {
    background: white;
    color: #333;
    transform: scale(1.1);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Logo CTA Section */
.logo-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.logo-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.logo-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.logo-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.logo-cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design for Logo Gallery */
@media (max-width: 768px) {
    .logo-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .logo-image {
        height: 200px;
    }
    
    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 3rem;
    }
    
    .gallery-filters .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .lightbox-controls {
        padding: 0 10px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .close-btn {
        top: -40px;
        right: -40px;
        width: 35px;
        height: 35px;
    }
    
    .logo-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .logo-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .logo-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .logo-image {
        height: 180px;
    }
    
    .gallery-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        max-width: 350px;
        margin: 0 auto 3rem;
        justify-items: center;
    }
    
    .gallery-filters .filter-btn {
        width: 140px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .logo-info {
        padding: 1rem;
    }
    
    .logo-info h4 {
        font-size: 1.1rem;
    }
    
    .logo-info p {
        font-size: 0.8rem;
    }
}

/* Utility Classes */
.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Contact Page Responsive Improvements */
@media (max-width: 768px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 20px;
        text-align: center;
    }
    
    .contact-icon {
        margin-bottom: 15px;
        flex-shrink: 0;
    }
    
    .social-links-large {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .social-link-large {
        justify-content: center;
        padding: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .map-info {
        padding: 20px;
        text-align: center;
    }
    
    .quick-faq {
        gap: 15px;
    }
    
    .page-hero-content {
        text-align: center;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-info-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info-card h4 {
        font-size: 1rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .social-link-large {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .contact-form-container h3 {
        font-size: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

/* Footer Responsive Improvements */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
    
    .footer-section h4 {
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: left;
    }
    
    .footer-section {
        padding: 0 10px;
    }
    
    .footer-section:first-child {
        grid-column: 1;
        margin-bottom: 15px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .newsletter-form {
        max-width: 280px;
    }
    
    .newsletter-form input {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .newsletter-form button {
        padding: 10px 12px;
    }
    
    .footer-bottom {
        padding: 15px 0;
        margin-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 12px;
        margin-top: 15px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* Enhanced Footer Styles - Improved Version */
.footer {
    background: linear-gradient(135deg, #1a1f2e 0%, #2c3e50 50%, #1a1f2e 100%) !important;
    border-top: 4px solid var(--primary-color);
    padding: 80px 0 0 !important;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(60, 118, 187, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(45, 88, 145, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.footer > .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
    gap: 50px !important;
    margin-bottom: 50px !important;
}

/* Company Info Section */
.footer-section.company-info {
    max-width: none;
}

.footer-logo {
    display: flex !important;
    align-items: center;
    margin-bottom: 25px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo .logo-img {
    height: 65px !important;
    width: auto !important;
    margin-right: 20px !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) brightness(1.0) contrast(1.0) saturate(1.0);
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 15px 20px !important;
    border-radius: 15px !important;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
}

.footer-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-description {
    color: #c7d2fe !important;
    line-height: 1.7;
    margin-bottom: 30px !important;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Footer Contact Info */
.footer-contact-info {
    margin-top: 25px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-contact-info .contact-item:hover {
    padding-left: 10px;
    border-bottom-color: var(--primary-color);
}

.footer-contact-info .contact-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-right: 12px;
    font-size: 0.8rem !important;
    color: white;
    flex-shrink: 0;
}

.footer-contact-info .contact-item span {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer Section Headings */
.footer-section h4 {
    color: var(--secondary-color) !important;
    margin-bottom: 25px !important;
    font-size: 1.2rem !important;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h4::after {
    content: '' !important;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
    border-radius: 2px;
}

.footer-section h4 i {
    color: var(--primary-color) !important;
    font-size: 1rem !important;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px !important;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(8px);
}

.footer-links li a {
    color: #cbd5e0 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem !important;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.footer-links li a:hover {
    color: var(--primary-color) !important;
}

.footer-links li a i.fa-chevron-right {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links li a:hover i.fa-chevron-right {
    opacity: 1;
    transform: translateX(3px);
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.newsletter-text {
    color: #e2e8f0;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Newsletter Form */
.newsletter-form {
    margin-bottom: 30px;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-group button {
    padding: 12px 18px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-input-group button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: scale(1.05);
}

/* Social Section */
.social-section h5 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.social-links {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap;
    margin-top: 25px !important;
}

.social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

/* Social Link Colors */
.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5) !important;
    color: white !important;
}

.social-link.instagram {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcaf45) !important;
    color: white !important;
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc) !important;
    color: white !important;
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #1a91da) !important;
    color: white !important;
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    color: white !important;
}

.social-link:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 25px 0 !important;
    margin-top: 40px !important;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #9bb4cc !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
}

.copyright strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Enhanced Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 60px 0 0 !important;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }
    
    .newsletter-section {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0 !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 35px !important;
    }
    
    /* Company info takes full width on top */
    .footer-section.company-info {
        grid-column: 1 / -1;
        /*text-align: left;*/
        margin-bottom: 20px;
    }
    
    /* Quick Links and Services side by side with proper alignment */
    .footer-section:nth-child(2) {
        grid-column: span 1;
        text-align: left !important;
    }
    
    .footer-section:nth-child(3) {
        grid-column: span 1;
        text-align: right !important;
    }
    
    /* Prevent text wrapping in footer links */
    .footer-links li a {
        white-space: nowrap !important;
        font-size: 0.85rem !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Newsletter section takes full width */
    .footer-section.newsletter-section {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    .newsletter-input-group {
        display: flex;
        flex-direction: row;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .newsletter-input-group input {
        flex: 1;
        border-radius: 8px 0 0 8px;
        min-width: 0;
    }
    
    .newsletter-input-group button {
        border-radius: 0 8px 8px 0;
        padding: 12px 15px;
        flex-shrink: 0;
        width: auto;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0 !important;
    }
    
    .footer-content {
        gap: 30px !important;
    }
    
    .newsletter-section {
        padding: 20px 15px;
    }
    
    .social-link {
        width: 38px !important;
        height: 38px !important;
    }
}
