
/* ===========================
   DEMO FORM
=========================== */

.demo-card{
    position:relative;
    max-width:550px;
    margin:40px auto;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    overflow: visible;
    
}

.demo-card h3{
    margin:0 0 10px;
    font-size:32px;
    font-weight:700;
    color:#0f172a;
    line-height:1.2;
    
}

.demo-subtitle{
    font-size:15px;
    color:#64748b;
    line-height:1.7;
    margin-bottom:25px;
}

/* ===========================
   FLOATING NOTIFICATION
=========================== */

.demo-card{
    position: relative;
    overflow: visible;
}

.demo-notification{
    position: absolute;
    top: -20px;
    right: 20px;   /* Move to the right */
    left: auto;    /* Remove any left positioning */

    display: flex;
    align-items: center;
    gap: 10px;

    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    z-index: 10;
}
.demo-check{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#22c55e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.demo-check svg{
    width:22px;
    height:22px;
}

.demo-notification b{
    display:block;
    font-size:14px;
    color:#111827;
    margin-bottom:2px;
}

.demo-notification span{
    font-size:13px;
    color:#6b7280;
}

/* ===========================
   FORM
=========================== */

.demo-form{
    margin-top:20px;
}

.demo-row{
    display:flex;
    gap:20px;
    margin-bottom:18px;
}

.demo-field{
    flex:1;
}

.demo-field label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#374151;
}

.demo-field input,
.demo-field textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #d1d5db;
    border-radius:10px;
    font-size:15px;
    font-family:inherit;
    background:#fff;
    transition:.3s;
    box-sizing:border-box;
}

.demo-field input:focus,
.demo-field textarea:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.demo-field textarea{
    min-height:120px;
    resize:vertical;
}

/* ===========================
   CONSENT
=========================== */

.demo-consent{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:20px 0 25px;
    font-size:14px;
    line-height:1.6;
    color:#6b7280;
}

.demo-consent input{
    margin-top:4px;
    accent-color:#2563eb;
}

/* ===========================
   BUTTON
=========================== */

.demo-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#2563eb;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.demo-btn:hover{
    background:#1d4ed8;
}





/* Hero Section Split Layout */
.ar_hero {
    background: #12375d;
    color: white;
    padding: 60px 0 72px;
    position: relative;
}

.ar_hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ar_hero-left {
    flex: 1 1 58%;
    text-align: left;
}

.ar_hero-right {
    flex: 1 1 42%;
    max-width: 440px;
}

.ar_hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14,165,233,0.15);
    border: 1px solid rgba(14,165,233,0.3);
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ar_hero h1 {
    font-size: clamp(26px, 3.8vw, 44px);
    margin-bottom: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.ar_hero h1 em {
    color: var(--accent);
    font-style: normal;
}

.ar_hero p {
    font-size: 1rem;
    margin: 0 0 24px;
    color: #94a3b8;
    line-height: 1.6;
}

.ar_hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.ar_hero-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #cbd5e1;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
}

.ar_hero-badge .ar_dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

/* Embedded Get Quote Box */
.demo-card{
    position: relative;
    max-width: 420px;      /* Reduced from 550px */
    xmargin: 20px auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;         /* Reduced from 35px */
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.demo-card h3{
    margin: 0 0 8px;
    font-size: 28px;       /* Reduced from 32px */
    line-height: 1.2;
}

.demo-subtitle{
    font-size: 14px;
    margin-bottom: 18px;
}

.demo-notification{
    
    padding: 10px 14px;
}

.demo-check{
    width: 36px;
    height: 36px;
}

.demo-check svg{
    width: 18px;
    height: 18px;
}

.demo-form{
    margin-top: 15px;
}

.demo-row{
    gap: 12px;
    margin-bottom: 14px;
}

.demo-field label{
    margin-bottom: 6px;
    font-size: 13px;
}

.demo-field input,
.demo-field textarea{
    padding: 10px 12px;
    font-size: 14px;
}

.demo-field textarea{
    min-height: 90px;
}

.demo-consent{
    margin: 15px 0 18px;
    font-size: 12px;
}

.demo-btn{
    width: 100%;
    padding: 12px;
    font-size: 15px;
}

.ar_hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
   
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ar_hero-stat-num {
    font-size: 26px;
    font-weight: 600;
    color: white;
}

.ar_hero-stat-label {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

/* ==========================================
   GOOGLE RECAPTCHA
========================================== */

.recaptcha-group {
    width: 100%;
    margin: 0 0 20px;
}

.recaptcha-group .g-recaptcha {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    width: 100%;
    min-height: 78px;

    box-sizing: border-box;
}

/* Keep reCAPTCHA inside form */
.recaptcha-group iframe {
    max-width: 100%;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .recaptcha-group {
        width: 100%;
        margin-bottom: 18px;
        overflow: hidden;
    }

    .recaptcha-group .g-recaptcha {
        transform-origin: left top;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .recaptcha-group {
        margin-bottom: 15px;
    }

    .recaptcha-group .g-recaptcha {
        transform: scale(0.90);
        width: 304px;
        max-width: 100%;
    }
}



/*==================================
   CLIENTS SECTION
==================================*/

.ar_clients{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
    padding-bottom:30px;
}

.ar_clients .container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    text-align:center;
}

/* Eyebrow */

.ar_clients-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    margin-bottom:18px;
    border:1px solid #dbe4f3;
    border-radius:50px;
    background:#f8fbff;
    color: #005AAB;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.ar_dot-green{
    width:8px;
    height:8px;
    background:#22c55e;
    border-radius:50%;
}

/* Heading */

.ar_clients-title{
    font-size:35px;
    font-weight:700;
    line-height:1.2;
    color:#111827;
    margin:0 0 18px;
}

/* Subtitle */

.ar_clients-subtitle{
    max-width:1200px;
    margin:0 auto 45px;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}

/*==================================
   MARQUEE
==================================*/

.ar_clients-marquee{
    overflow:hidden;
    margin:20px 0;
    position:relative;
}

.ar_clients-row{
    display:flex;
    gap:25px;
    width:max-content;
    animation:clientScroll 35s linear infinite;
}

.ar_clients-row-reverse{
    animation-direction:reverse;
}

.ar_clients-row img{
    width:170px;
    height:85px;
    object-fit:contain;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:18px;
    box-shadow:0 6px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.ar_clients-row img:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,.12);
}

/* ==========================
   CLIENTS SECTION
========================== */

.clients{
    padding: 50px 0 20px;   /* Reduce top & bottom spacing */
}

.clients h2{
    margin-bottom: 12px;
}

.clients .csub{
    margin-bottom: 30px;     /* Reduce gap below paragraph */
    line-height: 1.7;
}

/* ==========================
   LOGO MARQUEE
========================== */

.marquee{
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 15px;
}

/* ===========================
   CLIENT LOGO MARQUEE
=========================== */

.marquee{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
}

.mrow{
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.mrow:hover{
    animation-play-state: paused;
}

.logo-cell{
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center
    transition: .3s;
}

.logo-cell:hover{
    xtransform: translateY(-5px);
    xbox-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.logo-cell img{
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.boost img{
    max-width: 160px;
}

@keyframes marquee-scroll{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}

/* Animation */

@keyframes clientScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}



/*==================================
   PSG SECTION
==================================*/

.ar_psg-section{
    padding:80px 0;
    background:#f8fafc;
}

.ar_psg-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:35px 40px;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* Logo */

.ar_psg-logo{
    flex:0 0 160px;
}

.ar_psg-logo img{
    width:100%;
    max-width:150px;
    height:auto;
    display:block;
}

/* Content */

.ar_psg-content{
    flex:1;
}

.ar_psg-title{
    margin:0 0 15px;
    font-size:30px;
    font-weight:700;
    line-height:1.3;
    color:#111827;
}

.ar_psg-description{
    margin:0;
    font-size:16px;
    line-height:1.8;
    color:#64748b;
}

.ar_psg-description strong{
    color:#2563eb;
    font-weight:700;
}

/* Button */

.ar_psg-action{
    flex:0 0 auto;
}

.ar_btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:8px; border-color: #FFF; color: #FFF;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
    background: #ffff;
    color: #005AAB;
}

.ar_btn-dark{
    background:#111827;
    color:#fff;
}

.ar_btn-dark:hover{
    background:#2563eb;
    color:#fff;
}

@media (max-width: 767px) {

    .ar_psg-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ar_psg-content {
        order: 1;
    }

    .ar_psg-action {
        order: 2;
    }

    .ar_psg-logo {
        order: 3;
    }
    .logo-cell{width: 125px;}
}





/* ====================================
   ABOUT WEBGAPP
==================================== */

.ar_about-section {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
}

/* Main two-column layout */
.ar_about-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}


/* ====================================
   LEFT IMAGE
==================================== */

.ar_about-image {
    position: relative;
    width: 100%;
    min-width: 0;
}

.ar_about-frame {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.ar_about-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}


/* ====================================
   FLOATING BADGE
==================================== */

.ar_about-badge {
    position: absolute;
    left: -20px;
    bottom: -20px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: #ffffff;
    padding: 14px 20px;
    border-radius: 14px;

    box-shadow: 0 16px 30px rgba(16, 42, 92, 0.20);

    z-index: 2;
}

.ar_about-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;

    border-radius: 50%;
    background: #005aab;
    color: #ffffff;

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

.ar_about-icon svg {
    width: 24px;
    height: 24px;
}

.ar_about-badge-text {
    display: flex;
    flex-direction: column;
}

.ar_about-badge strong {
    display: block;
    font-size: 16px;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 3px;
}

.ar_about-badge span {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #64748b;
}


/* ====================================
   RIGHT CONTENT
==================================== */

.ar_about-content {
    width: 100%;
    min-width: 0;
}

.ar_section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 18px;

    border: 1px solid #dbeafe;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;
    color: #005aab;

    margin-bottom: 18px;
}

.ar_tag-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.ar_about-title {
    margin: 0 0 22px;

    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;

    color: #0f172a;
    letter-spacing: -0.8px;
}

.ar_about-content p {
    margin: 0 0 18px;

    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
}


/* ====================================
   HIGHLIGHT BOX
==================================== */

.ar_about-highlight {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;
    padding: 17px 20px;

    background: #eff6ff;
    border-left: 4px solid #005aab;
    border-radius: 12px;
}

.ar_about-highlight svg {
    width: 24px;
    height: 24px;

    color: #005aab;
    flex-shrink: 0;
}

.ar_about-highlight span {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #0f172a;
}


/* ====================================
   TABLET
==================================== */

@media (max-width: 991px) {

    .ar_about-section {
        padding: 70px 0;
    }

    .ar_about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ar_about-content {
        text-align: left;
    }

    .ar_about-title {
        font-size: 36px;
    }

    .ar_about-badge {
        left: 20px;
        bottom: -20px;
    }
}


/* ====================================
   MOBILE
==================================== */

@media (max-width: 576px) {

    .ar_about-section {
        padding: 60px 0;
    }

    .ar_about-grid {
        gap: 40px;
    }

    .ar_about-title {
        font-size: 30px;
        letter-spacing: -0.4px;
    }

    .ar_about-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .ar_about-badge {
        position: relative;
        left: 0;
        bottom: 0;

        width: 100%;
        margin-top: 18px;

        padding: 12px 15px;
    }

    .ar_about-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .ar_about-badge strong {
        font-size: 14px;
    }

    .ar_about-badge span {
        font-size: 13px;
    }

    .ar_about-highlight {
        align-items: flex-start;
        padding: 15px;
    }

    .ar_about-highlight span {
        font-size: 14px;
    }
}
/* ==========================================
   WHY CHOOSE WEBGAPP
========================================== */

.ar_why-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 96px 0;
    background: #f1f2f6;
    box-sizing: border-box;
}

/* Content remains centered */
.ar_why-section .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    background: transparent;
}


/* ==========================================
   HEADER
========================================== */

.ar_why-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    margin-bottom: 55px;
}

.ar_why-title {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    letter-spacing: -1px;
}

.ar_why-subtitle {
    margin: 0;
    max-width: 470px;
    font-size: 18px;
    line-height: 1.8;
    color: #667085;
}


/* ==========================================
   GRID
========================================== */

.ar_why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 60px;
    row-gap: 0;
}


/* ==========================================
   ITEM
========================================== */

.ar_why-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 28px 0;
    border-top: 1px solid #dbe4f0;
}

.ar_why-content {
    min-width: 0;
}

.ar_trust-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005aab;
    font-size: 20px;
    margin-top: 2px;
}

.ar_why-content h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
}

.ar_why-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: #667085;
}


/* ==========================================
   DESKTOP FULL-WIDTH BACKGROUND FIX
========================================== */

html,
body {
    margin: 0;
    padding: 0;
}

.ar_why-section {
    position: relative;
    left: 0;
    right: 0;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .ar_why-section {
        padding: 70px 0;
    }

    .ar_why-header {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 35px;
    }

    .ar_why-title {
        font-size: 42px;
    }

    .ar_why-subtitle {
        max-width: 100%;
    }

    .ar_why-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .ar_why-section {
        padding: 60px 0;
    }

    .ar_why-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ar_why-title {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .ar_why-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }

    .ar_why-item {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 12px;
        padding: 22px 0;
    }

    .ar_why-content h3 {
        font-size: 18px;
    }

    .ar_why-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/*=========================================
  WHAT'S NEW SECTION
=========================================*/

.ar_new-section{
    width:100%;
    padding:90px 0 100px;
    background:linear-gradient(135deg,#10182d 0%,#172d55 100%);
}

.ar_new-section .container{
    max-width:1180px;
    margin:0 auto;
    padding:0 20px;
}

/*=========================================
Header
=========================================*/

.ar_new-header{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:90px;
    align-items:center;
    margin-bottom:55px;
}

.ar_new-badge{
    display:inline-flex;
    align-items:center;
    gap:14px;
    color:#7cb0ff;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.ar_new-badge:before{
    content:"";
    width:30px;
    height:2px;
    background:#2f80ff;
    display:block;
}

.ar_new-title{
    margin:0;
    font-size:46px;
    font-weight:600;
    line-height:1.08;
    color:#fff;
    letter-spacing:-1px;
}

.ar_new-subtitle{
    margin:0;
    font-size:17px;
    line-height:1.8;
    color:#a8b4c8;
}

/*=========================================
Cards
=========================================*/

.ar_new-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.ar_new-card{
    background:#1b2439;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:26px;
    transition:.35s ease;
    min-height:330px;
}

.ar_new-card:hover{
    transform:translateY(-8px);
    border-color:#2f80ff;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.ar_new-icon{
    width:46px;
    height:46px;
    border-radius:12px;
    background:#1e3d72;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.ar_new-icon i{
    font-size:20px;
    color:#8ec2ff;
}

.ar_new-card h3{
    margin:0 0 14px;
    font-size:19px;
    font-weight:700;
    line-height:1.4;
    color:#ffffff;
}

.ar_new-card p{
    margin:0;
    font-size:16px;
    line-height:1.9;
    color:#aab4c5;
}

.ar_service-price{
    margin-top:12px;
    font-size:13px;
    font-weight:600;
    color: #005AAB;
    line-height:1.6;
}
/*=========================================
Feature Card
=========================================*/

.ar_new-feature{
    grid-column:span 3;
    display:flex;
    align-items:center;
    gap:25px;
    min-height:auto;
}

/*=========================================
icon
=========================================*/
.ar_service-icon{
    width:44px;
    height:44px;
    background:rgba(26,126,251,.16);
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
}

.ar_service-icon i{
    font-size:18px;
    color:#2563eb;
}

/*=========================================
Tablet
=========================================*/

@media(max-width:991px){

.ar_new-header{
    grid-template-columns:1fr;
    gap:30px;
}

.ar_new-title{
    font-size:44px;
}

.ar_new-grid{
    grid-template-columns:repeat(2,1fr);
}

.ar_new-feature{
    grid-column:span 2;
}

}

/*=========================================
Mobile
=========================================*/

@media(max-width:767px){

.ar_new-section{
    padding:60px 0;
}

.ar_new-title{
    font-size:34px;
}

.ar_new-subtitle{
    font-size:16px;
}

.ar_new-grid{
    grid-template-columns:1fr;
}

.ar_new-card{
    min-height:auto;
    padding:22px;
}

.ar_new-feature{
    grid-column:span 1;
    flex-direction:column;
    text-align:center;
}

}

/* ==========================================
   CHOOSE YOUR GOAL
========================================== */

.ar_goal-section {
    width: 100%;
    padding: 85px 0 75px;
    background-color: #ffffff;

    /* Subtle dotted background like reference */
    background-image: radial-gradient(
        #dbeafe 0.8px,
        transparent 0.8px
    );
    background-size: 24px 24px;
}


/* Container */

.ar_goal-section .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ==========================================
   HEADER
========================================== */

.ar_goal-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}


/* Small blue label */

.ar_goal-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #005AAB;
}


/* Small horizontal line */

.ar_goal-line {
    width: 30px;
    height: 2px;
    background: #1268df;
    display: inline-block;
}


/* Main Heading */

.ar_goal-title {
    margin: 0 0 16px;

    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: -0.8px;
    color: #111827;
}


/* Description */

.ar_goal-subtitle {
    max-width: 650px;
    margin: 0 auto;

    font-size: 18px;
    line-height: 1.7;

    color: #71809a;
}


/* ==========================================
   CARD GRID
========================================== */

.ar_goal-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* ==========================================
   CARD
========================================== */

.ar_goal-card {
    background: #ffffff;

    border: 1px solid #dce5f1;
    border-radius: 22px;

    padding: 30px;

    

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Hover */

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

    border-color: #c9d8ec;

    box-shadow:
        0 14px 35px rgba(15, 23, 42, 0.08);
}


/* ==========================================
   ICON
========================================== */

.why-check {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}


/* ==========================================
   CARD TITLE
========================================== */
.ar_goal-card h3 {
    font-size: 22px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 500;
}


/* ==========================================
   CARD DESCRIPTION
========================================== */

.ar_goal-card p {
    margin: 0 0 17px;

    font-size: 15.5px;
    line-height: 1.65;

    color: #71809a;
}


/* ==========================================
   BUTTON
========================================== */

.ar_goal-btn {
    display: inline-flex;
    align-items: center;

    align-self: flex-start;

    margin-top: auto;

    padding: 11px 21px;

    border: 1px solid #dce5f1;
    border-radius: 30px;

    background: #ffffff;

    color: #182033;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* Button Hover */

.ar_goal-btn:hover {
    background: #1268df;
    border-color: #1268df;
    color: #ffffff;

    transform: translateY(-2px);
}




/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .ar_goal-section {
        padding: 70px 0 65px;
    }

    .ar_goal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .ar_goal-title {
        font-size: 32px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .ar_goal-section {
        padding: 60px 0;
        background-size: 20px 20px;
    }

    .ar_goal-header {
        margin-bottom: 32px;
    }

    .ar_goal-title {
        font-size: 29px;
        line-height: 1.25;
    }

    .ar_goal-subtitle {
        font-size: 16px;
        line-height: 1.65;
    }

    .ar_goal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ar_goal-card {
        min-height: auto;
        padding: 25px;
        border-radius: 18px;
    }

    .ar_goal-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 17px;
        font-size: 22px;
    }

    .ar_goal-card h3 {
        font-size: 18px;
    }

    .ar_goal-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .ar_goal-btn {
        font-size: 14px;
        padding: 10px 18px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .ar_goal-section {
        padding: 50px 0;
    }

    .ar_goal-section .container {
        padding: 0 15px;
    }

    .ar_goal-title {
        font-size: 26px;
    }

    .ar_goal-subtitle {
        font-size: 15px;
    }

    .ar_goal-card {
        padding: 22px;
    }

    .ar_goal-bottom {
        font-size: 14px;
    }

}

/* ==========================================
   WHAT MATTERS TO OUR CLIENTS
========================================== */

/* =========================================================
   WEB DESIGN PROCESS
========================================================= */

.ar_process-section {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 90px 0 100px;

    background:
        linear-gradient(
            rgba(3, 18, 43, 0.88),
            rgba(2, 15, 35, 0.94)
        ),
        url("../assets/img/webgapp-process-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;
}


/* =========================================================
   BACKGROUND OVERLAY
========================================================= */

.ar_process-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(55, 145, 255, 0.16),
            transparent 35%
        ),
        radial-gradient(
            circle at 20% 75%,
            rgba(0, 100, 255, 0.10),
            transparent 35%
        );

    pointer-events: none;
}
/* ==========================================
   BACKGROUND IMAGE
========================================== */

.ar_stats-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.ar_stats-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Dark overlay */
.ar_stats-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(5, 20, 45, 0.68);
}

/* Main section must be relative */
.ar_stats-panel {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    background: #071a33;
}

/* Content stays above background */
.ar_stats-inner {
    position: relative;
    z-index: 2;
}

/* =========================================================
   CONTAINER
========================================================= */

.ar_process-container {
    position: relative;
    z-index: 2;

    max-width: 1240px;
    margin: 0 auto;

    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   HEADER
========================================================= */

.ar_process-header {
    max-width: 1000px;
    margin: 0 auto 55px;

    text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.ar_process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 18px;

    border: 1px solid rgba(130, 190, 255, 0.35);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.06);

    color: #b7d8ff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* Blue Dot */

.ar_process-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #59a9ff;

    box-shadow:
        0 0 0 5px rgba(89, 169, 255, 0.12),
        0 0 15px rgba(89, 169, 255, 0.7);

    flex-shrink: 0;
}


/* =========================================================
   TITLE
========================================================= */

.ar_process-title {
    margin: 24px 0 15px;

    color: #ffffff;

    font-size: 48px;
    font-weight: 700;

    line-height: 1.15;
    letter-spacing: -1.4px;
}


.ar_process-title em {
    color: #5fa8ff;
    font-style: normal;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.ar_process-description {
    max-width: 850px;

    margin: 0 auto;

    color: #c6d3e5;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   PROCESS GRID
========================================================= */

.ar_process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

    align-items: stretch;
}


/* =========================================================
   PROCESS CARD
========================================================= */

.ar_process-card {
    position: relative;

    min-height: 315px;

    padding: 48px 28px 30px;

    text-align: center;

    border: 1px solid rgba(104, 174, 255, 0.38);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(39, 76, 118, 0.42),
            rgba(10, 30, 57, 0.72)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 45px rgba(0, 0, 0, 0.18);

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

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.ar_process-card:hover {
    transform: translateY(-8px);

    border-color: rgba(91, 171, 255, 0.75);

    background:
        linear-gradient(
            145deg,
            rgba(43, 91, 143, 0.52),
            rgba(10, 32, 63, 0.82)
        );

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(65, 150, 255, 0.10);
}


/* =========================================================
   NUMBER CIRCLE
========================================================= */

.ar_process-number {
    position: absolute;

    top: -25px;
    left: 50%;

    transform: translateX(-50%);

    width: 54px;
    height: 54px;

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

    border: 1px solid #57b0ff;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #175da9 0%,
            #0a3568 65%,
            #071d3d 100%
        );

    color: #ffffff;

    font-size: 21px;
    font-weight: 700;

    box-shadow:
        0 0 0 7px rgba(55, 150, 255, 0.08),
        0 0 20px rgba(55, 150, 255, 0.55);

    z-index: 3;
}


/* =========================================================
   ICON
========================================================= */

.ar_process-icon {
    width: 54px;
    height: 54px;

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

    margin: 4px auto 18px;

    color: #65adff;

    font-size: 30px;
    font-weight: 500;

    text-shadow:
        0 0 15px rgba(82, 166, 255, 0.6);
}


/* =========================================================
   CARD TITLE
========================================================= */

.ar_process-card h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.35;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.ar_process-card p {
    margin: 0;

    color: #c7d3e3;

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .ar_process-title {
        font-size: 42px;
    }

    .ar_process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ar_process-section {
        padding: 70px 0 80px;
    }

    .ar_process-header {
        margin-bottom: 50px;
    }

    .ar_process-title {
        font-size: 34px;
        line-height: 1.2;
        letter-spacing: -0.7px;
    }

    .ar_process-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .ar_process-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .ar_process-card {
        min-height: auto;

        padding: 48px 25px 30px;
    }
   
    .ar_stats-bg img {
        object-position: center center;
    }

    .ar_stats-panel {
        min-height: 650px;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ar_process-section {
        padding: 60px 0 70px;
    }

    .ar_process-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ar_process-eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;

        padding: 8px 13px;
    }

    .ar_process-title {
        font-size: 29px;
    }

    .ar_process-description {
        font-size: 14px;
    }

    .ar_process-card {
        border-radius: 16px;

        padding: 45px 20px 28px;
    }

    .ar_process-card h3 {
        font-size: 18px;
    }

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

}


















/* ==========================================
   COMMON WEBSITE PROBLEMS WE FIX
========================================== */

.ar_problem-section {
    width: 100%;
    padding: 80px 0 85px;
    background: #f2f2f2;
}


/* ==========================================
   CONTAINER
========================================== */

.ar_problem-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ==========================================
   HEADER
========================================== */

.ar_problem-header {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}


.ar_problem-label {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #005AAB;
}


.ar_problem-header h2 {
    margin: 0 0 12px;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;

    color: #0f172a;
}


.ar_problem-header p {
    max-width: 700px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.7;

    color: #64748b;
}


/* ==========================================
   MAIN OVERALL PANEL
========================================== */

.ar_problem-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    background: #fff7f7;

    border: 1px solid #ffd5d5;
    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(15, 23, 42, 0.05);
}


/* ==========================================
   PROBLEM ITEM
========================================== */

.ar_problem-item {
    position: relative;

    padding: 25px 30px;

    min-height: 105px;

    display: flex;
    align-items: center;

    background: rgba(255, 255, 255, 0.45);

    transition:
        background 0.3s ease,
        padding-left 0.3s ease;
}


/* Vertical divider */

.ar_problem-item:nth-child(odd) {
    border-right: 1px solid #ffdada;
}


/* Horizontal dividers */

.ar_problem-item:nth-child(n + 3) {
    border-top: 1px solid #ffdada;
}


/* Hover */

.ar_problem-item:hover {
    background: #fff1f1;
    padding-left: 34px;
}


/* ==========================================
   TEXT
========================================== */

.ar_problem-item p {
    margin: 0;

    font-size: 15px;
    line-height: 1.65;

    color: #334155;
}


.ar_problem-item strong {
    font-weight: 700;
    color: #0f172a;
}


/* ==========================================
   SMALL RED ACCENT
========================================== */

.ar_problem-item::before {
    content: "";

    width: 4px;
    height: 34px;

    position: absolute;
    left: 0;
    top: 50%;

    transform: translateY(-50%);

    background: #ef4444;

    border-radius: 0 4px 4px 0;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .ar_problem-section {
        padding: 70px 0;
    }

    .ar_problem-header {
        margin-bottom: 35px;
    }

    .ar_problem-header h2 {
        font-size: 28px;
    }

    .ar_problem-item {
        padding: 23px 25px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .ar_problem-section {
        padding: 60px 0;
    }

    .ar_problem-container {
        padding: 0 15px;
    }

    .ar_problem-header {
        margin-bottom: 30px;
    }

    .ar_problem-label {
        font-size: 11px;
        letter-spacing: 1.6px;
    }

    .ar_problem-header h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .ar_problem-header p {
        font-size: 15px;
        line-height: 1.65;
    }


    /* Single column on mobile */

    .ar_problem-panel {
        grid-template-columns: 1fr;

        border-radius: 16px;
    }


    .ar_problem-item {
        min-height: auto;

        padding: 22px 23px;
    }


    .ar_problem-item:nth-child(odd) {
        border-right: none;
    }


    .ar_problem-item:nth-child(n + 2) {
        border-top: 1px solid #ffdada;
    }


    .ar_problem-item p {
        font-size: 15px;
        line-height: 1.6;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .ar_problem-section {
        padding: 50px 0;
    }

    .ar_problem-header h2 {
        font-size: 23px;
    }

    .ar_problem-header p {
        font-size: 14px;
    }

    .ar_problem-item {
        padding: 20px;
    }

    .ar_problem-item p {
        font-size: 14px;
    }

}

/* ==========================================
   WEBGAPP BENEFITS
========================================== */

.ar_benefit-section {
    width: 100%;
    padding: 75px 0 80px;
    background: #ffffff;
}


/* ==========================================
   CONTAINER
========================================== */

.ar_benefit-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ==========================================
   HEADING
========================================== */

.ar_benefit-heading {
    position: relative;

    margin-bottom: 35px;

    text-align: center;

    font-size: 18px;
    font-weight: 700;

    color: #005AAB;
}

.ar_benefit-heading::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin: 12px auto 0;

    border-radius: 10px;

    background: #0b5ea8;
}


/* ==========================================
   GRID
========================================== */

.ar_benefit-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* ==========================================
   BENEFIT ITEM
========================================== */

.ar_benefit-item {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 90px;

    padding: 20px 28px;

    background: #f8fbff;

    border: 1px solid #dbe7f3;
    border-radius: 14px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Left accent */

.ar_benefit-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background: #005AAB;
}


/* Hover */

.ar_benefit-item:hover {
    transform: translateY(-4px);

    border-color: #b9cee2;

    box-shadow:
        0 12px 30px rgba(20, 70, 110, 0.09);
}


/* ==========================================
   NUMBER
========================================== */

.ar_benefit-number {
    flex-shrink: 0;

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

    width: 45px;
    height: 45px;

    margin-right: 20px;

    border-radius: 12px;

    background: #eaf3fb;

    border: 1px solid #cfe2f2;

    color: #005AAB;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* ==========================================
   TEXT
========================================== */

.ar_benefit-item p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;

    color: #40566d;
}


.ar_benefit-item strong {
    color: #102a43;
    font-weight: 700;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .ar_benefit-section {
        padding: 65px 0 70px;
    }

    .ar_benefit-grid {
        gap: 15px;
    }

    .ar_benefit-item {
        padding: 18px 20px;
    }

    .ar_benefit-number {
        width: 42px;
        height: 42px;
        margin-right: 16px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .ar_benefit-section {
        padding: 55px 0 60px;
    }

    .ar_benefit-container {
        padding: 0 15px;
    }

    .ar_benefit-heading {
        margin-bottom: 28px;
        font-size: 16px;
    }

    .ar_benefit-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .ar_benefit-item {
        min-height: auto;
        padding: 18px;
    }

    .ar_benefit-number {
        width: 40px;
        height: 40px;
        margin-right: 14px;
    }

    .ar_benefit-item p {
        font-size: 14.5px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .ar_benefit-section {
        padding: 45px 0 50px;
    }

    .ar_benefit-item {
        padding: 16px;
    }

    .ar_benefit-number {
        width: 38px;
        height: 38px;
        margin-right: 12px;
        font-size: 12px;
    }

    .ar_benefit-item p {
        font-size: 14px;
        line-height: 1.5;
    }

}

/* ==========================================
   PRICING SECTION
========================================== */

.section-alt {
    background: #f5f8fc;
    padding: 70px 0;
}

.section-alt .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ==========================================
   SECTION HEADER
========================================== */

.sh {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 42px;
}

.sh-eyebrow {
    margin-bottom: 10px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #1268df;
}

.sh h2 {
    margin: 0 0 12px;

    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;

    color: #0f172a;
}

.sh p {
    margin: 0;

    font-size: 16px;
    line-height: 1.6;

    color: #64748b;
}


/* ==========================================
   PRICING GRID
========================================== */

.pricing-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;

    align-items: stretch;

    padding: 10px 0 15px;

    overflow: visible;
}


/* ==========================================
   PRICE CARD
========================================== */

.price-card {
    position: relative;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;

    width: 100%;

    padding: 30px 24px;

    background: #ffffff;

    border: 1px solid #dbe4ef;
    border-radius: 16px;

    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);

    overflow: visible;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Hover */

.price-card:hover {
    transform: translateY(-4px);

    border-color: #c6d5e8;

    box-shadow:
        0 12px 30px rgba(15, 23, 42, 0.08);
}


/* ==========================================
   FEATURED CARD
========================================== */

.price-card.featured {
    border: 2px solid #005AAB;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(18, 104, 223, 0.08);
}


/* ==========================================
   MOST POPULAR TAG
========================================== */

.featured-tag {
    position: absolute;

    top: -12px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 20;

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

    padding: 6px 18px;

    background: #005AAB;

    color: #ffffff;

    border-radius: 20px;

    font-size: 11px;
    font-weight: 700;

    line-height: 1;
    white-space: nowrap;

    box-shadow:
        0 5px 12px rgba(18, 104, 223, 0.25);
}


/* ==========================================
   PRICE NAME
========================================== */

.price-name {
    margin: 0 0 10px;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;

    color: #0f172a;
}


/* ==========================================
   PRICE DESCRIPTION
========================================== */

.price-desc {
    min-height: 62px;

    margin: 0 0 24px;

    font-size: 13.5px;
    line-height: 1.55;

    color: #334155;
}


/* ==========================================
   PRICE AMOUNT
========================================== */

.price-amount {
    margin: 0 0 5px;

    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;

    color: #005AAB;
}


/* ==========================================
   PRICE NOTE
========================================== */

.price-note {
    margin: 0 0 25px;

    font-size: 12px;
    line-height: 1.5;

    color: #475569;
}


/* ==========================================
   FEATURES
========================================== */

.price-features {
    display: flex;
    flex-direction: column;

    margin: 0 0 25px;
    padding: 0;

    list-style: none;
}


/* Individual feature */

.price-features li {
    position: relative;

    margin: 0;
    padding: 11px 0 11px 27px;

    font-size: 13.5px;
    line-height: 1.5;

    color: #0f172a;

    border-bottom: 1px solid #edf1f5;
}


/* Check */

.price-features li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 10px;

    font-size: 16px;
    font-weight: 700;

    color: #10b981;
}


/* ==========================================
   BUTTON
========================================== */

.price-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    margin-top: auto;

    box-sizing: border-box;

    padding: 12px 20px;

    border: 1px solid #1268df;
    border-radius: 8px;

    background: #1268df;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.price-btn:hover {
    background: #0b56bd;
    border-color: #0b56bd;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ==========================================
   BOTTOM NOTE
========================================== */

.pricing-bottom-note {
    margin: 18px 0 0;

    text-align: center;

    font-size: 13px;
    line-height: 1.6;

    color: #64748b;
}

.pricing-bottom-note a {
    color: #005AAB;
    font-weight: 600;
    text-decoration: none;
}

.pricing-bottom-note a:hover {
    text-decoration: underline;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .section-alt {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .price-card.featured {
        grid-column: span 2;
        max-width: 100%;
    }

}


/* ==========================================
   PRICE SECTION - MOBILE
   ========================================== */

@media (max-width: 767px) {

    .section-alt {
        padding: 50px 0;
        overflow-x: hidden;
    }

    .section-alt .container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    /* Stack all 3 pricing boxes */
    .pricing-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        width: 100% !important;
        padding: 15px 0 20px !important;
        box-sizing: border-box;
    }

    /* Each pricing box */
    .pricing-grid .price-card {
        display: flex;
        flex-direction: column;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        grid-column: auto !important;

        padding: 28px 22px;
        box-sizing: border-box;

        overflow: visible;
    }

    /* Featured / Professional Website */
    .pricing-grid .price-card.featured {
        grid-column: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Most Popular */
    .pricing-grid .featured-tag {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);

        z-index: 20;

        white-space: nowrap;
        max-width: none;

        padding: 6px 16px;
        font-size: 10px;
    }

    /* Prevent text from becoming too narrow */
    .pricing-grid .price-name,
    .pricing-grid .price-desc,
    .pricing-grid .price-amount,
    .pricing-grid .price-note,
    .pricing-grid .price-features {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .pricing-grid .price-desc,
    .pricing-grid .price-features li {
        overflow-wrap: break-word;
        word-break: normal;
    }

    .pricing-grid .price-amount {
        font-size: 32px;
    }

    .pricing-grid .price-btn {
        width: 100%;
        box-sizing: border-box;
    }
}


/* ==========================================
   PRICE SECTION - SMALL MOBILE
   ========================================== */

@media (max-width: 480px) {

    .section-alt {
        padding: 45px 0;
    }

    .section-alt .container {
        padding: 0 14px;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding-top: 15px !important;
    }

    .pricing-grid .price-card,
    .pricing-grid .price-card.featured {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        padding: 25px 18px;
        box-sizing: border-box;
    }

    .pricing-grid .price-name {
        font-size: 18px;
    }

    .pricing-grid .price-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .pricing-grid .price-amount {
        font-size: 30px;
    }

    .pricing-grid .price-features li {
        font-size: 13px;
    }

    .pricing-grid .featured-tag {
        top: -11px;
        padding: 6px 14px;
        font-size: 10px;
    }
}


/* =========================================================
   TAMIL NADU CITY SECTION
========================================================= */

.tn-city-section {
    padding: 85px 0;
    background: #f2f2f3;
    overflow: hidden;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.tn-city-header {
    max-width: 1050px;
    margin: 0 auto 45px;
    text-align: center;
}

.tn-city-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 14px;

    color: #005AAB;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.tn-city-eyebrow span {
    width: 30px;
    height: 2px;
    background: #1769e0;
    position: relative;
}

.tn-city-eyebrow span:first-child::before,
.tn-city-eyebrow span:last-child::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    top: 50%;
    border-radius: 50%;
    background: #1769e0;
    transform: translateY(-50%);
}

.tn-city-eyebrow span:first-child::before {
    left: -1px;
}

.tn-city-eyebrow span:last-child::after {
    right: -1px;
}


.tn-city-header h2 {
    margin: 0 0 14px;

    color: #10234b;

    font-size: 44px;
    font-weight: 750;
    line-height: 1.15;
    letter-spacing: -1.2px;
}


.tn-city-header p {
    max-width: 900px;
    margin: 0 auto;

    color: #5a6b88;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   MAIN CITY BOX
========================================================= */

.tn-city-main {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 25px;

    padding: 30px;

    border: 1px solid #d7e4fa;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.92);

    box-shadow:
        0 12px 35px rgba(31, 73, 125, 0.08),
        inset 0 1px 0 rgba(255,255,255,.9);
}


/* =========================================================
   INTRO
========================================================= */

.tn-city-intro {
    padding: 8px 12px 20px 4px;
}

.tn-city-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    margin-bottom: 20px;

    border-radius: 10px;

    background: #edf4ff;
    color: #005AAB;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: .4px;
}


.tn-city-intro h3 {
    margin: 0 0 16px;

    color: #102b62;

    font-size: 25px;
    line-height: 1.35;
}


.tn-city-intro p {
    margin: 0;

    color: #586b8a;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   CITY GRID
========================================================= */

.tn-cities-grid {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================================
   CITY CARD
========================================================= */

.tn-city-card {
    min-width: 0;

    border: 1px solid #e1eafa;
    border-radius: 15px;

    background: #ffffff;

    box-shadow: 0 6px 18px rgba(32, 73, 125, 0.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.tn-city-card:hover {
    transform: translateY(-5px);

    border-color: #bcd4fa;

    box-shadow:
        0 12px 28px rgba(32, 91, 170, 0.13);
}


.tn-city-card a {
    display: flex;
    flex-direction: column;
    align-items: center;

    height: 100%;

    padding: 16px 10px 14px;

    text-decoration: none;
}


/* =========================================================
   CITY IMAGE
========================================================= */

.tn-city-image {
    width: 100%;
    height: 125px;

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

    margin-bottom: 8px;

    overflow: hidden;
}


.tn-city-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    transition: transform .3s ease;
}


.tn-city-card:hover .tn-city-image img {
    transform: scale(1.05);
}


/* =========================================================
   CITY NAME
========================================================= */

.tn-city-name {
    margin-top: auto;

    color: #102b62;

    font-size: 16px;
    font-weight: 750;
    line-height: 1.3;

    text-align: center;
}


.tn-city-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 9px;
    padding: 6px 13px;

    border-radius: 50px;

    background: #edf4ff;
    color: #005AAB;

    font-size: 12px;
    font-weight: 650;

    white-space: nowrap;
}


/* =========================================================
   SERVICES BOX
========================================================= */

.tn-services-box {
    margin-top: 20px;

    padding: 24px 25px;

    border: 1px solid #cdebdc;
    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #f4fffa 0%,
            #f8fffc 55%,
            #f1fbf7 100%
        );

    box-shadow: 0 8px 25px rgba(25, 125, 82, 0.05);
}


.tn-services-box h4 {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0 0 22px;

    color: #123362;

    font-size: 21px;
    font-weight: 750;
}


.tn-services-icon {
    width: 40px;
    height: 40px;

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

    flex-shrink: 0;

    border-radius: 50%;

    background: #dff7ea;
    color: #15945b;

    font-size: 21px;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.tn-services-grid {
    display: grid;

    grid-template-columns: repeat(9, minmax(0, 1fr));

    gap: 10px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.tn-service {
    min-height: 130px;

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

    padding: 15px 9px;

    border: 1px solid #cfe9dc;
    border-radius: 13px;

    background: #ffffff;

    text-align: center;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.tn-service:hover {
    transform: translateY(-4px);

    border-color: #8ed4b1;

    box-shadow: 0 9px 20px rgba(21, 148, 91, 0.1);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.tn-service-icon {
    width: 55px;
    height: 55px;

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

    margin-bottom: 10px;

    border-radius: 50%;

    background: #e9f8f0;

    color: #15945b;

    font-size: 25px;
    font-weight: 700;
}


.tn-service span {
    color: #102b62;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .tn-city-main {
        grid-template-columns: 280px 1fr;
    }

    .tn-cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tn-services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tn-city-section {
        padding: 65px 0;
    }

    .tn-city-header h2 {
        font-size: 36px;
    }

    .tn-city-main {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .tn-city-intro {
        padding: 0;
        max-width: 700px;
    }

    .tn-cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tn-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tn-city-section {
        padding: 50px 0;
    }

    .tn-city-header {
        margin-bottom: 30px;
    }

    .tn-city-header h2 {
        font-size: 30px;
        letter-spacing: -.5px;
    }

    .tn-city-header p {
        font-size: 15px;
    }

    .tn-city-eyebrow {
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .tn-city-main {
        padding: 18px;
        border-radius: 16px;
    }

    .tn-city-intro h3 {
        font-size: 22px;
    }

    .tn-cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tn-city-image {
        height: 105px;
    }

    .tn-city-name {
        font-size: 15px;
    }

    .tn-services-box {
        padding: 20px 15px;
        border-radius: 16px;
    }

    .tn-services-box h4 {
        font-size: 18px;
    }

    .tn-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .tn-service {
        min-height: 120px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tn-city-header h2 {
        font-size: 27px;
    }

    .tn-city-main {
        padding: 14px;
    }

    .tn-cities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .tn-city-card a {
        padding: 10px 7px;
    }

    .tn-city-image {
        height: 85px;
    }

    .tn-city-tag {
        padding: 5px 9px;
        font-size: 11px;
    }

    .tn-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tn-service {
        min-height: 110px;
        padding: 12px 7px;
    }

    .tn-service-icon {
        width: 45px;
        height: 45px;
        font-size: 21px;
    }

    .tn-service span {
        font-size: 12px;
    }
}

/* =========================================
   RESET
========================================= */

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


/* =========================================
   BODY
========================================= */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f7fb;
    color: #082f59;
}


/* =========================================
   MAIN SECTION
========================================= */

.industries-section {
    width: 100%;
    padding: 75px 20px;
    background: #f3f7fb;
}


/* =========================================
   CONTAINER
========================================= */

.industries-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    text-align: center;
    margin-bottom: 42px;
}


/* Small heading */

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 15px;

    color: #005AAB;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}


/* Green lines around heading */

.section-eyebrow::before,
.section-eyebrow::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    background: #20b574;

    border-radius: 10px;
}


/* Main heading */

.section-heading h2 {
    margin: 0 auto 15px;

    max-width: 850px;

    color: #082f59;

    font-size: 34px;
    line-height: 1.25;

    font-weight: 700;
}


/* Description */

.section-heading p {
    max-width: 720px;

    margin: 0 auto;

    color: #536b82;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   MAIN INDUSTRIES BOX
========================================= */

.industries-box {
    width: 100%;

    background: #ffffff;

    border: 1px solid #dce6ef;

    border-radius: 20px;

    padding: 12px 30px;

    box-shadow:
        0 18px 50px rgba(23, 59, 92, 0.08),
        0 4px 12px rgba(23, 59, 92, 0.03);

    overflow: hidden;
}


/* =========================================
   INDUSTRY GRID
========================================= */

.industry-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    width: 100%;
}


/* =========================================
   INDUSTRY ITEM
========================================= */

.industry-item {
    min-height: 70px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 15px 20px;

    color: #073765;

    font-size: 14px;
    font-weight: 500;

    border-bottom: 1px solid #e7edf3;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}


/* Vertical dividing lines */

.industry-item:not(:nth-child(4n)) {
    border-right: 1px solid #e7edf3;
}


/* Remove bottom border from final row */

.industry-item:nth-last-child(-n + 4) {
    border-bottom: none;
}


/* =========================================
   ICON
========================================= */

.industry-icon {
    width: 36px;
    height: 36px;

    min-width: 36px;

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

    background: #eef7f4;

    border-radius: 10px;

    font-size: 17px;

    line-height: 1;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}


/* =========================================
   HOVER
========================================= */

.industry-item:hover {
    background: #f7fbfd;

    color: #0068b5;
}


.industry-item:hover .industry-icon {
    background: #dff4ec;

    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .industries-section {
        padding: 65px 20px;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reset desktop borders */

    .industry-item {
        border-right: none !important;
        border-bottom: 1px solid #e7edf3 !important;
    }

    /* Vertical line between columns */

    .industry-item:nth-child(odd) {
        border-right: 1px solid #e7edf3 !important;
    }

    /* Remove bottom border from last two */

    .industry-item:nth-last-child(-n + 2) {
        border-bottom: none !important;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .industries-section {
        padding: 50px 15px;
    }


    /* Heading */

    .section-heading {
        margin-bottom: 30px;
    }

    .section-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .section-eyebrow::before,
    .section-eyebrow::after {
        width: 20px;
    }

    .section-heading h2 {
        font-size: 27px;
        line-height: 1.3;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* Main box */

    .industries-box {
        padding: 8px 15px;

        border-radius: 16px;
    }


    /* One column */

    .industry-grid {
        grid-template-columns: 1fr;
    }


    /* Items */

    .industry-item {
        min-height: 62px;

        padding: 13px 10px;

        border-right: none !important;

        border-bottom: 1px solid #e7edf3 !important;
    }


    /* Last item */

    .industry-item:last-child {
        border-bottom: none !important;
    }


    /* Icons */

    .industry-icon {
        width: 34px;
        height: 34px;

        min-width: 34px;

        font-size: 16px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .industries-section {
        padding: 40px 12px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .industries-box {
        padding-left: 10px;
        padding-right: 10px;
    }

    .industry-item {
        padding-left: 8px;
        padding-right: 8px;

        font-size: 13px;
    }
}

/* =========================================
   REVIEWS SECTION
========================================= */

.reviews-section {
    width: 100%;
    padding: 80px 20px;

    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.95),
            transparent 38%
        ),
        #f3f7fb;
}


/* =========================================
   CONTAINER
========================================= */

.reviews-section .container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.reviews-section .sh {
    text-align: center;
    margin-bottom: 42px;
}


/* Eyebrow */

.reviews-section .sh-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 15px;

    color: #005AAB;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}


/* Lines */

.reviews-section .sh-eyebrow::before,
.reviews-section .sh-eyebrow::after {
    content: "";

    width: 30px;
    height: 2px;

    background: #20b574;

    border-radius: 20px;
}


/* Main heading */

.reviews-section .sh h2 {
    max-width: 850px;

    margin: 0 auto 15px;

    color: #082f59;

    font-size: 34px;
    line-height: 1.25;

    font-weight: 700;
}


/* Description */

.reviews-section .sh p {
    max-width: 760px;

    margin: 0 auto;

    color: #536b82;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   RATING HERO
========================================= */

.rating-hero {
    display: flex;
    align-items: center;

    gap: 45px;

    width: 100%;

    padding: 38px 45px;

    margin-bottom: 28px;

    background: #082f59;

    border: 1px solid #123f6d;

    border-radius: 22px;

    box-shadow:
        0 20px 45px rgba(8, 47, 89, 0.14);

    position: relative;

    overflow: hidden;
}


/* Decorative glow */

.rating-hero::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -150px;
    right: -60px;

    background: rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}


/* Second decorative glow */

.rating-hero::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -120px;
    left: 25%;

    background: rgba(32, 181, 116, 0.08);

    border-radius: 50%;
}


/* =========================================
   BIG RATING
========================================= */

.rating-score {
    min-width: 155px;

    text-align: center;

    position: relative;
    z-index: 2;
}


.rating-big {
    color: #ffffff;

    font-size: 72px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -3px;
}


.rating-out-of {
    margin-top: 8px;

    color: #a9bdd1;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;
}


/* =========================================
   RATING DETAILS
========================================= */

.rating-details {
    position: relative;
    z-index: 2;

    padding-left: 42px;

    border-left: 1px solid rgba(255, 255, 255, 0.15);
}


.rating-stars-lg {
    color: #fbbf24;

    font-size: 25px;

    letter-spacing: 4px;

    line-height: 1;

    margin-bottom: 12px;
}


.rating-based {
    color: #e2e8f0;

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 6px;
}


.rating-count {
    color: #9fb4c9;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   RATING TOPICS
========================================= */

.rating-topics {
    display: flex;
    flex-wrap: wrap;

    gap: 9px 10px;

    margin-top: 20px;
}


/*
   No individual cards.
   Simple clean text separators.
*/

.rating-topic {
    position: relative;

    color: #d7e4ef;

    font-size: 13px;
    font-weight: 500;

    padding-right: 12px;
}


.rating-topic:not(:last-child)::after {
    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    right: 2px;
    top: 50%;

    transform: translateY(-50%);

    background: #20b574;

    border-radius: 50%;
}


/* =========================================
   REVIEWS GRID
========================================= */

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    width: 100%;
}


/* =========================================
   REVIEW CARD
========================================= */

.review-card {
    display: flex;
    flex-direction: column;

    min-height: 310px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #dce6ef;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(20, 55, 85, 0.05);

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


/* Hover */

.review-card:hover {
    transform: translateY(-4px);

    border-color: #c8dbe9;

    box-shadow:
        0 18px 38px rgba(20, 55, 85, 0.10);
}


/* =========================================
   REVIEW STARS
========================================= */

.review-stars {
    color: #f5b82e;

    font-size: 18px;

    letter-spacing: 3px;

    margin-bottom: 18px;
}


/* =========================================
   REVIEW TEXT
========================================= */

.review-text {
    color: #40566c;

    font-size: 14px;

    line-height: 1.8;

    flex: 1;
}


/* =========================================
   REVIEW AUTHOR
========================================= */

.review-author {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding-top: 18px;

    border-top: 1px solid #edf1f5;
}


/* =========================================
   AVATAR
========================================= */

.review-avatar {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

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

    border-radius: 50%;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.5px;
}


/* Avatar colors */

.review-avatar-blue {
    background: #0ea5e9;
}

.review-avatar-green {
    background: #10b981;
}

.review-avatar-purple {
    background: #8b5cf6;
}


/* =========================================
   AUTHOR DETAILS
========================================= */

.review-name {
    color: #082f59;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 4px;
}


.review-role {
    color: #718399;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================
   GOOGLE LINK
========================================= */

.google-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    margin: 30px auto 0;

    padding: 12px 22px;

    color: #005AAB;

    background: #ffffff;

    border: 1px solid #dce6ef;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    box-shadow:
        0 5px 15px rgba(20, 55, 85, 0.05);

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.google-link:hover {
    background: #075aa6;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(7, 90, 166, 0.18);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .reviews-section {
        padding: 65px 20px;
    }


    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .review-card:last-child {
        grid-column: 1 / -1;
    }


    .rating-hero {
        gap: 30px;

        padding: 35px;
    }


    .rating-details {
        padding-left: 30px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .reviews-section {
        padding: 55px 15px;
    }

    .reviews-section .sh {
        margin-bottom: 30px;
    }

    .reviews-section .sh-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .reviews-section .sh-eyebrow::before,
    .reviews-section .sh-eyebrow::after {
        width: 20px;
    }

    .reviews-section .sh h2 {
        font-size: 27px;
        line-height: 1.3;
    }

    .reviews-section .sh p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Rating */
    .rating-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        padding: 32px 22px;
        border-radius: 18px;
    }

    .rating-score {
        min-width: auto;
    }

    .rating-big {
        font-size: 62px;
    }

    .rating-details {
        width: 100%;
        padding-left: 0;
        padding-top: 25px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .rating-topics {
        justify-content: center;
        gap: 8px;
    }

    /* Reviews - MOBILE */
    .reviews-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
        width: 100%;
    }

    .review-card {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        grid-column: auto !important;
    }

    .review-card:last-child {
        grid-column: auto !important;
    }

    /* Google link */
    .google-link {
        width: 100%;
        text-align: center;
        padding: 13px 16px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .reviews-section {
        padding: 45px 12px;
    }


    .reviews-section .sh h2 {
        font-size: 24px;
    }


    .rating-hero {
        padding: 28px 18px;
    }


    .rating-big {
        font-size: 56px;
    }


    .rating-stars-lg {
        font-size: 21px;
    }


    .review-card {
        padding: 21px;
    }

}

/* ==========================================
   FAQ SECTION
========================================== */

.section--air {
    padding: 90px 0;
    background: #e7eefb;
}

.section--air .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ==========================================
   SECTION HEADER
========================================== */

.section-head--quiet {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-head--quiet .kick {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 16px;
    border: 1px solid #d6e5f5;
    border-radius: 30px;
    background: #ffffff;
    color: #005AAB;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.section-head--quiet h2 {
    margin: 0 0 14px;
    color: #092b4c;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-head--quiet p {
    max-width: 680px;
    margin: 0 auto;
    color: #63758a;
    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================
   FAQ WRAPPER
========================================== */

.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 8px;
    border: 1px solid #dce6f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(18, 54, 88, 0.08);
}


/* ==========================================
   FAQ ITEM
========================================== */

.q {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #e7edf3;
    background: #ffffff;
}

.q:last-child {
    border-bottom: 0;
}


/* ==========================================
   QUESTION
========================================== */

.q-head {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    width: 100%;
    padding: 22px 24px;

    cursor: pointer;

    list-style: none;

    color: #102f4d;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.5;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}


/* Remove default browser arrow */

.q-head::-webkit-details-marker {
    display: none;
}

.q-head::marker {
    display: none;
    content: "";
}


/* Hover */

.q-head:hover {
    color: #006dcc;
    background: #f8fbff;
}


/* ==========================================
   PLUS ICON
========================================== */

.plus {
    flex: 0 0 auto;

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

    width: 34px;
    height: 34px;

    border: 1px solid #d5e2ef;
    border-radius: 50%;

    background: #f5f9fd;
    color: #005AA;

    font-size: 22px;
    font-weight: 400;
    line-height: 1;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


/* ==========================================
   OPEN FAQ
========================================== */

.q[open] .q-head {
    color: #006dcc;
    background: #f8fbff;
}

.q[open] .plus {
    transform: rotate(45deg);
    border-color: #0875d1;
    background: #0875d1;
    color: #ffffff;
}


/* ==========================================
   ANSWER
========================================== */

.q-body {
    max-width: 820px;
    padding: 0 75px 24px 24px;

    color: #60758b;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}


/* ==========================================
   SUBTLE OPEN EFFECT
========================================== */

.q[open] {
    background: #fbfdff;
}

.q[open] .q-body {
    animation: faqOpen 0.25s ease;
}

@keyframes faqOpen {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================
   REVEAL
========================================== */

.reveal {
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

/* =========================
   FAQ EYEBROW
========================= */

.sh-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;

    margin-bottom: 14px;
    padding-left: 44px;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    color: #005AAB;
}

/* Blue line before FAQ */
.sh-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    width: 30px;
    height: 2px;

    background: #0066b3;

    transform: translateY(-50%);
}

/* Optional spacing/alignment for the heading */
.sh {
    text-align: center;
}

.sh h2 {
    margin: 0 0 12px;
}

.sh > p {
    margin: 0 auto;
    max-width: 700px;
}
/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .section--air {
        padding: 70px 0;
    }

    .section-head--quiet h2 {
        font-size: 36px;
    }

    .faq-wrap {
        border-radius: 18px;
    }

    .q-head {
        padding: 20px;
    }

    .q-body {
        padding: 0 65px 22px 20px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .section--air {
        padding: 55px 0;
    }

    .section--air .container {
        padding: 0 15px;
    }

    .section-head--quiet {
        margin-bottom: 30px;
    }

    .section-head--quiet .kick {
        font-size: 10px;
        letter-spacing: 1.4px;
        padding: 6px 13px;
    }

    .section-head--quiet h2 {
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .section-head--quiet p {
        font-size: 14px;
        line-height: 1.65;
    }

    .faq-wrap {
        padding: 4px;
        border-radius: 16px;
    }

    .q-head {
        gap: 15px;
        padding: 18px 16px;
        font-size: 15px;
        line-height: 1.45;
    }

    .plus {
        width: 31px;
        height: 31px;
        font-size: 20px;
    }

    .q-body {
        padding: 0 50px 20px 16px;
        font-size: 14px;
        line-height: 1.7;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .section--air {
        padding: 45px 0;
    }

    .section-head--quiet h2 {
        font-size: 27px;
    }

    .q-head {
        padding: 16px 13px;
        font-size: 14px;
    }

    .plus {
        width: 29px;
        height: 29px;
        font-size: 19px;
    }

    .q-body {
        padding: 0 42px 18px 13px;
        font-size: 13.5px;
    }

}





/* ==========================================
   CTA SECTION
========================================== */

#contact.section {
    padding: 80px 20px;
    background: #f3f7fc;
}

#contact .container {
    max-width: 1150px;
    margin: 0 auto;
}


/* ==========================================
   CTA BOX
========================================== */

.cta-box {
    position: relative;
    overflow: hidden;
    padding: 65px 70px;
    text-align: center;

    background: linear-gradient(135deg, #0b2948, #123f68);
    border-radius: 24px;

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

    box-shadow:
        0 20px 50px rgba(10, 40, 70, 0.18);
}


/* Decorative background effect */

.cta-box::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -180px;
    right: -100px;

    background: rgba(79, 168, 255, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    bottom: -180px;
    left: -100px;

    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;

    pointer-events: none;
}


/* ==========================================
   CTA HEADING
========================================== */

.cta-box h2 {
    position: relative;
    z-index: 1;

    margin: 0 0 15px;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;

    color: #ffffff;
}


/* ==========================================
   CTA DESCRIPTION
========================================== */

.cta-box > p {
    position: relative;
    z-index: 1;

    max-width: 850px;
    margin: 0 auto 35px;

    font-size: 16px;
    line-height: 1.7;

    color: #c8d8e9;
}


/* ==========================================
   CONTACT GRID
========================================== */

.quote-cta-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;

    max-width: 850px;
    margin: 0 auto 30px;
}


/* ==========================================
   CONTACT CARD
========================================== */

.cta-contact {
    padding: 22px 25px;

    text-align: left;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;

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

    transition: all 0.3s ease;
}

.cta-contact:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(120, 190, 255, 0.4);
    transform: translateY(-3px);
}


/* ==========================================
   CONTACT LABEL
========================================== */

.cta-contact-label {
    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    color: #72b7ff;
}


/* ==========================================
   CONTACT VALUE
========================================== */

.cta-contact-val {
    font-size: 15px;
    line-height: 1.7;

    color: #ffffff;
}


/* ==========================================
   CTA BUTTON
========================================== */

.cta-btn {
    position: relative;
    z-index: 1;

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

    min-height: 52px;
    padding: 0 30px;

    border-radius: 10px;

    background: #0876d1;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 8px 22px rgba(0, 118, 210, 0.28);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.cta-btn:hover {
    background: #0969b8;
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 12px 28px rgba(0, 118, 210, 0.38);
}


/* ==========================================
   CTA NOTE
========================================== */

.cta-note {
    position: relative;
    z-index: 1;

    margin-top: 20px;

    font-size: 13px;
    line-height: 1.6;

    color: #a9bfd5;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #contact.section {
        padding: 65px 20px;
    }

    .cta-box {
        padding: 55px 40px;
    }

    .cta-box h2 {
        font-size: 34px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #contact.section {
        padding: 50px 15px;
    }

    .cta-box {
        padding: 45px 22px;
        border-radius: 18px;
    }

    .cta-box h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .cta-box > p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 28px;
    }

    .quote-cta-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 25px;
    }

    .cta-contact {
        padding: 20px;
    }

    .cta-btn {
        width: 100%;
        padding: 0 20px;
        font-size: 14px;
    }

    .cta-note {
        font-size: 12px;
    }

}


/* ==========================================
SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    #contact.section {
        padding: 40px 12px;
    }

    .cta-box {
        padding: 38px 18px;
        border-radius: 16px;
    }

    .cta-box h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .cta-box > p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Keep Call box wider than Visit Us */
    .quote-cta-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cta-contact:first-child {
        min-height: 135px;
        padding: 16px 12px;
    }

    .cta-contact:last-child {
        min-height: 160px;
        padding: 16px 9px;
    }

    .cta-contact-label {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .cta-contact-val {
        font-size: 10px;
        line-height: 1.65;
    }

    .cta-btn {
        min-height: 46px;
        font-size: 12.5px;
        padding: 0 12px;
    }

    .cta-note {
        font-size: 11px;
    }
}





@media (max-width: 900px) {
    .ar_hero-flex { flex-direction: column; text-align: center; }
    .ar_hero-left { text-align: center; }
    .ar_hero-right { width: 100%; max-width: 100%; }
    .ar_hero-stats { grid-template-columns: repeat(2, 1fr); }
}
