:root {
    /* Brand Colors */
    --primary-color: #054595;
    /* Deep Royal Blue "VIJAYAN" */
    --secondary-color: #0A92DE;
    /* Bright Accent Blue */
    --accent-color: #043675;
    /* Darker Hover Blue */

    /* Neutral Colors */
    --text-color: #0a1f33;
    /* Dark Blue-Grey */
    --text-light: #6c757d;
    /* Muted Text */
    --bg-light: #F4F9FF;
    /* Ice Blue Background */
    --white: #ffffff;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 5, 149, 0.1);
    /* Subtle blue tinted shadow */
}

/* Global Reset */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    padding-top: 140px;
    /* Space for top bar + header */
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(5, 69, 149, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 69, 149, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Utilities */
.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-brand {
    color: var(--primary-color);
}

.text-accent {
    color: var(--secondary-color);
}

.bg-light {
    background-color: var(--bg-light);
}


/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #054595 0%, #043675 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loader-brand {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInScale 1s ease forwards;
}

.brand-text {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(127, 255, 0, 0.5);
}

.brand-tagline {
    font-size: 1.1rem;
    color: var(--secondary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .brand-text {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .brand-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
}

/* Top Info Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-item i {
    color: var(--secondary-color);
}

.top-bar-item a {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-item a:hover {
    color: var(--white);
}

/* Header & Nav */
.header {
    background-color: var(--white);
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.header .container {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 70px;
    width: auto;
}

/* Navbar */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a.btn {
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: auto;
    gap: 6px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    padding: 80px 0 80px;
    /* Top padding to account for fixed header */
    background: linear-gradient(135deg, #ffffff 0%, #F4F9FF 100%);
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.badge-new {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(10, 146, 222, 0.1);
    color: var(--secondary-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-anim-wrapper {
    position: relative;
    padding: 20px;
}

.main-hero-img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 5;
    animation: float-main 5s ease-in-out infinite;
}

.anim-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    z-index: 10;
    animation: float-element 4s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    left: -10%;
    animation-delay: 1s;
}

.element-3 {
    top: 5%;
    right: -5%;
    animation-delay: 2s;
}

.element-4 {
    top: 70%;
    right: -8%;
    animation-delay: 1.5s;
}

@keyframes float-main {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

@keyframes float-element {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Pulse Glow Effect behind image */
.hero-anim-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(10, 146, 222, 0.2) 0%, rgba(127, 255, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    .header {
        top: 0;
    }

    body {
        padding-top: 60px;
    }

    .hero-section {
        padding: 0px 0 30px;
        margin-top: 10px;
    }

    .hero-content {
        padding-top: 0;
        margin-top: 0;
    }

    .badge-new {
        margin-top: 0;
        margin-bottom: 15px;
    }

    .about-hero,
    .services-hero,
    .contact-hero,
    .privacy-hero,
    .terms-hero,
    .delete-hero {
        padding: 30px 0 30px;
    }

    html {
        scroll-padding-top: 60px;
    }

    .header .container {
        height: 60px;
    }

    .logo-img {
        height: 48px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 20px;
    }

    .anim-element {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .element-1 {
        left: 0;
    }

    .element-2 {
        left: 5%;
    }

    .element-3 {
        right: 0;
    }

    .element-4 {
        right: 5%;
    }

    .hero-content p,
    .hero-buttons {
        margin: 0 auto 30px;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(5, 69, 149, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .icon-box {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(5, 69, 149, 0.3);
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Grid */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(5, 69, 149, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list li {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    gap: 12px;
    color: var(--accent-color);
}

@media (max-width: 991px) {

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        margin-bottom: 20px;
    }
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.portfolio-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.portfolio-img {
    height: 250px;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .img-placeholder {
    transform: scale(1.05);
}

/* Placeholder Gradients */
.bg-app-1 {
    background: linear-gradient(135deg, #054595, #0A92DE);
}

.bg-app-2 {
    background: linear-gradient(135deg, #FF512F, #DD2476);
}

.bg-app-3 {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.bg-app-4 {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
}

.portfolio-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.portfolio-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--accent-color);
}

@media (max-width: 991px) {
    .portfolio-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .portfolio-grid,
    .portfolio-grid.three-col {
        grid-template-columns: 1fr;
    }
}

/* Scroll To Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links,
.contact-info {
    list-style: none;
    padding: 0;
}

.footer-links li,
.contact-info li {
    margin-bottom: 15px;
}

.footer-links a,
.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    display: inline-block;
}

.footer-links a:hover,
.contact-info a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-details h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-details .mb-4 {
    margin-bottom: 30px;
    color: var(--text-light);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box-sm {
    width: 50px;
    height: 50px;
    background-color: rgba(5, 69, 149, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-item a {
    color: var(--text-light);
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(10, 146, 222, 0.1);
}

.btn-block {
    width: 100%;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

/* Services Page Styles */
.service-detail-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.service-detail-row.reverse {
    flex-direction: row-reverse;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.service-detail-row:hover .service-image img {
    transform: translateY(-5px);
}

.service-list-detail {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-list-detail li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
}

.service-list-detail li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

@media (max-width: 991px) {

    .service-detail-row,
    .service-detail-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
        text-align: center;
    }

    .service-list-detail li {
        justify-content: center;
    }

    .icon-box-sm {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-item .icon-box-sm {
        margin: 0;
        /* Reset margin since we use gap and flex alignment */
    }
}

/* App Store Grid Style */
.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.app-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(5, 69, 149, 0.1);
}

.app-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.app-content {
    flex-grow: 1;
}

.app-content .category {
    margin-bottom: 5px;
    font-size: 0.75rem;
}

.app-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.app-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.app-content .btn-link {
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .app-grid {
        grid-template-columns: 1fr;
    }
}

/* Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-top: 50px;
}

.client-item {
    width: 100%;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 120px;
}

.client-item img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-item.placeholder {
    border: 2px dashed rgba(0, 0, 0, 0.1);
    background: transparent;
    box-shadow: none;
}

.placeholder-box {
    color: rgba(0, 0, 0, 0.2);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10000;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 140px;
    height: auto;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.whatsapp-float:hover img {
    filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .whatsapp-float img {
        width: 110px;
    }
}