/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --secondary-color: #333;
    --accent-color: #0066cc;
    --background-color: #fff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --text-color: #333;
    --max-width: 1200px;
    --container-padding: 2rem;
    --narrow-width: 800px;
    --medium-width: 1000px;
    --wide-width: 1200px;
}

/* Layout Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--gray-light);
}

body.boxed-layout {
    background: var(--gray-light);
}

body.boxed-layout > *:not(nav) {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    background: white;
}

/* Layout Controls */
.layout-controls {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1100;
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.layout-toggle,
.width-toggle {
    background: none;
    border: 1px solid var(--gray-medium);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.width-controls {
    display: flex;
    gap: 0.5rem;
}

.width-toggle.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.layout-toggle:hover,
.width-toggle:hover {
    background: var(--gray-light);
}

/* Container Styles */
.site-container {
    max-width: 90%;
    margin: 0 auto;
    background: var(--background-color);
}

.site-container.boxed {
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Width Variations */
.site-container.narrow {
    max-width: var(--narrow-width);
}

.site-container.medium {
    max-width: var(--medium-width);
}

.site-container.wide {
    max-width: var(--wide-width);
}

/* Main Content */
.main-content {
    min-height: 100vh;
    padding-top: 80px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0.75rem 0;
    max-width: 100%;
}

/* Main Navigation */
.nav-main {
    display: flex;
    margin-right: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.nav-menu a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #007bff;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 2rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-brand {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #2d3748;
    letter-spacing: -0.5px;
    margin-right: 3rem;
    white-space: nowrap;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.nav-button {
    padding: 0.75rem 1.5rem;
    border: 2px solid #007bff;
    border-radius: 8px;
    background: transparent;
    color: #007bff;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-button:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.nav-button i {
    transition: transform 0.3s ease;
}

.nav-button:hover i {
    transform: translateX(3px);
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
}

/* Mobile Contact Button */
.mobile-contact-btn {
    display: none;
    margin-top: 2rem;
    width: 100%;
}

.mobile-contact-btn .nav-button {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-contact-btn .nav-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    display: none;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1050;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.mobile-nav-menu li {
    margin-bottom: 0.75rem;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    transform: translateX(5px);
}

.mobile-nav-menu a i {
    width: 24px;
    text-align: center;
    margin-right: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover i,
.mobile-nav-menu a.active i {
    color: #007bff;
    transform: scale(1.1);
}

.mobile-nav-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-actions .nav-button {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-wrapper {
        padding: 0.5rem 1rem;
    }

    .nav-brand {
        font-size: 1.25rem;
        margin-right: 0;
    }

    .nav-main {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: auto;
    }

    .nav-right {
        display: none;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .nav-brand {
        font-size: 1.15rem;
    }

    .navbar-wrapper {
        padding: 0.5rem;
    }
}

/* Safe area insets for modern mobile devices */
@supports (padding: max(0px)) {
    .mobile-menu {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }

    @media (max-width: 768px) {
        .mobile-menu {
            padding-left: max(1rem, env(safe-area-inset-left));
            padding-right: max(1rem, env(safe-area-inset-right));
            padding-bottom: max(1rem, env(safe-area-inset-bottom));
        }
    }
}

/* Hero Section */
.hero {
    padding: 4rem 1rem 2rem;
    background: var(--gray-light);
    min-height: 36vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 0 1 500px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    flex: 0 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 10px 15px rgba(0, 123, 255, 0.2));
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
    min-width: 450px;
}

/* Buttons */
.cta-button {
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Section spacing */
section {
    scroll-margin-top: 80px; /* Helps with scroll-to-anchor positioning */
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 80px 0;
}

.about-image {
    max-width: 90%;
    height: auto;
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 10px 15px rgba(0, 123, 255, 0.2));
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-content {
    padding-left: 2rem;
}

.about-content .lead {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.8;
}

.about-content p {
    color: #666;
    line-height: 1.8;
}

/* Stats Section */
.about-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-image, .hero-image {
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-bottom: 2rem;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .hero-image:hover, .about-image:hover {
        transform: translateY(-5px);
    }
}

/* Values Section */
.about-values {
    margin-top: 4rem;
}

.about-values h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #e7f1ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 28px;
    color: #007bff;
}

.value-item h4 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Projects Section */
.projects {
    padding: 4rem 2rem;
    background: var(--gray-light);
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color);
    text-decoration: none;
}

/* Updated Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-top {
    padding: 5rem 0 4rem;
    position: relative;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 160px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.widget-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #007bff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(10px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-item i {
    width: 20px;
    margin-right: 1rem;
    color: #007bff;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    position: relative;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .footer-widget {
        margin-bottom: 3rem;
    }

    .footer-top {
        padding: 4rem 0 2rem;
    }
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright {
        text-align: center;
    }

    .footer-top {
        padding: 3rem 0 1rem;
    }

    .widget-title {
        margin-bottom: 1rem;
    }
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.feature-card {
    flex: 1;
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h2 {
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: #007bff;
}

.service-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mb-4 {
	margin-bottom: 4.5rem !important;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e1e1e1;
    border-radius: 30px;
    background: transparent;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab:hover {
    border-color: #007bff;
    color: #007bff;
}

.pricing-tab.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pricing-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-content.active {
    display: block;
    opacity: 1;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.price-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.price-card.popular {
    border: 2px solid #007bff;
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-header h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price .currency {
    font-size: 1rem;
    vertical-align: super;
    margin-right: 0.25rem;
}

.price-period {
    color: #6c757d;
    font-size: 0.9rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.price-features li {
    padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.price-features li:last-child {
    border-bottom: none;
}

.cta-button {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #007bff;
    border-radius: 5px;
    background: transparent;
    color: #007bff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #007bff;
    color: white;
}

.cta-button.primary {
    background: #007bff;
    color: white;
}

.cta-button.primary:hover {
    background: #0056b3;
    border-color: #0056b3;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.contact-form .form-floating {
    position: relative;
    margin-bottom: 0;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    height: auto;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.15);
}

.contact-form .form-floating label {
    padding: 1rem;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.btn-submit .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(3px);
}

/* .contact-info {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
    margin-top: 40px;
} */

.info-item {
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    height: 100%;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #e7f1ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i {
    font-size: 24px;
    color: #007bff;
}

.info-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.info-item p {
    color: #6c757d;
    margin: 0;
}

.alert {
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border: none;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.invalid-feedback {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    color: #dc3545;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-top {
    padding: 5rem 0 4rem;
    position: relative;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 160px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.widget-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #007bff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(10px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-item i {
    width: 20px;
    margin-right: 1rem;
    color: #007bff;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    position: relative;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .footer-widget {
        margin-bottom: 3rem;
    }

    .footer-top {
        padding: 4rem 0 2rem;
    }
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright {
        text-align: center;
    }

    .footer-top {
        padding: 3rem 0 1rem;
    }

    .widget-title {
        margin-bottom: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-content, .hero-image {
        flex: 0 1 auto;
        width: 100%;
        max-width: 600px;
    }

    .hero-image img {
        min-width: unset;
        max-width: 100%;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .about-text, .about-image {
        flex: 0 1 auto;
        width: 100%;
        max-width: 600px;
    }

    .team-image {
        min-width: unset;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        right: 0;
        transform: none;
        flex-direction: column;
        background: var(--background-color);
        padding: 1rem;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: top 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        top: 60px;
    }

    .nav-actions {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
    }

    .nav-logo {
        width: 45px;
        height: 45px;
    }
    
    .nav-brand {
        font-size: 1.5rem;
        text-transform: uppercase;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .price-card {
        padding: 2rem 1.5rem;
    }

    .contact-wrapper {
        padding: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
}

/* Hide mobile menu button on desktop */
.mobile-menu-button {
    display: none;
}

/* Ensure nav items are visible on desktop */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
    }
}

/* Popup Contact Form */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.popup-close:hover {
    opacity: 1;
}

.popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.popup-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.popup-header p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Status Messages */
.form-status {
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

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

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

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e1e1e1;
    border-radius: 30px;
    background: transparent;
    color: #333;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-tab:hover {
    background: #f5f5f5;
}

.pricing-tab.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pricing-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-content.active {
    display: block;
    opacity: 1;
}

/* Pricing Cards Grid */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }
    
    .pricing-tab {
        width: 100%;
        text-align: center;
    }
}

/* Add at the start of the file */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Height of fixed navbar */
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Safe area insets for modern mobile devices */
@supports (padding: max(0px)) {
    .scroll-to-top {
        bottom: max(30px, env(safe-area-inset-bottom) + 15px);
        right: max(30px, env(safe-area-inset-right) + 15px);
    }

    @media (max-width: 768px) {
        .scroll-to-top {
            bottom: max(20px, env(safe-area-inset-bottom) + 10px);
            right: max(20px, env(safe-area-inset-right) + 10px);
        }
    }
}

/* Container adjustments */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
} 