:root {
      --atlaxa-dark: #0a0e1f;
      --atlaxa-blue: #14264e;
      --atlaxa-orange: #d7671f;
      --atlaxa-white: #ffffff;
      --atlaxa-gray: #f7f7f7;
      --atlaxa-text: #222222;
      --atlaxa-muted: #666666;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      color: var(--atlaxa-text);
      overflow-x: hidden;
    }
    /* Global Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 16px;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
    color: var(--atlaxa-dark, #1a1a1a);
}

/* Heading Sizes */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* 40px - 64px */
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem); /* 32px - 48px */
    font-weight: 800;
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem); /* 28px - 36px */
    font-weight: 700;
}

h4 {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem); /* 24px - 28px */
    font-weight: 700;
}

h5 {
    font-size: clamp(1.25rem, 2vw, 1.5rem); /* 20px - 24px */
    font-weight: 600;
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.125rem); /* 16px - 18px */
    font-weight: 600;
}
    a{
        text-decoration:none;
    }
    .multi-clr-heading span{
     color:var(--atlaxa-orange);   
    }
    
    .bg-dark-blue{
        background-color:var(--atlaxa-blue);
    }
    /* Default Heading Style */
.section-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--atlaxa-blue);
    letter-spacing: -0.02em;
}

/* Tablet */
@media (max-width: 991px) {
    .section-heading {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-heading {
        font-size: 32px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-heading {
        font-size: 28px;
    }
}
.atlaxa-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.atlaxa-list li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.atlaxa-list li::before {
    content: "\f576";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--atlaxa-blue);
    color: var(--atlaxa-white);

    border-radius: 50%;
    font-size: 13px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.atlaxa-list li:hover::before {
    transform: translateY(-50%) scale(1.08);
}
    /* ── NAVBAR ── */
    .navbar {
      background: #fff;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      padding: 0.5rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar-brand img { height: 48px; }
    .navbar .nav-link {
      font-size: 13.5px;
      font-weight: 500;
      color: #222 !important;
      padding: 0.5rem 0.85rem !important;
      letter-spacing: 0.01em;
    }
    .navbar .nav-link:hover { color: var(--atlaxa-orange) !important; }
    .navbar .nav-link .bi { font-size: 11px; }
    .btn-enquire {
      background: var(--atlaxa-blue);
      color: #fff !important;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 600;
      padding: 0.45rem 1.2rem;
      letter-spacing: 0.03em;
    }
    .btn-enquire:hover { background: var(--atlaxa-orange); color: #fff !important; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(120deg, #060c20 60%, #101840 100%);
      min-height: 480px;
      position: relative;
      overflow: hidden;
      padding: 60px 0 40px;
    }
    .hero-badge {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
    }

    .hero h1 span { color: var(--atlaxa-orange); }
    .hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.72);
      margin: 16px 0 28px;
      max-width: 380px;
    }
    .hero-feature {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      text-align: center;
    }
    .hero-feature .icon-wrap {
      width: 48px; height: 48px;
      border: 1.5px solid rgba(255,255,255,0.25);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-feature .icon-wrap i { font-size: 20px; color: rgba(255,255,255,0.9); }
    .hero-feature span {
      font-size: 12px;
      color: rgba(255,255,255,0.72);
      font-weight: 500;
      line-height: 1.3;
    }
    .hero-img-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-paint-splash {
      width: 100%;
      max-width: 540px;
      background: radial-gradient(ellipse at 60% 50%, #7c3aed44 0%, #1d4ed833 40%, transparent 70%);
      border-radius: 50%;
      aspect-ratio: 1;
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
    }
    .hero-cans {
      display: flex;
      gap: 12px;
      align-items: flex-end;
      position: relative;
      z-index: 2;
      padding: 20px 0;
    }
    .paint-can {
      background: linear-gradient(160deg, #e8e8e8 0%, #c0c0c0 50%, #a0a0a0 100%);
      border-radius: 6px 6px 4px 4px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    }
    .paint-can.large { width: 120px; height: 150px; }
    .paint-can.small { width: 80px; height: 110px; }
    .can-label {
      background: #fff;
      border-radius: 4px;
      padding: 6px 8px;
      margin-top: 18px;
      text-align: center;
      width: 85%;
    }
    .can-label .logo-text { font-size: 10px; font-weight: 800; color: #1a2a6c; }
    .can-drip {
      position: absolute;
      bottom: -28px;
      width: 12px;
      height: 28px;
      border-radius: 0 0 8px 8px;
    }
    .btn-explore {
      background: var(--atlaxa-orange);
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: 0.6rem 1.6rem;
      font-size: 14px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s;
    }
    .btn-explore:hover { background: var(--atlaxa-orange); color: #fff; }

    /* ── SECTION COMMONS ── */
    section { padding: 70px 0; }
    .section-eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--atlaxa-orange);
      margin-bottom: 8px;
    }
    .divider-line {
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
      margin-bottom: 10px;
    }
    .divider-line::before,
    .divider-line::after {
      content: '';
      height: 2px;
      width: 40px;
      background: var(--atlaxa-orange);
      border-radius: 2px;
    }

    /* ── ABOUT ── */
    .about-section { background: #fff; }
    .feature-card {
      border: 1.5px solid #eee;
      border-radius: 10px;
      padding: 20px 18px;
      transition: box-shadow 0.2s, border-color 0.2s;
      height: 100%;
    }
    .feature-card:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
      border-color: var(--atlaxa-orange);
    }
    .feature-card .icon-circle {
      width: 44px; height: 44px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 12px;
    }
    .feature-card h6 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
    .feature-card p { font-size: 13px; color: var(--atlaxa-muted); line-height: 1.6; margin: 0; }
    .btn-learn {
      border: 1.5px solid var(--atlaxa-blue);
      color: var(--atlaxa-blue);
      background: transparent;
      border-radius: 4px;
      padding: 0.45rem 1.2rem;
      font-size: 13px;
      font-weight: 600;
      transition: all 0.2s;
    }
    .btn-learn:hover { background: var(--atlaxa-blue); color: #fff; }

    /* ── MARKET SEGMENTS ── */
    .segments-section { background: var(--atlaxa-gray); }
    .segment-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .segment-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }
    .segment-img {
      height: 160px;
      object-fit: cover;
      width: 100%;
      background: #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      color: #ccc;
    }
    .segment-img-bg {
     background: linear-gradient(135deg, #14264e, #1e40af, #3b82f6);
      height: 160px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 52px;
    }
    .segment-body { padding: 18px 16px; }
    .segment-body h6 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
    .segment-body ul {
      list-style: none;
      padding: 0; margin: 0 0 14px;
    }
    .segment-body ul li {
      font-size: 12.5px;
      color: var(--atlaxa-muted);
    }
    /* Swiper */
.segmentsSwiper {
    overflow: hidden;
    padding: 10px 5px 20px;
}

.segmentsSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.segmentsSwiper .segment-card {
    width: 100%;
    height: 100%;
}

/* Navigation */
.carousel-ctrl {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.12);
    transition: .3s;
}

.carousel-ctrl:hover {
    transform: translateY(-2px);
}

/* Font Awesome Icons */
.segment-main-icon {
    font-size: 70px;
    color: rgba(255,255,255,.85);
}

.segment-badge i {
    font-size: 20px;
}

    .link-orange {
      font-size: 12.5px;
      font-weight: 700;
      color: var(--atlaxa-orange);
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .link-orange:hover { text-decoration: underline; }
    .carousel-ctrl {
      width: 36px; height: 36px;
      border: 1.5px solid #ccc;
      background: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
    }
    .carousel-ctrl:hover { border-color: var(--atlaxa-orange); color: var(--atlaxa-orange); }

    /* ── SOLUTIONS ── */
    .solutions-section {
      background-image: url('../images/paint-section-bg.webp');
      background-size:cover;
      background-repeat:no-repeat;
      background-position:center;
      position: relative;
      overflow: hidden;
    }
    .solutions-section .section-title { color: #fff; }
    .solutions-section .section-sub { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 6px; }
    .solution-item {
      text-align: center;
      color: rgba(255,255,255,0.85);
    }
    .solution-icon {
      width: 64px; height: 64px;
      border-radius: 10px;
      border: 1.5px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 12px;
      font-size: 28px;
      background: rgb(0 0 0 / 10%);
      transition: border-color 0.2s, background 0.2s;
    }
    .solution-item:hover .solution-icon {
      border-color: var(--atlaxa-orange);
      background: rgba(232,119,34,0.15);
    }
    .solution-item span { font-size: 13px; font-weight: 600; line-height: 1.3; display: block; }
    .carousel-dots span {
      display: inline-block;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      margin: 0 3px;
      cursor: pointer;
    }
    .carousel-dots span.active { background: var(--atlaxa-orange); }

    /* ── REVOLUTION ── */
    .revolution-section { background: #fff; }
    .rev-feature {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #444;
    }
    .rev-feature i { color: var(--atlaxa-orange); font-size: 16px; }
    .rev-can {
      background: linear-gradient(160deg, #1a1a3e, #0a0e1f);
      border-radius: 10px;
      padding: 24px 18px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
      position: relative;
      overflow: hidden;
    }
    .rev-can::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #7c3aed22, #3b82f622);
    }
    .rev-can-top {
      background: linear-gradient(to right, #312e81, #1e3a8a, #312e81);
      border-radius: 8px 8px 0 0;
      padding: 10px;
      position: relative;
    }
    .rev-can-label {
      background: linear-gradient(135deg, #4f46e5, #7c3aed);
      border-radius: 6px;
      padding: 14px 10px;
      position: relative;
    }
    .rev-can.green .rev-can-top { background: linear-gradient(to right, #14532d, #166534, #14532d); }
    .rev-can.green .rev-can-label { background: linear-gradient(135deg, #15803d, #22c55e); }
    .rev-logo { font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 0.05em; }
    .rev-name { font-size: 13px; font-weight: 900; color: #fff; margin-top: 6px; letter-spacing: 0.05em; }
    .rev-sub { font-size: 9px; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; }
    .btn-discover {
      background: var(--atlaxa-orange);
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: 0.6rem 1.6rem;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    .btn-discover:hover { background: #c9651a; color: #fff; }

    /* ── BRANDS ── */
    .brands-section { background: var(--atlaxa-gray); padding: 50px 0; }
    .brand-logo {
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: grayscale(1) opacity(0.6);
      transition: filter 0.2s;
      font-size: 1.3rem;
      font-weight: 900;
      letter-spacing: -0.02em;
    }
    .brand-logo:hover { filter: grayscale(0) opacity(1); }

    /* ── GALLERY ── */
    .gallery-section { background: #fff; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
    }
    .gallery-item {
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 1;
      background: #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #bbb;
      transition: transform 0.2s;
    }
    .gallery-item:hover { transform: scale(1.03); }
    .btn-gallery {
      border: 1.5px solid #ccc;
      background: transparent;
      color: #333;
      border-radius: 20px;
      padding: 0.5rem 2rem;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.2s;
    }
    .btn-gallery:hover { border-color: var(--atlaxa-orange); color: var(--atlaxa-orange); }

    /* ── FOOTER ── */
       .footer-section {
    background: #0d2147;
    padding: 60px 0 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-logo h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    line-height: 1;
}

.footer-logo span {
    color: #c7d2e3;
    font-size: 13px;
    display: block;
    margin-top: 2px;
}

.footer-desc {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 25px;
    max-width: 260px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: #fff;
    color: #0d2147;
}

.footer-contact p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 40px;
    padding: 18px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

.footer-bottom a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .footer-section {
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
        margin: 20px auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}
    .whatsapp-btn {
      position: fixed;
      bottom: 80px; right: 20px;
      width: 48px; height: 48px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 24px;
      box-shadow: 0 4px 16px rgba(37,211,102,0.4);
      text-decoration: none;
      z-index: 999;
    }
    .call-btn {
      position: fixed;
      bottom: 20px; right: 20px;
      background: var(--atlaxa-blue);
      color: #fff;
      border-radius: 24px;
      padding: 10px 18px;
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 600;
      box-shadow: 0 4px 16px rgba(26,42,108,0.3);
      text-decoration: none;
      z-index: 999;
    }
    .call-btn:hover { background: var(--atlaxa-orange); color: #fff; }

    @media (max-width: 768px) {
      .hero { padding: 40px 0 30px; }
      .hero-cans { gap: 8px; }
      .paint-can.large { width: 80px; height: 110px; }
      .paint-can.small { width: 56px; height: 80px; }
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
      .solutions-section::after { display: none; }
    }
    
    /*stat section */
    .paint-stats-section{
    background: linear-gradient(90deg,#002d75 0%,#00398f 50%,#002d75 100%);
    position: relative;
    overflow: hidden;
}

.section-tag{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    position:relative;
    padding-bottom:12px;
}

.section-tag::after{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:35px;
    height:3px;
    background:var(--atlaxa-orange);
}
.section-description{
    color:rgba(255,255,255,.85);
    line-height:1.8;
    max-width:650px;
    margin:0 auto;
}

.stats-wrapper{
    align-items:center;
}

.stat-item{
    position:relative;
}

.stat-item:not(:last-child)::after{
    content:'';
    position:absolute;
    right:0;
    top:15%;
    height:70%;
    width:1px;
    background:rgba(255,255,255,.2);
}

.stat-icon{
    font-size:2rem;
    margin-bottom:20px;
    color:#fff;
}

.stat-item h3{
    font-size:3rem;
    font-weight:700;
    color:#fff;
    line-height:1;
}

.stat-item p{
    color:rgba(255,255,255,.9);
    font-size:1rem;
    line-height:1.4;
}

@media (max-width: 767px){

    .stat-item{
        margin-bottom:30px;
    }

    .stat-item::after{
        display:none;
    }

    .section-heading{
        font-size:2rem;
    }

    .stat-item h2{
        font-size:2.2rem;
    }
}

/*foundation section */
.atlaxa-foundation{
    background:#fff;
}
.atlaxa-foundation h2,
.atlaxa-foundation h3{
    margin-bottom:20px;
}

.atlaxa-foundation p{
    color:#6c757d;
    line-height:1.8;
}

.atlaxa-foundation .about-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    height:100%;
    border:1px solid #e9ecef;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-5px);
}

.about-card h4{
    color:var(--atlaxa-blue);
    margin-bottom:15px;
}
.about-hero-section{
    background-image:url('../images/about-bg.jpg');    
    background-size: cover;
    background-position: bottom,center;
    min-height:450px;
}
.atlaxa-list{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.applications-section{
    background:#fff;
    overflow:hidden;
}

.application-list{
    display:flex;
    gap:0;
}

.application-item{
    flex:1;
    padding:0 25px;
}
.application-list .application-item:not(:last-child){
    border-right:1px solid #d9d9d9;
}
.application-item:first-child{
    padding-left:0;
}

.application-item h5{
    font-size:20px;
    margin:20px 0 10px;
}

.application-item p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin:0;
}

.app-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:15px;
    background:#fff;
}

.industrial{
    color:#0d6efd;
    border:2px solid #0d6efd;
}

.architectural{
    color:#ff4d4f;
    border:2px solid #ff4d4f;
}

.automotive{
    color:#6ca100;
    border:2px solid #6ca100;
}

.furniture{
    color:#ff8c1a;
    border:2px solid #ff8c1a;
}

.application-image{
    height:100%;
}

.application-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Mobile */
@media(max-width:991px){

    .application-list{
        flex-wrap:wrap;
        gap:30px;
    }

    .application-item{
        flex:0 0 calc(50% - 15px);
        border-right:none;
        padding:0;
    }
}

@media(max-width:576px){

    .application-item{
        flex:0 0 100%;
    }
}
/*contact section */
.contact-section{
    background:#fff;
}

.contact-intro{
    color:#6c757d;
    line-height:1.8;
    margin-bottom:30px;
}

.contact-card{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding:25px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    margin-bottom:20px;
    transition:.3s ease;
}

.contact-card:hover{
    transform:translateY(-5px);
}

.contact-icon{
    width:60px;
    min-width:60px;
    height:60px;
    border-radius:15px;
    background:var(--atlaxa-blue);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
}

.contact-card h5{
    margin-bottom:8px;
    font-size:18px;
}

.contact-card p{
    margin:0;
    color:#6c757d;
    line-height:1.7;
}
.contact-card a{
 color:inherit;
}
.contact-form-wrapper{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form-wrapper .form-control{
    height:58px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    padding:12px 18px;
}

.contact-form-wrapper textarea.form-control{
    height:auto;
}

.contact-form-wrapper .form-control:focus{
    border-color:var(--atlaxa-blue);
    box-shadow:none;
}

.contact-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:12px;
    background:var(--atlaxa-blue);
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    background:#003f9a;
    color:#fff;
}
/*breadcrumb section */
.breadcrumb-section{
    min-height:250px;
    position:relative;
    background-image:url('../images/atlaxa-breadcrumb.webp');
    background-size:cover;
    background-position:center;
}
.breadcrumb-section::before{
    content:'';
    display:block;
    position:absolute;
    inset:0;
    background-color:rgba(0,0,0,0.5);
    z-index:1;
}
.breadcrumb-content {
    position:relative;
    z-index:3;
}
.breadcrumb-section h1{
    font-size:2rem;
    color:#fff;
}
.breadcrumb{
    display:flex;
    align-items:center;
    gap:0;
    padding:0;
    margin:0;
}
.breadcrumb li{
    color:#fff;
    list-style:none;
    font-weight:500;
}
.breadcrumb li a{
    color:#fff;
}
.breadcrumb li + li::before{
    content:"/";
    display:inline-block;
    margin:0 8px;
    color:#fff;
}

:root{
    --theme-color:#D2691E;
    --theme-light:#FFF8F3;
    --theme-border:#F2DED0;
    --white:#fff;
}

/*==============================
    Application Card
===============================*/

.application-card{
    position:relative;
    background:var(--white);
    border:2px solid #F3E6DA;
    border-radius:22px;
    padding:30px 25px;
    text-align:center;
    height:100%;
    overflow:hidden;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    transition:all .8s cubic-bezier(.22,1,.36,1);

    /* Premium Shadow */
    box-shadow:
        0 2px 8px rgba(0,0,0,.05),
        0 10px 25px rgba(0,0,0,.06),
        0 25px 45px rgba(0,0,0,.08),
        0 40px 80px rgba(210,105,30,.08);
}

/* Gradient Border */

.application-card::before{
    content:"";
    position:absolute;
    inset:0;
    padding:2px;
    border-radius:22px;
    background:linear-gradient(
        135deg,
        #F7D8C2,
        transparent 40%,
        transparent 60%,
        #F7D8C2
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;

    opacity:.6;
    transition:.8s;
}

/* Top Accent */

.application-card::after{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:70px;
    height:4px;
    border-radius:20px;
    background:linear-gradient(90deg,#D2691E,#F4B06A);
    transition:.8s;
}

/* Hover */

.application-card:hover{

    background:var(--theme-light);
    border-color:var(--theme-color);

    transform:translateY(-12px);

    box-shadow:
        0 8px 20px rgba(210,105,30,.12),
        0 20px 45px rgba(210,105,30,.18),
        0 40px 80px rgba(210,105,30,.20),
        0 70px 120px rgba(0,0,0,.15);

}

.application-card:hover::before{
    opacity:1;
}

.application-card:hover::after{
    width:100%;
    border-radius:0;
}

/*==============================
    Image
===============================*/

.application-image{

    width:170px;
    height:170px;

    border-radius:50%;

    background:#FFF9F6;
    border:2px solid #F3E6DA;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    margin:0 auto 22px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.08);

    transition:.8s;

}

.application-image img{

    width:100%;
    height:100%;
    object-fit:contain;

    transition:.8s;

}

.application-card:hover .application-image{

    border-color:var(--theme-color);
    background:#fff;

    transform:translateY(-6px);

    box-shadow:
        0 18px 40px rgba(210,105,30,.20);

}

.application-card:hover .application-image img{

    transform:scale(1.08);

}

/*==============================
    Icon
===============================*/

.application-icon{

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 18px;

    font-size:22px;

    color:#fff;

    background:linear-gradient(135deg,#D2691E,#F09A42);

    box-shadow:
        0 12px 30px rgba(210,105,30,.25);

    transition:.8s;

}

.application-card:hover .application-icon{

    background:#fff;
    color:var(--theme-color);

    transform:rotate(360deg) scale(1.08);

}

/*==============================
    Content
===============================*/

.application-card h5{

    margin:0 0 12px;
    font-size:20px;
    font-weight:600;
    color:#222;

    transition:.8s;

}

.application-card p{

    margin:0;
    color:#666;
    line-height:1.7;

    transition:.8s;

}

.application-card:hover h5{
    color:var(--theme-color);
}

.application-card:hover p{
    color:#555;
}

/*==============================
    Responsive
===============================*/

@media(max-width:991px){

.application-card{
    padding:25px 20px;
}

.application-image{
    width:140px;
    height:140px;
}

.application-icon{
    width:55px;
    height:55px;
    font-size:20px;
}

.application-card h5{
    font-size:18px;
}

}

@media(max-width:767px){

.application-card{
    padding:22px 18px;
    border-radius:18px;
}

.application-image{
    width:120px;
    height:120px;
}

.application-icon{
    width:50px;
    height:50px;
    font-size:18px;
}

.application-card h5{
    font-size:17px;
}

.application-card p{
    font-size:14px;
}

}

@media(max-width:575px){

.application-card{
    padding:18px 15px;
}

.application-image{
    width:100px;
    height:100px;
}

.application-icon{
    width:45px;
    height:45px;
    font-size:16px;
}

.application-card h5{
    font-size:16px;
}

}