/* =====================================================
   GLOBAL BUTTON STYLES
   Base styling and hover animations for all buttons
   ===================================================== */

/* Primary button base */
.zpbutton{
    transition: all 0.2s ease;
}

/* Primary CTA button gradient style */
.cta-primary .zpbutton.zpbutton-type-primary{
    background: #E8593C;
    background: linear-gradient(
        90deg,
        rgba(232, 89, 60, 1) 0%,
        rgba(245, 166, 35, 1) 50%
    ) !important;
}

/* Button hover lift effect */
.zpbutton:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* Outline button subtle hover background */
.zpbutton-outline:hover{
    background: rgba(255,255,255,0.08);
    transition: all 0.2s ease;
}



/* =====================================================
   PARTNER SECTION BACKGROUND
   Light sand gradient background used for partner logos
   ===================================================== */


.stats-section.zpsection{
background-color: transparent !important;
background-image: linear-gradient(
180deg,
#FFF6DB 0%,
#F7E7B0 100%
) !important;
}



/* =====================================================
   CARD HOVER EFFECTS
   Used for service cards in "What We Do" section
   Adds lift and shadow interaction
   ===================================================== */

.zpelem-box{
    transition: transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
}

.zpelem-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    border-color: rgba(245,166,35,0.45) !important;
}


/* =====================================================
   GRADIENT TEXT
   Used for hero headline highlight text
   Example: "Make software adapt to you"
   ===================================================== */

.gradient-text{
    background: linear-gradient(
        90deg,
        #F5A623,
        #FF7A59,
        #E056FD
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



/* =====================================================
   SECTION LABEL WITH DECORATIVE LINE
   Used for small headings like:
   - PROCESS-FIRST AUTOMATION
   - WHY TECH N CREATE
   - COMPANY PROFILE
   ===================================================== */

.process-label{
    display:inline-flex;
    align-items:center;
    font-family:Poppins, sans-serif;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
    color:#F5A623;
    text-transform:uppercase;
}

/* Decorative line beside section label */
.process-label::after{
    content:"";
    height:3px;
    width:220px;
    margin-left:16px;
    border-radius:3px;

    /* Gold line with gradient tip */
    background:
        linear-gradient(90deg,#FF7A59,#D63384) right/40px 100% no-repeat,
        #F5A623;
}

/* What we do section svg icon fixed dimension */
.fixed-dimension
{
    height:50px;
    width:50px;
}
/* Contact Page styles */

.zprow.contact-card
{
    background: rgba(18, 38, 72, 0.55);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 18px;

    box-shadow:
        0 20px 40px rgba(2,8,24,0.35),
        inset 0 1px 0 rgba(255,255,255,0.06);

    padding: 28px;
}


/* Contact info cards (email, phone, address) */

.zprow.contact-card .contact-info-box
{
    background: rgba(46, 70, 115, 0.65);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 14px;

    padding: 18px;

    box-shadow: 0 12px 20px rgba(0,0,0,0.30);

    transition: all 0.3s ease;
}
.contact-section-bg.zpdark-section-bg {
    background-color: #050d26 !important;
}
.home-section-bg.zphero-slide {
    background-color: #050d26 !important;
}

/* Team Section */
.avatar-blue.zpelem-heading {
    background: linear-gradient(135deg,#3B9FE8 0%,#1f6ab8 100%);
}
.avatar-gold {
    background: linear-gradient(135deg,#F7C96A 0%,#E8593C 100%);
}
.avatar-magenta {
    background: linear-gradient(135deg,#E8196C 0%,#932b91 100%);
}
.avatar {
    width: 56px;
    height: 56px;
    margin: 4px auto !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding:8px;
    
}


#zf_button_500619 {
  display: block;
  margin: 0 auto;
  background-color: #f59e0b;
  color: #1a1000;
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease;
}

#zf_button_500619:hover {
  background-color: #d97706;
}

.glass.zpelem-col{
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid var(--border);
  border-radius:14px;
  padding:28px;
}
