/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/* Force center the nav items */
.header-inner.logo-left .flex-col.flex-left.flex-grow {
    justify-content: center !important;
}

.header-nav-main.nav-left {
    justify-content: center !important;
    margin-left: auto;
    margin-right: auto;
}
.header-nav-main.nav-left {
    gap: 40px;
}

/* Header button - default state */
.header-button-1 .button.primary {
    background-color: transparent;
    border: 1px solid #2A3886;
    border-radius: 8px;
    color: #2A3886;
	 transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
		font-weight: 400;
	font-size: 16px;
	padding: 5px 30px;
}

/* Header button - hover state */
.header-button-1 .button.primary:hover {
    background-color: #2c3981;
    color: #ffffff;
}

.sec-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 13, 30, 0.5) 0%, rgba(10, 13, 30, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.sec-bg {
    position: relative;
}

/* Make sure content stays above the overlay */
.sec-bg .section-content {
    z-index: 2;
}

.hero-heading h1,
.hero-heading h2,
.hero-heading h3,
.hero-heading h4,
.hero-heading h5,
.hero-heading h6 {
    line-height: 1.1 !important;
}

.cust-btn-arrow {
    background-color: #2A3886;
    color: #ffffff;
    font-weight: 400;
    border-radius: 8px;
    padding: 1em 2em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cust-btn-arrow::after {
    content: '';
    background-image: url('/wp-content/uploads/2025/12/arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 1em;
    height: 1em;
}

.cust-btn-arrow:hover {
    background-color: #1a2660;
}

/* Tablet */
@media (max-width: 849px) {
    .cust-btn-arrow {
        padding: 0.85em 1.5em;
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 549px) {
    .cust-btn-arrow {
        padding: 0.75em 1.25em;
        font-size: 14px;
        gap: 8px;
    }
}

/* Logo Carousel */
.logo-carousel {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: flex;
  justify-content: center;
  border-radius: 50px;
  margin: 20px auto;
  width: 1350px;
  max-width: 100%;
}
/* Gradient fade edges */
.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
/* Track with items */
.logo-carousel-wrapper {
  display: flex;
  width: max-content;
}
.logo-item {
  display: flex;
  width: 140px;
  margin: 0 30px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-item img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
  opacity: 0.4;
}
/* Responsive */
@media (max-width: 1400px) {
  .logo-carousel { width: 95%; }
}
/* Tablet */
@media (max-width: 768px) {
  .logo-item { 
    width: 120px; 
    margin: 0 20px;
  }
  .logo-carousel { height: 90px; }
  .logo-carousel::before,
  .logo-carousel::after {
    width: 60px;
  }
}
/* Mobile */
@media (max-width: 480px) {
  .logo-item { 
    width: 100px; 
    margin: 0 15px;
  }
  .logo-carousel { height: 70px; }
  .logo-carousel::before,
  .logo-carousel::after {
    width: 30px;
  }
}

.col-rad-20 .col-inner {
	
	border-radius: 20px;
}

.col.social-icons .social-icons {
  display: flex;
  align-items: center;
  gap: 7px;
}

.col.social-icons .social-icon img {
  width: 40px;
  height: 40px;
  display: block;
}

@media (max-width: 549px) {
  .col.social-icons .social-icon img {
    width: 35px;
    height: 35px;
  }
	
	.col.social-icons .social-icons {
  gap: 5px;
}
}

.img-rd-20 img {
	
	border-radius: 20px
}