/*
Theme Name: Gixus Child
Description: Child theme of Gixus Business Consulting Theme
Author: Your Name
Template: gixus
Version: 1.0
*/

/*Additional custom css*/
.brand-one-contents .brand-style-one-items {
    background: #ffffff;
}
.mai-socials a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;   /* Vertically center icon */
  text-align: center;  /* Horizontally center */
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}
/* Common styles for all social icons */
.mai-socials a i {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 40px;
  border-radius: 50%;
}
/* Specific icon colors */
.mai-socials a .fa-linkedin-in {
  background-color: #0077b5;
}
.mai-socials a .fa-facebook-f {
  background-color: #1877f2;
}
/* Hover Effects */
.mai-socials a:hover .fa-linkedin-in {
  background-color: #fff;
  color: #0077b5;
}
.mai-socials a:hover .fa-facebook-f {
  background-color: #fff;
  color: #1877f2;
}
.social-overlay {
    display: none;
}
.partner-style-one .partner-style-one-item img {
    max-height: 150px;
    width: 100%;
}
.partner-style-one .partner-style-one-item {
    background: white;
}
.try-gixus .icon a {
    display:none;
}
.information { 
    width: 80%;  
    margin: 0 auto;
}

/*Remove curve part */

.path {
    display: none !important;
}

/* Multiplai Hero Styles - Background animation removed, text animations added */
[class*="multiplai-hero-"] {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

[class*="multiplai-hero-"] .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

[class*="multiplai-hero-"] .hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

[class*="multiplai-hero-"] .hero-bg-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Mobile video fallback */
@media (max-width: 768px) {
    [class*="multiplai-hero-"] .hero-bg-video video {
        display: none;
    }
    [class*="multiplai-hero-"] .hero-bg-video {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

[class*="multiplai-hero-"] .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

[class*="multiplai-hero-"] .information {
    position: relative;
    z-index: 2;
}

/* Text Animation Styles */
[class*="multiplai-hero-"] .hero-small-heading {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

[class*="multiplai-hero-"] .hero-main-heading {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

[class*="multiplai-hero-"] .hero-description {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

[class*="multiplai-hero-"] .hero-button {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

/* Keyframes for text animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button hover animation */
[class*="multiplai-hero-"] .hero-button {
    transition: all 0.3s ease;
}

[class*="multiplai-hero-"] .hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mobile and Tablet Text Alignment */
@media (max-width: 1024px) {
    [class*="multiplai-hero-"] .information {
        text-align: left !important;
    }
    
    [class*="multiplai-hero-"] .information h4,
    [class*="multiplai-hero-"] .information h2,
    [class*="multiplai-hero-"] .information p {
        text-align: left !important;
    }
    
    [class*="multiplai-hero-"] .information .btn {
        text-align: center;
        display: inline-block;
    }
}

/* Tablet specific (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    [class*="multiplai-hero-"] .information {
        text-align: left !important;
    }
}

/* Mobile specific (below 768px) */
@media (max-width: 767px) {
    [class*="multiplai-hero-"] .information {
        text-align: left !important;
        width: 90%;
    }
    
    [class*="multiplai-hero-"] .information h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    [class*="multiplai-hero-"] .information h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    [class*="multiplai-hero-"] .information p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Tech Stacks */
.partner-style-one-item {
height: auto !important;
}
/* Left Column - Title Only (Same as Services Partner) */

/* Right Column - Tech Logos Grid */
.tech-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    height: 100%;
    align-content: center;
}

.tech-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    height: 90px;
    transition: all 0.3s ease;
}

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

.tech-logo-item img {
    max-height: 60px;
    width: auto;
    height: 40px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    
    .tech-logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin-top: 20px;
    }
    
    .tech-logo-item {
        height: 80px;
        padding: 18px;
    }
    
    .tech-logo-item img {
        max-width: 60px;
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    
    .tech-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 15px;
    }
    
    .tech-logo-item {
        height: 70px;
        padding: 15px;
    }
    
    .tech-logo-item img {
        max-width: 55px;
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    
    .tech-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-logo-item {
        height: 60px;
        padding: 12px;
    }
    
    .tech-logo-item img {
        max-width: 50px;
        max-height: 40px;
    }
}
