/* Landing Page Custom Styles */

/* Variables */
:root {
    --primary-color: #00b3e3;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gradient-primary: linear-gradient(135deg, #00b3e3 0%, #0056b3 100%);
    --gradient-secondary: linear-gradient(135deg, #00b3e3 0%, #00d4ff 100%);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.25);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Animation Classes */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.animate-fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.animate-fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Logo Styles */
.header__logo img,
.footer-logo img,
.mobile-menu .logo img,
img[alt="Numeritec Logo"],
img[src*="logo"] {
    max-height: 40px !important;
    height: auto !important;
    width: auto !important;
}

/* Rounded Logo */
.rounded-logo {
    border-radius: 10px !important;
}

/* New Footer Styles */
.new-footer {
    position: relative;
    background: #fff;
}

/* Footer Hero Section */
.footer-hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.footer-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.footer-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

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

.footer-main-logo {
    min-height: 60px;
    width: auto;
    padding: .7rem;
    background-color: #fff;
    border-radius: var(--border-radius);
}

.footer-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer Info Section */
.footer-info {
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.7) 100%, rgba(195, 207, 226, 0.9) 0%), url('/images/hero-texture.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 0 20px;
    color: var(--dark-color);
}

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

.footer-widget-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* Footer Contact Logo */
.footer-logo-section {
    margin-top: 2rem;
}

.footer-contact-logo {
    background-color: #fff;
    padding: .2rem;
    width: auto;
    max-width: 320px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: var(--secondary-color) 0px 4px 10px;
}

/* Contact Info Styles */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0.8rem 0;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-details {
    line-height: 1.7;
    font-size: 1rem;
    flex: 1;
}

.contact-details strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-details a {
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Quick Links Styles */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.7rem;
    transition: var(--transition);
}

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

/* Social & Website Styles */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.footer-website {
    margin-top: 1rem;
}

.footer-website p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Policy Pages Styles */
.policy-section {
    padding: 120px 0 60px;
    background-color: var(--light-bg);
}

.policy-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-date {
    color: var(--text-color-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-text {
    color: var(--text-color);
    line-height: 1.6;
}

.policy-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.policy-text h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.policy-text p {
    margin-bottom: 1rem;
}

.policy-text ul, 
.policy-text ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
}

.table-of-contents {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 2rem 0;
}

.table-of-contents h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.table-of-contents ol {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.table-of-contents a:hover {
    color: var(--primary-dark);
}

.privacy-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.privacy-table th,
.privacy-table td {
    padding: 12px;
    border: 1px solid #e0e0e0;
}

.privacy-table th {
    background-color: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-table td {
    color: var(--text-color);
}

/* Responsive styles for policy pages */
@media (max-width: 992px) {
    .policy-section {
        padding: 100px 0 40px;
    }
    
    .policy-content {
        padding: 30px;
    }
    
    .policy-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 80px 0 30px;
    }
    
    .policy-content {
        padding: 25px;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-text h2 {
        font-size: 1.6rem;
    }
    
    .policy-text h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .policy-section {
        padding: 70px 0 20px;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-content h1 {
        font-size: 1.8rem;
    }
    
    .policy-text h2 {
        font-size: 1.4rem;
    }
    
    .policy-text h3 {
        font-size: 1.2rem;
    }
    
    .table-of-contents {
        padding: 15px;
    }
    
    .privacy-table th,
    .privacy-table td {
        padding: 8px;
        font-size: 0.9rem;
    }
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-copyright {
    font-size: 0.9rem;
    margin: 0;
}

/* Header Styles */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 1rem 0;
}

.header-area.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

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

.header-navigation-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.header-navigation-list a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
}

.header-navigation-list a:hover {
    color: var(--primary-color);
}

.header-navigation-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.header-navigation-list a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-navigation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-area {
    position: relative;
    max-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.5) 0%, rgba(195, 207, 226, 0.7) 100%), url('/images/hero-texture.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding: 80px 0 40px;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element.element-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element.element-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

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

.ht-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    line-height: 1.1 !important;
}

.ht-btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
}

.hero-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--gradient-primary), url('../images/hero-numeritec.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    opacity: 0.8;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.hero-tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    animation: float 4s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition);
}

.tech-icon:hover {
    transform: scale(1.1);
}

.tech-icon.icon-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.tech-icon.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.tech-icon.icon-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.tech-icon.icon-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

.tech-icon.icon-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.tech-icon.icon-6 {
    top: 70%;
    right: 40%;
    animation-delay: 5s;
}

.hero-code-snippet {
    position: absolute;
    bottom: 10%;
    right: 10%;
    background: var(--dark-color);
    border-radius: var(--border-radius);
    padding: 0;
    width: 280px;
    box-shadow: var(--shadow-heavy);
    animation: slideInUp 1s ease-out 0.5s both;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.code-dots span:nth-child(2) {
    background: #ffbd2e;
}

.code-dots span:nth-child(3) {
    background: #27ca3f;
}

.code-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.code-content {
    padding: 16px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.4;
}

.code-line {
    color: #e6e6e6;
    margin-bottom: 4px;
}

.keyword {
    color: #ff79c6;
}

.variable {
    color: #8be9fd;
}

.function {
    color: #50fa7b;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.scroll-arrow span {
    width: 6px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 3px;
    position: relative;
    animation: scrollArrow 1.5s ease-in-out infinite;
}

.scroll-arrow span:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--primary-color);
    opacity: 0.8;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

.scroll-arrow:hover span {
    background: #0056b3;
}

.scroll-arrow:hover span:before {
    border-top-color: #0056b3;
}

@keyframes scrollArrow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Services Section */
.services-area {
    background: white;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 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-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-description {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--secondary-color);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* About Section */
.about-area {
    background: var(--light-color);
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-content p {
    color: var(--secondary-color);
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-heavy);
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-color);
}

/* Case Studies Section */
.case-studies-section {
    padding: 60px 0;
    background: #fff;
}

.case-study-carousel {
    position: relative;
    padding: 20px 0;
}

.case-study-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 25px;
    transition: transform 0.3s ease;
}

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

.case-study-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.case-study-content {
    text-align: center;
    padding: 0 20px;
}

.case-study-client {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.case-study-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.case-study-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin: 0 auto 2rem;
    max-width: 800px;
}

.swiper-container {
    padding: 20px 10px 40px;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

@media (max-width: 991px) {
    .swiper-slide {
        width: 100%;
    }
    
    .case-study-card {
        padding: 20px;
    }
    
    .case-study-title {
        font-size: 20px;
    }
    
    .case-study-description {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .swiper-slide {
        width: 100%;
    }
    
    .case-study-logo {
        width: 100px;
        height: 100px;
    }
    
    .case-study-title {
        font-size: 18px;
    }
}

/* Contact Section */
.contact-area {
    background: var(--light-color);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info .contact-item {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin: 0;
    padding: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-content p {
    color: var(--secondary-color);
    margin: 0;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 179, 227, 0.1);
}

/* Form Validation Styles */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group input.valid-field,
.form-group select.valid-field,
.form-group textarea.valid-field {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* Form Messages */
.form-messege {
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

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

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

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

/* Footer */
.footer-area {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
    color: white;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: var(--transition);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-navigation a {
    display: block;
    padding: 1rem;
    color: var(--dark-color);
    text-decoration: none;
    border-bottom: 1px solid #e9ecef;
    transition: var(--transition);
}

.mobile-navigation a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-space--ptb_100 {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .header-navigation-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        text-align: left;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-card {
        margin-bottom: 2.5rem;
    }
    
    .portfolio-item {
        margin-bottom: 2.5rem;
    }
    
    .about-experience-badge {
        position: static;
        margin: 2rem auto 0;
    }
    
    .section-space--ptb_100 {
        padding: 60px 0;
    }
}


/* Responsive Design */
@media (max-width: 992px) {
    .footer-hero-title {
        font-size: 2.5rem;
    }
    
    .footer-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-info {
        padding: 50px 0 20px;
    }

    .footer-info .container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .footer-hero {
        height: 350px;
        padding: 2rem 0;
    }
    
    .footer-hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .footer-hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .footer-main-logo {
        max-height: 50px;
        margin-bottom: 1.5rem;
    }
    
    .footer-info {
        padding: 30px 0 20px;
    }
    
    .footer-widget {
        margin: 1rem 0;
    }
    
    .footer-widget-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-social {
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: .5rem;
        padding: 0.8rem 0;
    }
    
    .contact-item i {
        margin-top: 2px;
        font-size: 1.2rem;
        min-width: 20px;
    }
    
    .contact-details {
        text-align: left;
        font-size: 0.95rem;
    }
    
    .contact-details strong {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .footer-links {
        /* align-items: center; */
        gap: 0.3rem;
    }
    
    .footer-links li a {
        font-size: 0.9rem;
        padding-left: 12px;
    }
    
    .footer-logo-section {
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .footer-contact-logo {
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .footer-hero {
        height: 380px;
        padding: 1rem 0;
    }
    
    .footer-hero-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        padding: 0 0.8rem;
    }
    
    .footer-hero-subtitle {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    .footer-main-logo {
        max-height: 35px;
        margin-bottom: 0.8rem;
    }
    
    .footer-info {
        padding: 20px 0 10px;
    }
    
    .footer-widget {
        margin-bottom: 1rem;
        padding: 0 0.8rem;
    }
    
    .footer-widget-title {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-item {
        flex-direction: column;
        /* align-items: center; */
        text-align: center;
        gap: 0.3rem;
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
    }
    
    .contact-item i {
        margin-top: 0;
        font-size: 1.1rem;
        color: var(--primary-color);
    }
    
    .contact-details {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .contact-details strong {
        font-size: 0.85rem;
        margin-bottom: 2px;
        display: block;
    }
    
    .contact-details a {
        font-size: 0.8rem;
        color: var(--text-color);
    }
    
    .footer-links {
        gap: 0.2rem;
        margin-top: 0.5rem;
    }
    
    .footer-links li a {
        font-size: 0.8rem;
        padding-left: 8px;
        padding: 0.3rem 0;
    }
    
    .footer-social {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .footer-logo-section {
        margin-top: 0.8rem;
        padding: 0.15rem;
    }
    
    .footer-contact-logo {
        max-height: 45px;
    }
    
    .footer-bottom {
        padding: 15px 0;
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .footer-copyright {
        font-size: 0.75rem;
        padding: 0 0.8rem;
        line-height: 1.3;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .footer-hero {
        height: 340px;
        padding: 0.8rem 0;
    }
    
    .footer-hero-title {
        font-size: 1.2rem;
        line-height: 1.2;
        margin-bottom: 0.4rem;
        padding: 0 0.5rem;
    }
    
    .footer-hero-subtitle {
        font-size: 0.8rem;
        padding: 0 0.8rem;
    }
    
    .footer-main-logo {
        max-height: 30px;
        margin-bottom: 0.6rem;
    }
    
    .footer-info {
        padding: 15px 0 8px;
    }
    
    .footer-widget {
        margin-bottom: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .footer-widget-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item {
        padding: 0.4rem 0;
        margin-bottom: 0.4rem;
        gap: 0.2rem;
    }
    
    .contact-item i {
        font-size: 1rem;
    }
    
    .contact-details {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .contact-details strong {
        font-size: 0.8rem;
        margin-bottom: 1px;
    }
    
    .contact-details a {
        font-size: 0.75rem;
    }
    
    .footer-links {
        margin-top: 0.3rem;
    }
    
    .footer-links li a {
        font-size: 0.75rem;
        padding-left: 14px !important;
        padding: 0.2rem 0;
    }
    
    .footer-social {
        gap: 0.5rem;
        margin-bottom: 0.6rem;
        margin-top: 0.3rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .footer-logo-section {
        margin-top: 0.6rem;
        padding: 0.1rem;
    }
    
    .footer-contact-logo {
        max-height: 40px;
    }
    
    .footer-bottom {
        padding: 12px 0;
        margin-top: 12px;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
        padding: 0 0.5rem;
        line-height: 1.2;
    }
}

@media (max-width: 767px) {
    .header-area {
        padding: 0.75rem 0;
    }
    
    .header-area.scrolled {
        padding: 0.5rem 0;
    }
    
    .mobile-menu-content {
        width: 280px;
    }
    
    .hero-area {
        min-height: 100vh;
        max-height: none;
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        align-items: center;
    }
    
    .ht-btn-lg {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-code-snippet {
        position: static;
        margin-top: 2rem;
        width: 100%;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .footer-social {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .section-space--ptb_100 {
        padding: 50px 0;
    }
    
    .section-space--mb_60 {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .header-area {
        padding: 0.5rem 0;
    }
    
    .mobile-menu-content {
        width: 100%;
    }
    
    .mobile-navigation a {
        padding: 1.25rem;
        font-size: 1.1rem;
    }
    
    .hero-area {
        min-height: 100vh;
        padding: 120px 0 80px;
        background-attachment: scroll;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        margin-bottom: 2rem;
        gap: 1rem;
    }
    
    .stat-item {
        text-align: center;
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .ht-btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-sub-title {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        margin-bottom: 1rem;
        padding: 14px 16px;
    }
    
    .tech-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        margin: 0.2rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .contact-item {
        padding: 0 0.5rem;
        margin-bottom: 0;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .section-space--ptb_100 {
        padding: 40px 0;
    }

    .mobile-hide {
        display: none;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 480px) {
    .hero-area {
        min-height: 100vh;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .ht-btn-lg {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-area {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: flex-start;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* Section Spacing */
.section-space--ptb_100 {
    padding: 100px 0;
}

.section-space--mb_60 {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Utility Classes */
.bg-gray {
    background-color: var(--light-color);
}

.bg-dark {
    background-color: var(--dark-color);
}

.text-color-primary {
    color: var(--primary-color);
}

.min-vh-100 {
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}