/* Global Styles */
:root {
    --primary-color: #dc2626;
    --secondary-color: #b91c1c;
    --red-color: #dc2626;
    --red-dark: #b91c1c;
    --red-light: #ef4444;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --dark-gray: #343a40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
}

/* Headings - Keep sans-serif */
h1, h2, h3, h4, h5, h6,
.section-title,
.section-header h2,
.cta h2,
footer h3,
.footer-column h3 {
    font-family: 'Inter', 'Arial', sans-serif;
    font-style: normal;
    font-weight: 700;
}

/* Hero heading - Use serif italic font */
.hero h1 {
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
}

ul {
    list-style: none;
}

p, span, li, div, label, input, textarea, select, button, .btn {
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
}

/* Buttons text - keep italic serif */
.btn, button, a.btn {
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    margin: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: #fff;
    padding: 0px 0;
    height: auto;
    z-index: 100;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 90px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.logo-name {
    font-family: 'Inter', 'Arial', sans-serif;
    font-style: normal;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.logo-tagline {
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
    font-size: 14px;
    color: #dc2626;
    line-height: 1.2;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    position: absolute;
    top: 15px;
    right: 15px;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 28px;
    background: #333;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 10px;
}

.nav-item.mobile-phone-button {
    display: none;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-item.active > .nav-link {
    color: #dc2626;
}

.has-dropdown > .nav-link i {
    margin-left: 6px;
    font-size: 12px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 320px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.nav-item.has-dropdown:hover > .dropdown-menu,
.nav-item.has-dropdown:focus-within > .dropdown-menu,
.nav-item.has-dropdown.open > .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.dropdown-menu.wide {
    display: flex;
    gap: 32px;
}

.dropdown-section {
    min-width: 220px;
}

.dropdown-section-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #dc2626;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--light-gray);
    font-size: 15px;
    white-space: nowrap;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f5f5f5;
    color: #dc2626;
}

.dropdown-item i {
    color: #dc2626;
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-item:hover i {
    color: #dc2626;
}

.dropdown-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-icon {
    width: 32px;
    height: 32px;
}

.navbar-second-line {
    display: none;
}

.auth-buttons {
    display: flex;
    gap: 12px;
    margin-left: 24px;
    align-items: center;
}

/* Mobile View - Show second line wrapper */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Hide original auth-buttons (desktop version) */
    .navbar > .auth-buttons {
        display: none !important;
    }
    
    /* Show auth-buttons inside navbar-second-line */
    .navbar-second-line .auth-buttons {
        display: flex;
    }
    
    /* First Line - Logo (ek line mein) */
    .logo {
        order: 1;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
        margin-bottom: 0;
        padding-right: 50px;
    }
    
    .logo a {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
        gap: 3px;
        flex-shrink: 0;
    }
    
    /* Hamburger Menu - Top Right Corner */
    .mobile-menu-toggle {
        display: flex !important;
        position: absolute;
        top: 15px;
        right: 15px;
        order: 2;
        flex-shrink: 0;
        z-index: 200;
    }
    
    /* Hide navbar-second-line on mobile */
    .navbar-second-line {
        display: none !important;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
    }
}

.btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-primary {
    background: #dc2626;
    color: #fff;
}

.btn-outline {
    background: #fff;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-primary:hover,
.btn-outline:hover {
    background: #b91c1c;
    color: #fff;
    border-color: #b91c1c;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    background: #000000 url('../images/bg.jpg') center center/cover no-repeat;
    text-align: left;
    min-height: 500px;
    color: #fff;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.hero .container,
.hero-banner,
.hero-content,
.hero-images,
.hero-content > *,
.hero-images > * {
    position: relative;
    z-index: 3;
}

.hero h1 {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.3;
    text-align: left;
}

.hero p {
    color: #e0e0e0;
    font-size: 20px;
}

.hero-features li {
    color: #e0e0e0;
}

.hero .btn {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1.5;
    text-align: left;
    max-width: 65%;
    min-width: 550px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #ffffff;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 0 0px;
    text-align: left;
    color: #e0e0e0;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hero-features li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #e0e0e0;
    justify-content: flex-start;
}

.hero-features li i {
    color: #ffffff;
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    color: #e0e0e0;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-image {
    width: 100%;
    max-width: 100%;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.supporting-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.support-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    background-color: white;
    transition: transform 0.3s ease;
}

.support-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Clients Section */
.clients {
    padding: 40px 0;
    text-align: center;
    background: #000000;
}

.clients h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
}

.clients .section-header p {
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
    font-size: 20px;
    color: #e0e0e0;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.clients .feature-card {
    min-height: 250px;
}

/* What we Offer Section Enhancements */
.offer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(52,76,218,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.offer-section .container {
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.services-block-section .section-title {
    color: #ffffff;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.clients-text {
    max-width: 800px;
    margin: 0 auto 30px;
}

.clients-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.offer-grid {
    gap: 25px;
    margin-top: 25px;
}

.offer-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}

.offer-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

.offer-card .feature-icon {
    filter: brightness(0) invert(1);
    width: 40px;
    height: 40px;
}

.offer-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.offer-card:hover h3 {
    color: #dc2626;
}

.offer-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-card .btn-outline {
    border: 2px solid #dc2626;
    color: #dc2626;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.offer-card .btn-outline:hover {
    background: #dc2626;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* IT Services Block Section - Similar to SilverFox */
.services-block-section {
    padding: 80px 0;
    background: #2a2a2a;
}

.services-grid-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-block-card {
    background: #3a3a3a;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-block-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: inherit;
}

.service-block-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-block-icon i {
    font-size: 40px;
    color: #ffffff;
}

/* Red theme for all service icons */
.service-block-card:nth-child(1) .service-block-icon {
    background: #dc2626;
}

.service-block-card:nth-child(2) .service-block-icon {
    background: #dc2626;
}

.service-block-card:nth-child(3) .service-block-icon {
    background: #dc2626;
}

.service-block-card:nth-child(4) .service-block-icon {
    background: #dc2626;
}

.service-block-card:nth-child(5) .service-block-icon {
    background: #dc2626;
}

.service-block-card:nth-child(6) .service-block-icon {
    background: #dc2626;
}

.service-block-card:nth-child(7) .service-block-icon {
    background: #dc2626;
}

.service-block-card:nth-child(8) .service-block-icon {
    background: #dc2626;
}

.service-block-card:nth-child(9) .service-block-icon {
    background: #dc2626;
}

.service-block-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-block-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
    margin: 0;
}

@media (max-width: 992px) {
    .services-grid-block {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-block {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-block-card {
        padding: 30px 25px;
    }
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.client-logo {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.section-header h2 span {
    color: #dc2626;
}

.section-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: var(--text-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* This style is now defined above */

.feature-card:hover {
    background-color: #dc2626;
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    /* Fallback color for browsers that don't support filter */
    color: var(--primary-color);
    /* Apply the primary color to the icons */
    filter: invert(10%) sepia(75%) saturate(5000%) hue-rotate(240deg) brightness(50%) contrast(110%);
}

.feature-card:hover .feature-icon {
    filter: brightness(0) invert(1); /* This will make the icon white on hover */
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card > p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 8px;
    position: absolute;
    left: 0;
    top: 8px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-list li i {
    color: var(--white);
    transform: scale(1.2);
}

.feature-card:hover .feature-list li,
.feature-card:hover p {
    color: var(--white);
}

.feature-card:hover .btn-outline {
    background-color: var(--white);
    color: #dc2626;
    border-color: var(--white);
}

.feature-card .btn-outline {
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.feature-list li:nth-child(1) { animation-delay: 0.1s; }
.feature-list li:nth-child(2) { animation-delay: 0.2s; }
.feature-list li:nth-child(3) { animation-delay: 0.3s; }
.feature-list li:nth-child(4) { animation-delay: 0.4s; }
.feature-list li:nth-child(5) { animation-delay: 0.5s; }

.animate-on-scroll[data-animation="slide-in-left"] .feature-list li,
.animate-on-scroll[data-animation="slide-in-right"] .feature-list li,
.animate-on-scroll[data-animation="fade-in"] .feature-list li {
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    animation-delay: calc(0.1s * var(--item-index, 1));
}

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

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 20px;
    background-color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.solution-text {
    flex: 1;
}

.solution-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.solution-text ul {
    margin-bottom: 30px;
}

.solution-text li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.solution-text li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.solution-image {
    flex: 1;
}

.solution-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: var(--white);
}

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

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: #dc2626;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #dc2626;
}

.stat-text {
    font-size: 18px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.testimonial-slide {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.author-company {
    height: 30px;
}

/* Integration Section */
.integration {
    padding: 80px 0;
    background-color: var(--white);
}

.integration-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.integration-text {
    flex: 1;
}

.integration-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.integration-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.integration-image {
    flex: 1;
}

.integration-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: #dc2626;
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
}

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

/* Footer - SilverFox Style */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo img {
    height: 70px;
    width: auto;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-logo-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-style: normal;
}

.footer-logo-tagline {
    font-size: 13px;
    color: #dc2626;
    font-family: 'Lora', serif;
    font-style: italic;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo h3 span {
    color: #dc2626;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 0;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cccccc;
    font-size: 14px;
}

.footer-contact li i {
    color: #dc2626;
    font-size: 16px;
    margin-top: 2px;
    width: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
}

.footer-social .social-link:hover {
    background-color: #dc2626;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #cccccc;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    gap: 10px;
}

.footer-bottom-right a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: #dc2626;
}

/* Floating Action Buttons - Right Side */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Floating Action Buttons - Left Side */
.floating-buttons.floating-buttons-left,
.floating-buttons-left {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    right: auto !important;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.float-btn.scroll-top {
    background: #dc2626;
}

.float-btn.whatsapp {
    background: #25d366;
    width: 55px;
    height: 55px;
}

/* Chat button removed - now using chat widget */

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-buttons.floating-buttons-left,
    .floating-buttons-left {
        bottom: 20px !important;
        left: 20px !important;
        right: auto !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-logo-name {
        font-size: 20px;
    }
    
    .footer-logo-tagline {
        font-size: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-buttons-left {
        bottom: 20px !important;
        left: 20px !important;
        right: auto !important;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .float-btn.whatsapp {
        width: 50px;
        height: 50px;
    }
}

/* Animation Styles */
/* General animations for non-feature card elements */
.animate-on-scroll:not(.feature-card)[data-animation="fade-in"] {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.animate-on-scroll:not(.feature-card)[data-animation="slide-in-left"] {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s forwards;
}

.animate-on-scroll:not(.feature-card)[data-animation="slide-in-right"] {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s forwards;
}

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

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Feature Card Animation Styles */
.feature-card {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.feature-card.hover-active {
    background-color: var(--primary-color);
    color: var(--white);
    opacity: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card h3,
.feature-card p,
.feature-card .btn {
    transition: color 0.3s ease;
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card.hover-active h3,
.feature-card.hover-active p {
    color: var(--white);
}

.feature-card:hover .btn-outline,
.feature-card.hover-active .btn-outline {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* Animation classes */
.feature-card.animation-started {
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}

.feature-card[data-animation="fade-in"].animation-started {
    animation-name: featureCardFadeIn;
}

.feature-card[data-animation="slide-in-left"].animation-started {
    animation-name: featureCardSlideInLeft;
}

.feature-card[data-animation="slide-in-right"].animation-started {
    animation-name: featureCardSlideInRight;
}

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

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

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        min-height: 500px;
        height: auto;
        padding: 60px 0;
    }
    
    .hero-banner {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: left;
        margin-bottom: 30px;
        max-width: 100%;
        min-width: auto;
    }
    
    .hero h1 {
        text-align: left;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero p {
        margin: 0 0 40px 0;
        text-align: left;
    }
    
    .hero-features {
        text-align: left;
        display: block;
        width: 100%;
    }
    
    .hero-features li {
        justify-content: flex-start;
    }
    
    .hero-images {
        width: 100%;
        max-width: 600px;
        margin: 30px auto 0;
        padding: 20px;
        font-size: 18px;
    }
    
    .solution-content {
        flex-direction: column;
    }
    
    .integration-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    /* Banner/Hero Responsive */
    .hero {
        min-height: 450px;
        height: auto;
        padding: 40px 0;
    }
    
    .hero-banner {
        flex-direction: column;
        gap: 25px;
    }
    
    .hero-content {
        text-align: left;
        margin-bottom: 25px;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .hero p {
        font-size: 16px;
        margin: 0 0 25px 0;
        text-align: left;
    }
    
    .hero-features {
        margin: 15px 0;
        text-align: left;
        display: block;
        width: 100%;
    }
    
    .hero-features li {
        font-size: 15px;
        margin: 8px 0;
        justify-content: flex-start;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        margin-bottom: 30px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 150px;
        max-width: 100%;
    }
    
    .hero-images {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 15px;
        font-size: 16px;
    }
    
    .supporting-images {
        gap: 10px;
    }
    
    .support-image {
        width: 70px;
        height: 70px;
        padding: 12px;
    }
    
    .main-image {
        max-width: 100%;
    }
    
    /* Logo Responsive */
    .logo {
        gap: 10px;
    }
    
    .logo img {
        height: 65px;
    }
    
    .logo-name {
        font-size: 20px;
    }
    
    .logo-tagline {
        font-size: 12px;
    }
    
    /* Main Menu Responsive - Mobile View */
    .navbar {
        position: relative;
        padding: 10px 0;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Hide original auth-buttons (desktop version) */
    .navbar > .auth-buttons {
        display: none !important;
    }
    
    /* Show auth-buttons inside navbar-second-line */
    .navbar-second-line .auth-buttons {
        display: flex;
    }
    
    /* First Line - Logo (ek line mein) */
    .logo {
        order: 1;
        width: 100%;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .logo a {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
        gap: 3px;
        flex-shrink: 0;
    }
    
    /* Hamburger Menu - Top Right Corner */
    .mobile-menu-toggle {
        display: flex !important;
        position: absolute;
        top: 15px;
        right: 15px;
        order: 2;
        flex-shrink: 0;
        z-index: 200;
    }
    
    .logo {
        padding-right: 50px;
    }
    
    /* Hide navbar-second-line on mobile */
    .navbar-second-line {
        display: none !important;
    }
    
    .nav-menu {
        order: 3;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 10px;
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 15px 20px;
        border-radius: 0 0 10px 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 99;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        width: 100%;
        margin-top: 10px;
    }
    
    .nav-menu.active,
    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-item.mobile-phone-button {
        margin-top: 10px;
        padding: 0 15px;
        display: block;
    }
    
    .nav-item.mobile-phone-button .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .nav-link {
        padding: 12px 15px;
        font-size: 15px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .auth-buttons {
        width: auto;
        margin: 15px 0 0 0;
        padding: 0;
    }
    
    .auth-buttons .btn {
        width: auto;
        min-width: auto;
        text-align: center;
        padding: 10px 18px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        display: none;
        width: 100%;
        margin-top: 5px;
    }
    
    .nav-item.has-dropdown.open > .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 10px 15px;
        font-size: 14px;
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item i {
        font-size: 14px;
        width: 18px;
    }
    
    .dropdown-item span {
        font-size: 14px;
    }
    
    .auth-buttons {
        width: auto;
        justify-content: center;
        margin-top: 20px;
        margin-left: 0;
    }
    
    .auth-buttons .btn {
        width: auto;
        min-width: auto;
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .services-grid-block {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-block-card {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .clients h2 {
        font-size: 28px;
    }
    
    .clients .section-header p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-logo-name {
        font-size: 20px;
    }
    
    .footer-logo-tagline {
        font-size: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: 5px;
    }
    
    /* Logo Responsive - Mobile View */
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        gap: 10px;
    }
    
    /* First Line - Logo (ek line mein) */
    .logo {
        order: 1;
        width: 100%;
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .logo a {
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .logo img {
        height: 60px;
        flex-shrink: 0;
    }
    
    .logo-name {
        font-size: 18px;
        white-space: nowrap;
    }
    
    .logo-tagline {
        font-size: 11px;
        white-space: nowrap;
    }
    
    /* Second Line - Menu Toggle + Button */
    .mobile-menu-toggle {
        order: 2;
        display: flex;
        margin-left: 0;
    }
    
    .auth-buttons {
        order: 3;
        margin-left: auto;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .nav-menu {
        order: 4;
        width: 100%;
        margin-top: 10px;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 1024px) {
    /* Logo Responsive */
    .logo img {
        height: 80px;
    }
    
    .logo-name {
        font-size: 26px;
    }
    
    .logo-tagline {
        font-size: 13px;
    }
    
    /* Main Menu Responsive */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 320px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px 24px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        transition: right 0.3s;
        z-index: 150;
        overflow-y: auto;
    }
    
    .nav-menu.open,
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 16px;
        margin: 24px 0 0 0;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Banner Responsive */
    .hero {
        padding: 70px 0;
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .hero p {
        font-size: 18px;
    }
    .dropdown-menu,
    .dropdown-menu.wide {
        position: static;
        box-shadow: none;
        min-width: 0;
        width: 100%;
        padding: 0;
        background: none;
        border-radius: 0;
        display: none;
        opacity: 1;
        pointer-events: auto;
        margin-top: 5px;
    }
    .nav-item.has-dropdown.open > .dropdown-menu,
    .nav-item.has-dropdown.open > .dropdown-menu.wide {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0 0 0 16px;
    }
    
    .dropdown-item {
        padding: 10px 15px;
        font-size: 14px;
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item i {
        font-size: 14px;
        width: 18px;
    }
    
    .dropdown-item span {
        font-size: 14px;
    }
}

/* Overlay for mobile menu */
.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 100;
}
.overlay.active {
    display: block;
}

.hero-industries-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 0px;
    width: 100%;
}

.hero-industries {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-top: 16px;
    flex: 1;
}

.industry-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.industry-image:hover {
    transform: scale(1.05);
}

.industry-image img {
    max-width: 140px;
    height: auto;
}
.industry-row {
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.5s;
    opacity: 1;
}
.industry-row:hover {
    transform: translateX(8px) scale(1.03);
    box-shadow: 0 4px 24px rgba(0,82,204,0.10);
    opacity: 0.7;
}
.industry-btn.left-align {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 12px 18px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid #fff;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.industry-btn.left-align:hover {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 6px 24px rgba(0,82,204,0.15);
    transform: translateX(5px);
}

.industry-btn.left-align::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s;
}

.industry-btn.left-align:hover::before {
    left: 100%;
}
.industry-btn i {
    font-size: 1.2em;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.industry-btn:hover i {
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .hero-industries-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-industries {
        width: 100%;
    }
    
    .industry-image {
        width: 100%;
        padding: 15px;
    }
    
    .industry-image img {
        max-width: 150px;
    }
}

@media (max-width: 600px) {
    .dropdown-menu {
        min-width: 100%;
        width: 100%;
    }
    
    .dropdown-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .dropdown-item i {
        font-size: 13px;
        width: 16px;
    }
    
    .logo-name {
        font-size: 18px;
    }
    
    .logo-tagline {
        font-size: 11px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .industry-btn.left-align {
        width: 100%;
        font-size: 0.98rem;
        padding-left: 10px;
    }
    
    /* Banner/Hero Responsive */
    .hero {
        min-height: 400px;
        height: auto;
        padding: 30px 0;
    }
    
    .hero-banner {
        gap: 20px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero h1 {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .hero p {
        font-size: 14px;
        margin: 0 0 20px 0;
        text-align: left;
    }
    
    .hero-features {
        margin: 10px 0;
        text-align: left;
        display: block;
        width: 100%;
    }
    
    .hero-features li {
        font-size: 14px;
        margin: 6px 0;
        justify-content: flex-start;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-images {
        padding: 12px;
        font-size: 14px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid-block {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-block-card {
        padding: 20px;
    }
    
    .service-block-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-block-icon i {
        font-size: 28px;
    }
    
    .service-block-card h3 {
        font-size: 18px;
    }
    
    .service-block-card p {
        font-size: 14px;
    }
    
    .clients h2 {
        font-size: 28px;
    }
    
    .clients .section-header p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: 5px;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .float-btn.whatsapp {
        width: 45px;
        height: 45px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 140px;
        max-width: calc(50% - 5px);
        text-align: center;
        flex: 0 0 auto;
    }
    
    .client-logos-container {
        padding: 15px 0;
    }
    
    .client-logo {
        flex: 0 0 120px;
        height: 50px;
        padding: 0 8px;
    }
    
    .client-logo img {
        max-height: 40px;
    }
    
    .footer-social {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .footer-social .social-link {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    header {
        padding: 8px 0;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .clients h2 {
        font-size: 24px;
    }
    
    .service-block-card {
        padding: 15px;
    }
    
    .service-block-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .service-block-icon i {
        font-size: 24px;
    }
    
    .service-block-card h3 {
        font-size: 16px;
    }
    
    .navbar-second-line .auth-buttons .btn {
        min-width: 140px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .service-block-card p {
        font-size: 13px;
    }
    
    /* Logo Responsive - Extra Small */
    .logo {
        gap: 6px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo-name {
        font-size: 16px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    /* Main Menu Responsive - Extra Small */
    .navbar {
        padding: 5px 0;
    }
    
    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu {
        padding: 12px 15px;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Banner Responsive - Extra Small */
    .hero {
        min-height: 350px;
        height: auto;
        padding: 25px 0;
    }
    
    .hero h1 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 13px;
    }
    
    .hero-images {
        padding: 10px;
        font-size: 13px;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .hero-images {
        padding: 15px;
        font-size: 16px;
    }
    
    .footer-text {
        font-size: 12px;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 12px;
    }
}