/*
Theme Name: Codexa Theme
Theme URI: https://codexa.com
Author: Codexa Team
Author URI: https://codexa.com
Description: A modern, lightweight custom WordPress theme with Bootstrap 5, custom post types, and advanced features. Perfect for business websites offering services like Website Design, Digital Marketing, and IT Solutions.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: codexa-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, bootstrap, responsive, business

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* Theme styles are loaded via enqueued stylesheets */






/* HOME PAGE  */
.home .Hero{
    height: 100vh;
    background:linear-gradient(to top, #00000080, #00000099), url(../codexa-theme/assets/images/hero-banner.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    /* padding: 60px; */
}
.btn{
    border: none;
    cursor: pointer;
    background-color: #5D56F1  !important;
            color: white !important;
            padding: 15px 30px !important;
            border-radius: 30px !important;
            font-family: 'Manrope', sans-serif !important;
            font-size: 16px !important;
            font-weight: 500 !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 10px !important;
            transition: all 0.3s !important;
}
.btn:hover{
   border-color: #5D56F1 !important;
            color: #5D56F1 !important;
            background-color: #fff !important;
           
}
.para{
   
        font-size: 20px;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: 0px;
    color: #5D56F1;
}

.heroheading{
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 100px;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: 0.04em;
}
.herospan{
    color: #5D56F1;
}
.logo{
    font-size: 25px;
}
.btndiv{
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
}
.heropara{
    font-size: 18px;
    text-align: center;
    max-width: 600px;
    margin-bottom: 30px;
    color: #ffffff;
        line-height: 1.6em;
   
}


/* AI BUTTON  */
.ai-hero-btn {
  position: relative;
  display: inline-block;
  padding: 20px 30px;
  color: #5D56F1;
  text-transform: uppercase;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.5s;
}
.ai-hero-btn:hover{
    color: #fff;
}

.ai-hero-btn span {
  position: absolute;
  display: block;
}

.ai-hero-btn span:first-child {
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5D56F1);
  animation: 1s linear infinite btn-anim1;
}

.ai-hero-btn span:nth-child(2) {
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #5D56F1);
  animation: 1s linear infinite btn-anim2;
  animation-delay: 0.25s;
}

.ai-hero-btn span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #5D56F1);
  animation: 1s linear infinite btn-anim3;
  animation-delay: 0.5s;
}


.ai-hero-btn span:nth-child(4) {
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #5D56F1);
  animation: 1s linear infinite btn-anim4;
  animation-delay: 0.75s;
}



@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  100%,
  50% {
    left: 100%;
  }
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  100%,
  50% {
    top: 100%;
  }
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  100%,
  50% {
    right: 100%;
  }
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  100%,
  50% {
    bottom: 100%;
  }
}
 
/* about us css */

 .home-about-section {
            padding: 60px 0;
        }

        .home-about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .home-about-image-container {
            position: relative;
        }

        .home-about-main-image {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .home-about-circle-decoration {
            position: absolute;
            bottom: 250px;
            right: -80px;
            width: 151px;
            height: 151px;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .home-about-content {
            padding-left: 30px;
        }

        .home-about-subtitle {
            
             font-size: 20px;
            font-weight: 700;
            line-height: 1.1em;
            color: #5D56F1;
            margin-bottom: 10px;
            display: block;
        }

        .home-about-title {
            font-size: 60px;
            font-weight: 700;
            line-height: 1.1em;
            letter-spacing: 0.04em;
            color: #15161B;
            margin-bottom: 20px;
        }

        .home-about-description {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        .home-about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 40px;
        }

        .home-about-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            color: #15161B;
        }

        .home-about-feature-icon {
            color: #5D56F1;
            font-size: 18px;
        }

        .home-about-button {
            background-color: #5D56F1;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            border: none;
           
        }

        .home-about-button:hover {
            color: #4a44c4;
            background-color: #fff;
            border: 2px solid #5D56F1;
            text-decoration: none;
        }

 

/* servicesection */


.services-section {
      
      margin: auto;
       padding: 60px 80px;
            background-color: #f8f9ff;
    }
    .home-services-header {
            text-align: center;
            
        }

    /* TOP AREA */
    .services-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
     
    }

    .small-title {
     
       font-size: 20px;
            font-weight: 700;
            line-height: 1.1em;
            color: #5D56F1;
            margin-bottom: 10px;
            display: block;
            text-align: start;
    }

    .main-title {
      
     text-align: start;
           font-size: 60px;
            font-weight: 700;
            line-height: 1.1em;
            letter-spacing: 0.04em;
            color: #15161B;
            margin-bottom: 20px;
            
    }

    /* BUTTON */
    .view-btn {
      padding: 15px 30px;
      background: #5d5cff;
      color: #fff;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.1em;
      display: flex;
      align-items: center;
      
    }



.home-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .home-service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .home-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .home-service-icon {
            width: 60px;
            height: 60px;
            background-color: #5D56F1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
         transform: rotate(0deg);
         transition: all 0.3s ease;
        }

         .home-service-icon:hover{
             transform: rotate(45deg);
         }

        .home-service-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .home-service-title {
            font-size: 24px;
            font-weight: 700;
            color: #15161B;
            margin-bottom: 15px;
        }

        .home-service-description {
            font-size: 16px;
            color: #666;
            margin-bottom: 25px;
        }

        .home-service-divider {
            height: 1px;
            background-color: #eee;
            margin: 25px 0;
        }

        .home-service-image {
            border-radius: 15px;
            margin-top: 25px;
            overflow: hidden;
        }

        .home-service-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .home-service-card:hover .home-service-image img {
            transform: scale(1.05);
        }

        .home-services-button-container {
            text-align: center;
            margin-top: 60px;
        }

        .home-services-button {
            background-color: #5D56F1;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .home-services-button:hover {
            background-color: #4a44c4;
            transform: translateY(-2px);
        }


         /* Portfolio Section */
        .home-portfolio-section {
            padding: 60px 0;
        }

        .home-portfolio-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .home-portfolio-subtitle {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.1em;
            color: #5D56F1;
            margin-bottom: 10px;
            display: block;
            text-align: start;
        }

        .home-portfolio-title {
               text-align: start;
           font-size: 60px;
            font-weight: 700;
            line-height: 1.1em;
            letter-spacing: 0.04em;
            color: #15161B;
            margin-bottom: 20px;
        }

        .home-portfolio-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .home-portfolio-item {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }

        .home-portfolio-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .home-portfolio-item:hover .home-portfolio-image {
            transform: scale(1.05);
        }

        .home-portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 40px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.5s;
        }

        .home-portfolio-item:hover .home-portfolio-overlay {
            transform: translateY(0);
        }

        .home-portfolio-item-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .home-portfolio-item-description {
            font-size: 16px;
            opacity: 0.9;
        }

        .home-portfolio-button-container {
            text-align: center;
            margin-top: 60px;
        }

        .home-portfolio-button {
            background-color: #5D56F1;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .home-portfolio-button:hover {
            background-color: #4a44c4;
            transform: translateY(-2px);
        }
/* 3. Process Section */
.wbix-services-process {
    padding: 60px 0;
    background: white;
}

.wbix-services-process h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.wbix-services-process-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.wbix-services-process-step {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white !important;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.wbix-services-process-step::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px dashed #2575fc;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wbix-services-process-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.wbix-services-process p {
    color: #6c757d;
    line-height: 1.7;
}

/* 4. Why Choose Section */
.wbix-services-why {
    padding: 60px 0;
    background: #f8fafc;
}

.wbix-services-why h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.wbix-services-why p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.wbix-services-why-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.wbix-services-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.wbix-services-why-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.wbix-services-why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.wbix-services-why-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.wbix-services-why-item p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.wbix-services-why-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}







       
 /* CTA Section */
        .home-cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #5D56F1 0%, #7B73FF 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .home-cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .home-cta-icon {
            position: absolute;
            top: -60px;
            right: -60px;
            width: 120px;
            height: 120px;
            opacity: 0.1;
        }

        .home-cta-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .home-cta-description {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .home-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .home-cta-button {
            background-color: white;
            color: #5D56F1;
            padding: 15px 30px;
            border-radius: 30px;
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .home-cta-button:hover {
            background-color: #f8f9ff;
            transform: translateY(-2px);
        }

         /* Partners Section */
        .home-partners-section {
            padding: 60px 0;
        }

        .home-partners-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .home-partners-subtitle {
           font-size: 20px;
            font-weight: 700;
            line-height: 1.1em;
            color: #5D56F1;
            margin-bottom: 10px;
            display: block;
            text-align: start;
        }

        .home-partners-title {
            text-align: start;
           font-size: 60px;
            font-weight: 700;
            line-height: 1.1em;
            letter-spacing: 0.04em;
            color: #15161B;
            margin-bottom: 20px;
        }

        .home-partners-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            align-items: center;
        }

        .home-partner-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s;
        }

        .home-partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }

        /* Testimonials Section */
        .home-testimonials-section {
            padding: 60px 0;
            background-color: #f8f9ff;
        }

        .home-testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .home-testimonials-subtitle {
           font-size: 20px;
            font-weight: 700;
            line-height: 1.1em;
            color: #5D56F1;
            margin-bottom: 10px;
            display: block;
            text-align: start;
        }

        .home-testimonials-title {
              text-align: start;
           font-size: 60px;
            font-weight: 700;
            line-height: 1.1em;
            letter-spacing: 0.04em;
            color: #15161B;
            margin-bottom: 20px;
        }

        .home-testimonials-slider {
            max-width: 1200px;
            margin: 0 auto;
        }

        .home-testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin: 0 15px;
        }

        .home-testimonial-rating {
            color: #FFD700;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .home-testimonial-content {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
            font-style: italic;
        }

        .home-testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .home-testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

        .home-testimonial-info h4 {
            font-size: 20px;
            font-weight: 700;
            color: #15161B;
            margin-bottom: 5px;
        }

        .home-testimonial-info p {
            font-size: 16px;
            color: #666;
        }
/* Blog Section */
        .home-blog-section {
            padding: 60px 0;
        }

        .home-blog-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .home-blog-subtitle {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.1em;
            color: #5D56F1;
            margin-bottom: 10px;
            display: block;
            text-align: start;
        }

        .home-blog-title {
              text-align: start;
           font-size: 60px;
            font-weight: 700;
            line-height: 1.1em;
            letter-spacing: 0.04em;
            color: #15161B;
            margin-bottom: 20px;
        }

        .home-blog-grid {
            display: flex;
            /* grid-template-columns: repeat(3, 1fr); */
            grid-template-columns: repeat(3, 2fr);
            gap: 30px;
        }

        .home-blog-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .home-blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .home-blog-image {
            height: 250px;
            overflow: hidden;
        }

        .home-blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .home-blog-card:hover .home-blog-image img {
            transform: scale(1.05);
        }

        .home-blog-content {
            padding: 30px;
        }

        .home-blog-date {
            font-size: 14px;
            color: #5D56F1;
            margin-bottom: 15px;
            display: block;
        }

        .home-blog-post-title {
            font-size: 22px;
            font-weight: 700;
            color: #15161B;
            line-height: 1.4;
            margin-bottom: 0;
        }

        .home-blog-post-title a:hover {
            color: #5D56F1;
        }

        .home-blog-button-container {
            text-align: center;
            margin-top: 60px;
        }

        .home-blog-button {
            background-color: #5D56F1;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .home-blog-button:hover {
            background-color: #4a44c4;
            transform: translateY(-2px);
        }

         /* Responsive Design */
        @media (max-width: 1200px) {
            .home-services-grid,
            .home-why-choose-grid,
            .home-blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .home-partners-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .home-about-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .home-portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .home-footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .home-nav-menu {
                display: none;
            }
            
            .home-mobile-menu-toggle {
                display: block;
                font-size: 24px;
                color: #15161B;
                cursor: pointer;
            }
            
            .home-hero-title {
                font-size: 48px;
            }
        }

        @media (max-width: 768px) {
            .home-services-grid,
            .home-why-choose-grid,
            .home-blog-grid {
                grid-template-columns: 1fr;
            }
            
            .home-partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .home-hero-title {
                font-size: 36px;
            }
            
            .home-about-title,
            .home-services-title,
            .home-portfolio-title,
            .home-why-choose-title,
            .home-blog-title,
            .home-cta-title {
                font-size: 32px;
            }
            
            .home-hero-buttons,
            .home-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .home-footer-bottom-container {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .home-partners-grid {
                grid-template-columns: 1fr;
            }
            
            .home-footer-container {
                grid-template-columns: 1fr;
            }
            
            .home-hero-section {
                padding: 150px 0 100px;
            }
            
            .home-about-section,
            .home-services-section,
            .home-portfolio-section,
            .home-why-choose-section,
            .home-testimonials-section,
            .home-blog-section {
                padding: 40px 0;
            }
        }

       
        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-container {
            text-align: center;
        }

        .loading-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
































































/* ABOUT US PAGE  */


/* Hero Section */
.wbix-about-hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.wbix-about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.wbix-about-breadcrumb {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.wbix-about-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.wbix-about-breadcrumb a:hover {
    color: #ffd700;
}

.wbix-about-breadcrumb-separator {
    margin: 0 10px;
    opacity: 0.7;
}

.wbix-about-breadcrumb-current {
    color: #ffd700;
    font-weight: 600;
}

.wbix-about-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.wbix-about-hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.wbix-about-hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -50px;
}

.wbix-about-hero-shape-3 {
    width: 150px;
    height: 150px;
    bottom: 100px;
    right: 20%;
}

/* About Company */
.wbix-about-company {
    padding: 60px 0;
    background: #f8f9fa;
}

.wbix-about-image-wrap {
    position: relative;
    max-width: 450px;
}

.wbix-about-image-main {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wbix-about-image-overlay {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 70%;
    border: 8px solid white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.wbix-about-image-overlay img {
    width: 100%;
    border-radius: 5px;
}

.wbix-about-content-box {
    padding-left: 30px;
}

.wbix-about-content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.wbix-about-content-box p {
    margin-bottom: 20px;
    color: #555;
}

.wbix-about-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.wbix-about-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.wbix-about-features li i {
    color: #6a11cb;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Achievements section */
.achievements-section {
  background-color: #f8fafc;
  padding: 60px 0;
}

.achievements-section .section-title {
  margin-bottom: 3rem;
  
}



.achievements-section .section-subtitle-para {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Achievement card */
.achievement-card {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.achievement-card .achievement-icon {
  font-size: 2.8rem;
  color: #5D56F1;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.15);
}

.achievement-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.achievement-card p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  flex-grow: 1;
}

/* Responsive design */
@media (max-width: 768px) {
  .achievements-section {
    padding: 40px 0;
  }

  .achievements-section .section-title h2 {
    font-size: 2rem;
  }

  .achievements-section .section-subtitle-para {
    font-size: 1rem;
  }

  .achievement-card h3 {
    font-size: 1.4rem;
  }

  .achievement-card p {
    font-size: 0.95rem;
  }

  .achievement-card .achievement-icon {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .achievements-section .section-title h2 {
    font-size: 1.8rem;
  }

  .achievement-card {
    padding: 20px;
  }
}

/* Why Choose Us */
.wbix-about-why {
    padding: 60px 0;
    background: #f8f9fa;
}

.wbix-about-why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.wbix-about-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wbix-about-why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.wbix-about-why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Team Section */
.wbix-about-team {
    padding: 60px 0;
}

.wbix-about-team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.wbix-about-team-card:hover {
    transform: translateY(-10px);
}

.wbix-about-team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.wbix-about-team-info {
    padding: 25px;
    text-align: center;
}

.wbix-about-team-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.wbix-about-team-role {
    color: #6a11cb;
    font-weight: 600;
    margin-bottom: 15px;
}

.wbix-about-team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.wbix-about-team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
}

.wbix-about-team-social a:hover {
    background: #6a11cb;
    color: white;
}
/* CTA Section */
.wbix-about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
}

.wbix-about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.wbix-about-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.wbix-about-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #2575fc;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid white;
}

.wbix-about-cta-btn:hover {
    background: transparent;
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .wbix-about-hero-title {
        font-size: 2.8rem;
    }
    
    .wbix-about-content-box {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .wbix-about-image-overlay {
        right: -20px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .wbix-about-hero {
        padding: 80px 0 60px;
    }
    
    .wbix-about-hero-title {
        font-size: 2.2rem;
    }
    
    .wbix-about-counter-number {
        font-size: 2.5rem;
    }
    
    .wbix-about-cta h2 {
        font-size: 2rem;
    }
    
    .wbix-about-image-overlay {
        position: relative;
        right: 0;
        bottom: 0;
        width: 80%;
        margin-top: -40px;
        margin-left: auto;
    }
}

@media (max-width: 576px) {
    .wbix-about-breadcrumb {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .wbix-about-counter-item {
        padding: 20px 15px;
    }
    
    .wbix-about-cta .row {
        text-align: center;
    }
    
    .wbix-about-cta .text-lg-end {
        text-align: center !important;
        margin-top: 25px;
    }
}



/* Values Section */
.values-section {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
}

.value-card {
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-card i {
  font-size: 2.5rem;
  color: #5D56F1;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.value-card p {
  font-size: 1rem;
  color: #4b5563;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    height: 50vh;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-card h3,
  .team-card h4,
  .value-card h3 {
    font-size: 1.3rem;
  }

  .about-card p,
  .team-card p,
  .value-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .team-card img {
    width: 100px;
    height: 100px;
  }
}

/* hiring cta  */
.hiring-cta {
  background: linear-gradient(
    to right,
    #4e6bf7,
    #1a059f
  );
  padding: 55px 40px;
  border-radius: 20px;
  position: relative;
}
.hiring-cta img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 125%;
}
@media (max-width: 767px) {
  .hiring-cta img {
    height: 40%;
  }
}
@media (max-width: 991px) {
  .hiring-cta img {
    height: 70%;
  }
}
@media (max-width: 767px) {
  .hiring-cta img {
    height: 35%;
  }
}
@media (min-width: 992px) {
  .hiring-cta img {
    height: 110%;
  }
}
.hiring-cta a {
  background-color: #ffffff;
  color: #4e6bf7;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
}










/* SERVICE PAGE  */


/* 1. Hero Section */
.wbix-services-hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.wbix-services-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.wbix-services-breadcrumb {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 25px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    font-size: 1rem;
}

.wbix-services-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.wbix-services-breadcrumb a:hover {
    color: #2c3e50;
}

.wbix-services-breadcrumb-separator {
    margin: 0 12px;
    opacity: 0.7;
}

.wbix-services-breadcrumb-current {
    color: #ffd700;
    font-weight: 600;
}

.wbix-services-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.wbix-services-hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
}

.wbix-services-hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 30px;
    right: -50px;
}

.wbix-services-hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 10%;
}




  /* Why Choose Us Section */
        .home-why-choose-section {
            padding: 60px 0;
            background-color: #f8f9ff;
        }

        .home-why-choose-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .home-why-choose-subtitle {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.1em;
            color: #5D56F1;
            margin-bottom: 10px;
            display: block;
            text-align: start;
        }

        .home-why-choose-title {
              text-align: start;
           font-size: 60px;
            font-weight: 700;
            line-height: 1.1em;
            letter-spacing: 0.04em;
            color: #15161B;
            margin-bottom: 20px;
        }

        .home-why-choose-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .home-why-choose-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .home-why-choose-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .home-why-choose-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .home-why-choose-icon svg {
            width: 74px;
            height: 81px;
        }

        .home-why-choose-card-title {
            font-size: 22px;
            font-weight: 700;
            color: #15161B;
            margin-bottom: 15px;
        }

        .home-why-choose-card-description {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }
        /* ai portfolio section  */

.seo-stats{
    padding: 60px 0;
}
.ai-process-box {
  padding: 30px 70px 30px 50px;
  height: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e0e0e0;
  -webkit-border-radius: 20px 40px 20px 20px;
  -moz-border-radius: 20px 40px 20px 20px;
  -ms-border-radius: 20px 40px 20px 20px;
  border-radius: 20px 40px 20px 20px;
}
.ai-process-box h3 {
  color: #5D56F1;
}
.ai-process-box:hover {
  border: 1px solid #5D56F1;
}
.ai-process-box:hover .ai-step {
  color: #5D56F1;
}
.ai-process-box .ai-step {
  background-color: #fff;
  padding: 0 10px;
  height: 85px;
  display: inline-block;
  color: #000;
  font-size: 62px;
  transition: all 0.3s ease;
  position: absolute;
  left: -26px;
  top: 0;
  bottom: 0;
  margin: auto;
}



/* 5. CTA Section */
.wbix-services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
}

.wbix-services-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: white;
}

.wbix-services-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.wbix-services-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #2575fc;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid #2575fc;
    text-align: center;
}

.wbix-services-cta-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    border: 2px solid #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .wbix-services-hero-title {
        font-size: 2.8rem;
    }
    
    .wbix-services-card {
        padding: 30px 25px;
    }
    
    .wbix-services-why-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .wbix-services-why-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .wbix-services-hero {
        padding: 80px 0 60px;
    }
    
    .wbix-services-hero-title {
        font-size: 2.3rem;
    }
    
    .wbix-services-grid,
    .wbix-services-process,
    .wbix-services-why {
        padding: 40px 0;
    }
    
    .wbix-services-grid h2,
    .wbix-services-process h2,
    .wbix-services-why h2 {
        font-size: 2rem;
    }
    
    .wbix-services-cta {
        text-align: center;
    }
    
    .wbix-services-cta .text-lg-end {
        text-align: center !important;
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .wbix-services-breadcrumb {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .wbix-services-hero-title {
        font-size: 2rem;
    }
    
    .wbix-services-card {
        padding: 25px 20px;
    }
    
    .wbix-services-cta-btn {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}



/* CONTACT US PAGE  */

/* 1. Hero Section */
.wbix-contact-hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.wbix-contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.wbix-contact-breadcrumb {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 25px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    font-size: 1rem;
}

.wbix-contact-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.wbix-contact-breadcrumb a:hover {
    color: #FFD700;
}

.wbix-contact-breadcrumb-separator {
    margin: 0 12px;
    opacity: 0.7;
}

.wbix-contact-breadcrumb-current {
    color: #FFD700;
    font-weight: 600;
}

.wbix-contact-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.wbix-contact-hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.wbix-contact-hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 30px;
    left: -50px;
}

.wbix-contact-hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 15%;
}

/* 2. Contact Info Section */
.wbix-contact-info {
    padding: 60px 0;
    background-color: #f8fafc;
}

.wbix-contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wbix-contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.wbix-contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wbix-contact-info-card:hover::before {
    opacity: 1;
}

.wbix-contact-info-card:hover * {
    color: white !important;
}

.wbix-contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.wbix-contact-info-card:hover {
    background: white;
    color: #8A2BE2;
    transform: scale(1.05);
}



.wbix-contact-info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.wbix-contact-info-text {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s;
}

.wbix-contact-info-text a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 5px;
}

.wbix-contact-info-card:hover .wbix-contact-info-text a {
    color: white;
}

.wbix-contact-info-text a:hover {
    text-decoration: underline;
}

/* 3. Contact Form Section */
.wbix-contact-form-section {
    padding: 60px 0;
    background: white;
}

.wbix-contact-form-wrapper h2 {
    font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            color: #15161B;
            margin-bottom: 20px;
}

.wbix-contact-form-intro {
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.wbix-contact-form {
    margin-top: 30px;
}

.wbix-contact-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.wbix-contact-form-field {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    color: #333;
}

.wbix-contact-form-field:focus {
    outline: none;
    border-color: #8A2BE2;
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.wbix-contact-form-field::placeholder {
    color: #94a3b8;
}

.wbix-contact-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.wbix-contact-form-error {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 5px;
    min-height: 20px;
}

.wbix-contact-form-field.error {
    border-color: #e53e3e;
    background-color: #fff5f5;
}

.wbix-contact-submit-btn {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 180px;
}

.wbix-contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.wbix-contact-submit-btn:active {
    transform: translateY(-1px);
}

.wbix-contact-submit-icon {
    transition: transform 0.3s;
}

.wbix-contact-submit-btn:hover .wbix-contact-submit-icon {
    transform: translateX(5px);
}

.wbix-contact-form-success {
    color: #38a169;
    font-size: 1rem;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #f0fff4;
    border-radius: 8px;
    border: 1px solid #9ae6b4;
    display: none;
}

.wbix-contact-content {
    padding-left: 40px;
}

.wbix-contact-content h3 {
        font-size: 42px;
    font-weight: 700;
    color: #15161B;
    margin-bottom: 100px;
}

.wbix-contact-content p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.wbix-contact-business-hours {
    margin-top: 40px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
}

.wbix-contact-business-hours h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 15px;
}

.wbix-contact-business-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wbix-contact-business-hours li {
    color: #6c757d;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.wbix-contact-business-hours li:last-child {
    border-bottom: none;
}
.cux-social-heading {
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0;
    color: #222;
}
.cux-social-icons {
    display: flex;
    gap: 15px;
}

.cux-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5D56F1;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.cux-social-link:hover {
    background-color: #5D56F1;
    color: white;
    transform: translateY(-3px);
}

.cux-social-icon {
    font-size: 18px;
}
/* 4. Map Section */
.wbix-contact-map {
    position: relative;
    padding: 60px 80px;

}

.wbix-contact-map-frame {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
}

.wbix-contact-map-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.wbix-contact-map-frame iframe:hover {
    filter: grayscale(0%);
}

/* 5. CTA Section */
.wbix-contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
}

.wbix-contact-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: white;
}

.wbix-contact-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.wbix-contact-cta-btn {
    
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #2575fc;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid #2575fc;
    text-align: center;
}

.wbix-contact-cta-btn:hover {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .wbix-contact-hero-title {
        font-size: 2.8rem;
    }
    
    .wbix-contact-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .wbix-contact-business-hours {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .wbix-contact-hero {
        padding: 80px 0 60px;
    }
    
    .wbix-contact-hero-title {
        font-size: 2.3rem;
    }
    
    .wbix-contact-info,
    .wbix-contact-form-section {
        padding: 40px 0;
    }
    
    .wbix-contact-form-wrapper h2,
    .wbix-contact-content h3 {
        font-size: 2rem;
    }
    
    .wbix-contact-cta {
        text-align: center;
    }
    
    .wbix-contact-cta .text-lg-end {
        text-align: center !important;
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .wbix-contact-breadcrumb {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .wbix-contact-hero-title {
        font-size: 2rem;
    }
    
    .wbix-contact-info-card {
        padding: 30px 20px;
    }
    
    .wbix-contact-form-field {
        padding: 12px 16px;
    }
    
    .wbix-contact-submit-btn,
    .wbix-contact-cta-btn {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
    }
    
    .wbix-contact-map-frame {
        height: 350px;
    }
}



*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
}


/* Container */
.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Row */
.custom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

/* Column */
.custom-col {
  flex: 1;
  min-width: 200px;
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* Desktop Large */
@media (min-width: 1200px) {
  .custom-col {
    flex: 1 1 calc(33.33% - 20px);
  }
}

/* Desktop / Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
  .custom-col {
    flex: 1 1 calc(33.33% - 20px);
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .custom-col {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .custom-col {
    flex: 1 1 100%;
  }
}



.nav{
    position: absolute;            
    top: 0;
    left: 0;
    width: 100%;
    background: transparent; 
}
.nav-container{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.list {
    display: flex; 
    list-style: none; 
    padding: 0;
    margin: 0;
}


.list li {
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.list li:hover {
    color: blue;
}




















/* FOOTER  */
/* ================================
   CODEXA FOOTER – WEEBIX STYLE
================================ */

/* Root */
.codexa-footer-wrapper {
	background-color: #f6f8fc;
	font-family: inherit;
	color: #0b0b0b;
}

/* Footer Top */
.codexa-footer-top {
	padding-top: 40px ;
}

.codexa-footer-about {
	max-width: 320px;
}

.codexa-footer-logo {
	font-size: 34px;
	font-weight: 700;
	color: #5a54f6;
	margin-bottom: 10px;
}

.codexa-footer-desc {
	font-size: 15px;
	line-height: 1.7;
	color: #6b7280;
	margin-bottom: 18px;
}

.codexa-footer-link {
	display: block;
	font-size: 15px;
	color: #6b7280;
	text-decoration: none;
	font-weight: 500;
	margin-bottom: 6px;
}

.codexa-footer-link:hover {
	color: #5a54f6;
}

.codexa-footer-phone {
	display: block;
	font-size: 15px;
	color: #6b7280;
	font-weight: 500;
}

/* Titles */
.codexa-footer-title {
	font-size: 18px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 18px;
}

/* Lists */
.codexa-footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.codexa-footer-list li {
	margin-bottom: 10px;
}

.codexa-footer-list li a {
	text-decoration: none;
	font-size: 15px;
	color: #6b7280;
    font-weight: 500;
	transition: all 0.3s ease;
}

.codexa-footer-list li a:hover {
	color: #5a54f6;
	padding-left: 4px;
}

/* Footer Bottom */
.codexa-footer-bottom {
	border-top: 1px solid #e5e7eb;
	padding: 25px 0;
	margin-top: 40px;
}

.codexa-footer-copy {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

/* Bottom Links */
.codexa-footer-bottom-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	gap: 22px;
}

.codexa-footer-bottom-links li a {
	font-size: 14px;
	color: #6b7280;
	text-decoration: none;
	transition: color 0.3s ease;
}

.codexa-footer-bottom-links li a:hover {
	color: #5a54f6;
}

/* ================================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 991px) {
	.codexa-footer-top {
		padding: 20px 0;
	}

	.codexa-footer-bottom-links {
		justify-content: center;
		margin-top: 15px;
	}
}

/* Mobile */
@media (max-width: 575px) {
	.codexa-footer-logo {
		font-size: 28px;
	}

	.codexa-footer-title {
		margin-top: 25px;
	}

	.codexa-footer-about {
		max-width: 100%;
	}

	.codexa-footer-bottom-links {
		flex-direction: column;
		gap: 10px;
		align-items: center;
	}

	.codexa-footer-copy {
		text-align: center;
	}
}

/* =========================
   GLOBAL MOBILE FIXES
========================= */

@media (max-width: 991px) {
  .Hero {
    background-attachment: scroll;
    padding: 80px 30px;
  }

  .heroheading {
    font-size: 56px;
    line-height: 1.1;
  }

  .heropara {
    font-size: 16px;
  }

  .btndiv {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================
   TABLET & MOBILE
========================= */

@media (max-width: 768px) {

  /* Headings */
  .home-about-title,
  .main-title,
  .home-portfolio-title,
  .home-why-choose-title,
  .home-blog-title,
  .home-partners-title,
  .home-testimonials-title {
    font-size: 32px;
    text-align: center;
  }

  .small-title,
  .home-about-subtitle,
  .home-portfolio-subtitle,
  .home-blog-subtitle {
    text-align: center;
  }

  /* Services grid */
  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    padding: 30px 20px;
  }

  /* Portfolio */
  .home-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .home-portfolio-image {
    height: 260px;
  }

  /* Blog FIX */
  .home-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  /* CTA buttons */
  .home-cta-buttons {
    flex-direction: column;
  }

  /* About section */
  .home-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-about-content {
    padding-left: 0;
    text-align: center;
  }

  .home-about-features {
    grid-template-columns: 1fr;
  }

  .home-about-circle-decoration {
    display: none;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 576px) {

  .Hero {
    padding: 70px 20px;
  }

  .heroheading {
    font-size: 34px;
  }

  .para {
    font-size: 16px;
  }

  .home-service-title {
    font-size: 20px;
  }

  .home-service-description {
    font-size: 15px;
  }

  .home-partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-portfolio-overlay {
    padding: 20px;
  }

  .home-blog-content {
    padding: 20px;
  }
}





























.home-about-button{
    cursor: pointer;
    pointer-events: auto;
}





/* HOME PAGE TRANSPARENT */
.header-home .navbar {
    background: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.header-home.scrolled .navbar {
    background:#fff !important;
}
/* HOME SCROLL WHITE */
.header-home .navbar.is-scrolled {
    background: #ffffff !important;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* TEXT COLORS */
.header-home .navbar .nav-link {
    color: #ffffff;
}
.site-header.header-home.scrolled .navbar .nav-link {
    color: #000;
}

.header-home .navbar.is-scrolled .nav-link {
    color: #000000;
}




/* PRIVACY & POLICY PAGE  */
 /* RESET - Scoped to this page only */
        .pp-privacy-root * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .pp-privacy-root {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: #f9fbfd;
            color: #333;
        }
        
        
        /* MAIN CONTENT CONTAINER */
        .pp-main-container {
           
            
            padding: 60px 80px;
        }
        
        /* POLICY SECTIONS */
        .pp-policy-section {
            background-color: white;
            border-radius: 12px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 50, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .pp-policy-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 50, 0.08);
        }
        
        .pp-section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #5D56F1;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e8f1f8;
        }
        
        .pp-section-text {
            font-size: 1.1rem;
            color: #444;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        /* INFORMATION WE COLLECT SECTION */
        .pp-info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .pp-info-card {
            background-color: #f8fafc;
            border-radius: 10px;
            padding: 30px;
            border-left: 5px solid #5D56F1;
            transition: all 0.3s ease;
        }
        
        .pp-info-card:hover {
            background-color: #f0f7ff;
            transform: translateX(5px);
        }
        
        .pp-card-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2a5a8c;
            margin-bottom: 15px;
        }
        
        .pp-card-list {
            list-style-position: inside;
            color: #555;
        }
        
        .pp-card-list-item {
            margin-bottom: 8px;
            padding-left: 5px;
        }
        
        /* HOW WE USE INFO SECTION */
        .pp-use-info-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .pp-use-info-item {
            display: flex;
            align-items: flex-start;
            padding: 20px;
            background-color: #f8fafc;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .pp-use-info-item:hover {
            background-color: #f0f7ff;
            transform: translateY(-5px);
        }
        
        .pp-use-icon {
            font-size: 1.8rem;
            color: #5D56F1;
            margin-right: 20px;
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background-color: #e8f1ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .pp-use-text {
            font-size: 1.05rem;
            color: #444;
            line-height: 1.7;
        }
        
        /* DATA PROTECTION SECTION */
        .pp-data-protection-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #e8f4ff 100%);
            border-radius: 12px;
            padding: 50px;
            margin-top: 40px;
            border: 1px solid #d1e7ff;
            position: relative;
            overflow: hidden;
        }
        
        .pp-data-protection-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, #5D56F1, #5D56F1);
        }
        
        .pp-data-protection-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #18466e;
            margin-bottom: 20px;
        }
        
        .pp-data-protection-text {
            font-size: 1.1rem;
            color: #2a5a8c;
            line-height: 1.8;
        }
        
        
        
        /* RESPONSIVE DESIGN */
        @media (max-width: 992px) {
            .pp-hero-title {
                font-size: 2.8rem;
            }
            
            .pp-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .pp-policy-section {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 768px) {
            .pp-hero-title {
                font-size: 2.3rem;
            }
            
            .pp-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .pp-section-title {
                font-size: 1.8rem;
            }
            
            .pp-info-cards,
            .pp-use-info-container {
                grid-template-columns: 1fr;
            }
            
            .pp-policy-section {
                padding: 30px 20px;
            }
            
            .pp-data-protection-box {
                padding: 30px 20px 30px 30px;
            }
        }
        
        @media (max-width: 480px) {
            .pp-hero-section {
                padding: 80px 15px;
            }
            
            .pp-hero-title {
                font-size: 2rem;
            }
            
            .pp-breadcrumb {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .pp-breadcrumb-item {
                margin: 5px;
            }
        }


        /* Terms & Conditions Page  */
        /* MAIN CONTENT CONTAINER */
        .tc-main-container {
            padding: 60px 80px;
        }
        
        /* TERMS SECTIONS */
        .tc-terms-section {
            background-color: white;
            border-radius: 12px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 50, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .tc-terms-section:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 50, 0.08);
        }
        
        .tc-section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #5D56F1;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #eef3f9;
        }
        
        .tc-section-text {
            font-size: 1.1rem;
            color: #444;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        /* ACCEPTANCE TERMS BOX */
        .tc-acceptance-box {
            background-color: #f0f7ff;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            border-left: 5px solid #5D56F1;
        }
        
        .tc-acceptance-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2a4a7a;
            margin-bottom: 15px;
        }
        
        /* SERVICES SECTION */
        .tc-services-list {
            list-style: none;
            margin: 25px 0;
        }
        
        .tc-service-item {
            padding: 15px 0 15px 40px;
            position: relative;
            border-bottom: 1px solid #eee;
        }
        
        .tc-service-item:last-child {
            border-bottom: none;
        }
        
        .tc-service-icon {
            position: absolute;
            left: 0;
            top: 15px;
            color: #5D56F1;
            font-size: 1.2rem;
        }
        
        .tc-service-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2a4a7a;
            margin-bottom: 5px;
        }
        
        /* PAYMENT & FEES SECTION */
        .tc-payment-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .tc-table-header {
            background-color: #5D56F1;
            color: white;
        }
        
        .tc-table-header-cell {
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .tc-table-row {
            border-bottom: 1px solid #eef3f9;
            transition: background-color 0.3s ease;
        }
        
        .tc-table-row:hover {
            background-color: #f8fafd;
        }
        
        .tc-table-row:nth-child(even) {
            background-color: #f8fafd;
        }
        
        .tc-table-cell {
            padding: 16px 15px;
            color: #444;
        }
        
        /* INTELLECTUAL PROPERTY SECTION */
        .tc-ip-content {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .tc-ip-box {
            flex: 1;
            min-width: 250px;
            background-color: #f8fafd;
            border-radius: 10px;
            padding: 25px;
            border: 1px solid #e1e8f0;
        }
        
        .tc-ip-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5D56F1;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .tc-ip-icon {
            color: #5D56F1;
            font-size: 1.4rem;
        }
        
        /* LIABILITY & DISCLAIMER SECTION */
        .tc-liability-box {
            background: linear-gradient(135deg, #fff8f8 0%, #fff0f0 100%);
            border-radius: 12px;
            padding: 40px;
            margin-top: 40px;
            border: 1px solid #ffd6d6;
            position: relative;
        }
        
        .tc-liability-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, #ff6b6b, #cc5555);
        }
        
        .tc-liability-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #8b0000;
            margin-bottom: 20px;
        }
        
        /* TERMINATION SECTION */
        .tc-termination-content {
            background-color: #fff9e6;
            border-radius: 10px;
            padding: 30px;
            margin-top: 30px;
            border-left: 5px solid #ffc107;
        }
        
        .tc-termination-list {
            list-style-position: inside;
            margin: 20px 0;
        }
        
        .tc-termination-item {
            margin-bottom: 10px;
            padding-left: 10px;
            color: #5d4200;
        }
        
        /* GOVERNING LAW SECTION */
        .tc-law-box {
            text-align: center;
            background-color: #f0f7ff;
            border-radius: 10px;
            padding: 40px;
            margin-top: 30px;
        }
        
        .tc-law-icon {
            font-size: 3rem;
            color: #5D56F1;
            margin-bottom: 20px;
        }
        
        .tc-law-text {
            font-size: 1.2rem;
            color: #2a4a7a;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* CONTACT SECTION */
        .tc-contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        
        .tc-contact-method {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 25px;
            background-color: #f8fafd;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .tc-contact-method:hover {
            transform: translateY(-5px);
            background-color: #f0f7ff;
        }
        
        .tc-contact-icon {
            font-size: 2.2rem;
            color: #4a6fa5;
            margin-bottom: 15px;
        }
        
        .tc-contact-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2a4a7a;
            margin-bottom: 10px;
        }
        
        
        
        /* RESPONSIVE DESIGN */
        @media (max-width: 992px) {
            .tc-hero-title {
                font-size: 2.8rem;
            }
            
            .tc-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .tc-terms-section {
                padding: 40px 30px;
            }
            
            .tc-ip-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .tc-hero-title {
                font-size: 2.3rem;
            }
            
            .tc-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .tc-section-title {
                font-size: 1.8rem;
            }
            
            .tc-terms-section {
                padding: 30px 20px;
            }
            
            .tc-payment-table {
                display: block;
                overflow-x: auto;
            }
            
            .tc-liability-box {
                padding: 30px 20px 30px 30px;
            }
        }
        
        @media (max-width: 480px) {
            .tc-hero-section {
                padding: 80px 15px;
            }
            
            .tc-hero-title {
                font-size: 2rem;
            }
            
            .tc-breadcrumb {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .tc-breadcrumb-item {
                margin: 5px;
            }
            
            .tc-contact-info {
                flex-direction: column;
            }
        }
         @media (max-width: 768px) {
            .services-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.services-section {
    margin: auto;
    padding: 40px 10px;
    
}
.home-partners-subtitle {
    text-align: center;
}

.home-partners-section {
    padding: 40px 0;
}
.home-testimonials-subtitle {
    text-align: center;
}
.wbix-about-company {
    padding: 40px 0;
    background: #f8f9fa;
}
.wbix-about-why {
    padding: 40px 0;
}
.wbix-about-team {
    padding: 40px 0;
}
.home-why-choose-section {
    padding: 40px 0;}

.home-why-choose-subtitle {
    text-align: center;
}
.home-why-choose-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}.seo-stats {
    padding: 40px 0;
}
.home-why-choose-title {
    margin-bottom: 30px;
}
.res{
    padding: 0 10px;
}
.wbix-contact-map {
    padding: 40px 10px;
}

.codexa-footer-bottom {
    margin-top: 0;}
    .newsbut{
        
        justify-content: center;
    }
.codexa-footer-bottom {
    
    padding: 15px 0;
    
}





         }