*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior: smooth;
}
body{
    font-family:"Jost",sans-serif;
}
.container{
    width:92%;
    max-width:1250px;
    margin:auto;
}

/* ================= TOP BAR ================= */
.top-bar{
    background:#000;
    color:#fff;
    font-size:17px;
}
.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:6px 0;
}
.top-bar .left{
    display:flex;
    gap:25px;
}
.top-bar .left span{
    display:flex;
    align-items:center;
    gap:8px;
}
.top-bar .right{
    display:flex;
    gap:12px;
}
.top-bar .right a{
    width:34px;
    height:34px;
    border:1px solid #777;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
    text-decoration: auto;
}
.top-bar .right a:hover{
    background:#d18b00;
    border-color:#d18b00;
}
@media (max-width: 767px){
    .top-bar{
        display: none;
    }
}
/* ================= HEADER ================= */
.header{
    background:#ffffff;
    transition:.3s;
}
.header.sticky{
    position:fixed;
    top:0;
    width:100%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    z-index:999;
}
.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}
.logo img{
    height:65px;
}

/* ================= NAV ================= */
.nav{
    display:flex;
    gap:30px;
    list-style:none;
}
.nav li{
    position:relative;
}
.nav a{
    text-decoration:none;
    color:#000;
    font-weight:500;
}

/* ================= BUTTON ================= */
.btn{
    background:#d18b00;
    color:#fff;
    padding:12px 26px;
    border-radius:30px;
    text-decoration:none;
}

/* ================= MEGA MENU ================= */
/* PARENT */
.mega-parent {
    position: relative;
}

/* FIXED POSITIONING */
.mega-menu {
    position: absolute;
    left: 333%;
    transform: translateX(-50%);
    top: 100%;
    width: 973px;
    background: #f5f5fb;
    padding: 10px 40px;
    border-radius: 20px;
    border: 8px solid #ffffff;
    display: none;
    z-index: 999;
}

/* IMPORTANT: create hover bridge */
.mega-parent:hover .mega-menu {
    display: block;
}
/* REMOVE DEFAULT LINK STYLE */
.mega-column a {
    text-decoration: none;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* HEADING LINKS */
.mega-column h4 a {
    display: inline-block;
    color: #0036aa;
}

/* HOVER */
.mega-column ul li a:hover {
    color: #0036aa;
}

/* CONTAINER */
.mega-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* COLUMN */
.mega-column {
    width: 33%;
}

/* HEADINGS */
.mega-column h4 {
    font-size: 18px;
    color: #0036aa;
    margin-bottom: 15px;
    font-weight: 600;
}

/* SPACE BETWEEN GROUPS */
.mega-column h4.mt {
    margin-top: 25px;
}

/* LIST */
.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* LIST ITEM */
.mega-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

/* ICON */
.mega-column ul li i {
    width: 26px;
    height: 26px;
    background: #e3e6ff;
    border-radius: 50%;

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

    font-size: 12px;
    color: #4b5cff;
}

/* HOVER EFFECT */
.mega-column ul li:hover {
    color: #0036aa;
    transform: translateX(5px);
}

/* OPTIONAL SHADOW */
.mega-menu {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= MOBILE ================= */
.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}
/* =========================
   TABLET
========================= */

@media (max-width: 1024px){

    .header .container{
        padding: 15px 20px;
        position: relative;
    }

    .logo img{
        height: 55px;
    }

    /* MOBILE NAV */
    .nav{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 85vh;
        overflow-y: auto;

        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;

        padding: 20px;
        display: none;

        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        z-index: 999;
    }

    .nav.active{
        display: flex;
    }

    .nav li{
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
    }

    .nav li:last-child{
        border-bottom: none;
    }

    .nav a{
        display: flex;
        justify-content: space-between;
        align-items: center;

        width: 100%;
        padding: 14px 0;
        font-size: 15px;
    }

    /* HAMBURGER */
    .menu-toggle{
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        cursor: pointer;
        color: #000;
        z-index: 1000;
    }

    /* HIDE DESKTOP BUTTON */
    .btn{
        display: none;
    }

    /* MEGA MENU */
    .mega-menu{
        position: static;
        transform: none;
        left: auto;
        top: auto;

        width: 100%;
        padding: 20px;
        margin-top: 10px;

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

        display: none;
        box-sizing: border-box;
    }

    .mega-parent.active .mega-menu{
        display: block;
    }

    .mega-container{
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .mega-column{
        width: 100%;
    }

    .mega-column h4{
        font-size: 17px;
        margin-bottom: 12px;
    }

    .mega-column ul li{
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .mega-column ul li i{
        min-width: 24px;
        min-height: 24px;
    }
}


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

@media (max-width: 768px){

    .header .container{
        padding: 14px 16px;
    }

    .logo img{
        height: 48px;
    }

    .menu-toggle{
        font-size: 22px;
    }

    .nav{
        padding: 15px;
    }

    .nav a{
        font-size: 14px;
        padding: 13px 0;
    }

    .mega-menu{
        padding: 15px;
        border-radius: 12px;
    }

    .mega-column h4{
        font-size: 16px;
    }

    .mega-column ul li{
        font-size: 13px;
        gap: 8px;
    }

    .mega-column ul li i{
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
}
.site-footer {
    background: #ffffff;
    color: #000000;
    padding: 56px 0 0 0;
    font-size: 1.05rem;
    margin-top: 0;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px 32px 32px;
    gap: 48px;
}
.footer-col {
    flex: 1 1 0;
    min-width: 180px;
    margin-right: 24px;
}
.footer-logo-col {
    min-width: 260px;
    margin-right: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo {
  width: 186px;
  margin-top: -29px;
  margin-bottom: 30px;
}
.footer-company {
    margin-bottom: 18px;
    line-height: 1.6;
}
.footer-title {
    font-weight: 700;
    font-size: 1.18rem;
    margin-bottom: 12px;
    border-bottom: 1px solid #2361a9;
    padding-bottom: 6px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-links li i {
  margin-right: 10px;
  min-width: 20px; /* optional: helps align all icons neatly */
  font-size: 16px;
}
.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ffc638;
}
.footer-contact {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 1.01rem;
}
.footer-social {
    margin-top: 10px;
    display: flex;
    gap: 18px;
}
.footer-social a {
    color: #0036aa;
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
    color: #ffc638;
    transform: scale(1.15);
}
.footer-bottom {
    text-align: center;
    padding: 18px 0 12px 0;
    background: #0036aa;
    color: #fff;
    font-size: 1.01rem;
    border-top: 1px solid #2361a9;
    margin-top: 0;
}
.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: #ffc638;
}
@media (max-width: 1000px) {
    .footer-main {
        flex-direction: column;
        gap: 18px;
        padding: 0 12px 18px 12px;
    }
    .footer-col, .footer-logo-col {
        margin-right: 0;
        min-width: 0;
        align-items: flex-start;
    }
    .footer-logo-col {
        margin-bottom: 18px;
    }
}
/* =========================
   HERO BANNER
========================= */

.arccs-hero-banner{
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 8%;
    color: #fff;
}

/* OVERLAY */
.arccs-hero-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* VIDEO */
.arccs-hero-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* CONTENT */
.arccs-hero-content{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
}

.arccs-hero-content h1{
    font-size: 62px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

.arccs-highlight{
    color: #d69200;
    display: block;
    margin-bottom: 10px;
}

.arccs-hero-content p{
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: 0.3px;
    max-width: 850px;
    color: #fff;
}

/* BUTTONS */
.arccs-hero-buttons{
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.arccs-btn{
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.arccs-btn-primary{
    background: #d69200;
    color: #fff;
}

.arccs-btn-primary:hover{
    background: #b57c00;
}

.arccs-btn-secondary{
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.arccs-btn-secondary:hover{
    background: #fff;
    color: #000;
}

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

@media (max-width: 1024px){

    .arccs-hero-banner{
        padding: 120px 40px 80px;
        min-height: auto;
    }

    .arccs-hero-content h1{
        font-size: 46px;
    }

    .arccs-hero-content p{
        font-size: 16px;
        line-height: 1.8;
        max-width: 100%;
    }
}

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

@media (max-width: 768px){

    .arccs-hero-banner{
        padding: 120px 20px 80px;
        text-align: center;
        justify-content: center;
    }

    .arccs-hero-content{
        max-width: 100%;
    }

    .arccs-hero-content h1{
        font-size: 32px;
        line-height: 1.35;
    }

    .arccs-highlight{
        margin-bottom: 14px;
    }

    .arccs-hero-content p{
        font-size: 14px;
        line-height: 1.8;
        margin-top: 18px;
    }

    .arccs-hero-buttons{
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .arccs-btn{
        width: 100%;
        max-width: 240px;
    }
}

/* ANNOUNCEMENT BAR */
.announcement {
    width: 100%;
    background: #C78401;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

/* MOVING TEXT */
.announcement-track {
    display: inline-flex;
    gap: 80px;
    padding: 12px 0;
    animation: scrollText 25s linear infinite;
}

.announcement-track span {
    font-size: 26px;
    font-weight: 700;
    text-transform: none;
    line-height: 1.3em;
    color: #FFFFFF;
}

/* ANIMATION */
@keyframes scrollText {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@media (max-width: 768px) {
    .announcement-track span {
        font-size: 14px;
    }

    .announcement-track {
        gap: 40px;
        animation-duration: 12s;
    }
}
.clients-section {
    background: #f7f7f7;
    padding: 80px 20px;
    text-align: center;
}
.container {
    max-width: 1300px;
    margin: auto;
}
.clients-container {
    max-width: 1200px;
    margin: auto;
}

/* Title */
.title {
    font-size: 45px;
    font-weight: 400;
    color: #111;
    line-height: 1.1em;
}

.title span {
    display: block;
    color: #0036AA;
    font-weight: 800;
    line-height: 1.1em;
}

/* Subtitle */
.subtitle {
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #000000;
    font-size: 18px;
}

/* Slider */
.logo-slider {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-track {
    display: flex;
    width: 200%;
    animation: slideLogos 10s infinite;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.slide img {
    width: auto;
    max-width: 1200px;   /* match your design width */
    height: auto;
    display: block;
}

/* Animation */
@keyframes slideLogos {
    0%   { transform: translateX(0); }
    45%  { transform: translateX(0); }

    50%  { transform: translateX(-100%); }
    95%  { transform: translateX(-100%); }

    100% { transform: translateX(0); }
}

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

@media (max-width: 1024px){

    .clients-section{
        padding: 70px 30px;
    }

    .title{
        font-size: 38px;
        line-height: 1.3;
    }

    .subtitle{
        font-size: 16px;
        line-height: 1.7;
        max-width: 100%;
    }

    .logo-slider{
        margin-top: 45px;
    }

    .slide img{
        max-width: 100%;
    }
}

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

@media (max-width: 768px){

    .clients-section{
        padding: 60px 20px;
    }

    .title{
        font-size: 28px;
        line-height: 1.35;
    }

    .title span{
        margin-top: 10px;
    }

    .subtitle{
        font-size: 14px;
        line-height: 1.8;
        margin-top: 18px;
    }

    .logo-slider{
        margin-top: 35px;
    }

    .logo-track{
        animation: slideLogos 10s infinite ease-in-out;
    }

    .slide{
        padding: 0;
    }

    .slide img{
        width: 100%;
        max-width: 100%;
    }
}

.growth-section {
    position: relative;
    background: url("../images/Arccs_Bg_image.webp") center/cover no-repeat fixed;
    padding: 100px 40px;
    color: #fff;
}

.growth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

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

    display: flex;
    width: 100%;
    max-width: 1300px;

    margin: auto;
    gap: 50px;

    box-sizing: border-box;
}

/* LEFT */
.growth-left {
    width: 55%;
}

.growth-left h1 {
    font-size: 43px;
    line-height: 1.3;
}

.growth-left span {
    color: #f6a500;
}

.growth-left strong {
    display: block;
    color: #f6a500;
    margin-top: 10px;
}

.growth-left p {
    margin: 25px 0;
    color: #ddd;
    line-height: 1.6;
    font-size: 18px;
}

.growth-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.growth-btn:hover {
    background: #fff;
    color: #000;
}

/* RIGHT GRID */
.growth-right {
    width: 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CARDS */
.g-card {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.g-card.dark {
    background: rgba(255,255,255,0.1);
}

.g-card.yellow {
    background: #f6a500;
    color: #fff;
}

.g-card.light {
    background: #fff;
    color: #000;
}

/* COUNTER FIX */
.g-card h2 {
    font-size: 48px;
    font-weight: 700;
}

.counter-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.plus {
    font-size: 40px;
    font-weight: 700;
}

/* STARS */
.stars {
    color: #f6a500;
    font-size: 18px;
}

/* LOGOS */
.brand-logo {
    width: 120px;
    margin-top: 10px;
}

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

@media(max-width: 1024px){

    .growth-section{
        padding: 80px 24px;
        background-attachment: scroll;
        overflow: hidden;
    }

    .growth-container{
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
        width: 100%;
    }

    .growth-left,
    .growth-right{
        width: 100%;
        max-width: 100%;
    }

    .growth-left h1{
        font-size: 38px;
        line-height: 1.3;
        word-break: break-word;
    }

    .growth-left p{
        font-size: 16px;
        line-height: 1.8;
    }

    .growth-right{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .g-card{
        width: 100%;
        max-width: 100%;
        padding: 28px 18px;
        box-sizing: border-box;
    }

    .g-card h2{
        font-size: 42px;
    }

    .brand-logo{
        max-width: 100px;
        width: 100%;
    }
}

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

@media(max-width: 768px){

    .growth-section{
        padding: 70px 20px;
    }

    .growth-container{
        gap: 35px;
    }

    .growth-left{
        text-align: center;
    }

    .growth-left h1{
        font-size: 30px;
        line-height: 1.4;
    }

    .growth-left p{
        font-size: 14px;
        line-height: 1.9;
        margin: 22px 0;
    }

    .growth-btn{
        width: 100%;
        max-width: 280px;
    }

    .growth-right{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .g-card{
        padding: 28px 20px;
        border-radius: 16px;
    }

    .g-card h2{
        font-size: 40px;
    }

    .plus{
        font-size: 34px;
    }

    .stars{
        font-size: 16px;
    }

    .brand-logo{
        width: 100px;
    }
}
.who-we-help {
    padding: 80px 0;
}

.who-we-help-container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* LEFT SIDE */

.left-content {
    width: 45%;
}

.left-content h2 {
    font-size: 43px;
    font-weight: 400;
    color: #000;
    padding-bottom: 18px;
    border-bottom: 1px solid #bdbdbd;
    margin-bottom: 50px;
    line-height: 1.1;
}

.left-content h2 span {
    color: #0036AA;
    font-weight: 700;
}

.video-box {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.video-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* RIGHT SIDE */

.right-content {
    width: 55%;
}

.top-boxes {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
}

.info-box {
    flex: 1;
}

.info-box h3,
.bottom-box h3 {
    font-size: 23px;
    font-weight: bold;
    color: #000;
    padding-bottom: 16px;
    border-bottom: 1px solid #cfcfcf;
    margin-bottom: 28px;
}

.info-box h4,
.bottom-box h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #000;
}

.info-box p,
.bottom-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #222;
    font-weight: 400;
}

.bottom-box {
    width: 100%;
}

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

@media (max-width: 1024px) {
    .who-we-help-container {
        flex-direction: column;
        gap: 50px;
    }

    .left-content,
    .right-content {
        width: 100%;
    }

    .top-boxes {
        gap: 30px;
    }

    .left-content h2 {
        font-size: 52px;
    }
}

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

@media (max-width: 767px) {
    .who-we-help {
        padding: 60px 0;
    }

    .who-we-help-container {
        width: 92%;
        gap: 40px;
    }

    .left-content h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .top-boxes {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }

    .info-box h3,
    .bottom-box h3 {
        font-size: 24px;
    }

    .info-box h4,
    .bottom-box h4 {
        font-size: 20px;
    }

    .info-box p,
    .bottom-box p {
        font-size: 18px;
        line-height: 1.7;
    }
}
/* =========================
   WHAT WE DO SECTION
========================= */

.what-we-do {
    background: #f5f5f5;
    padding: 80px 0;
    font-family: "Jost", sans-serif;
}

.what-we-do-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

/* TITLE */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 43px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-title h2 span {
    color: #0036AA;
    font-weight: 700;
}

.section-title p {
    font-size: 18px;
    color: #333;
    max-width: 950px;
    margin: auto;
    line-height: 1.6;
}

/* SERVICES */

.services-wrapper {
    display: flex;
    gap: 0;
    overflow: hidden;
    background: #fff;
}

.service-card {
    width: 18%;
    background: #fff;
    cursor: pointer;
    transition: all 0.5s ease;
    border-right: 1px solid #eee;
    overflow: hidden;
}

.service-card:last-child {
    border-right: none;
}

.service-card.active {
    width: 46%;
}

.service-content {
    padding: 40px 28px 30px;
}
.service-content a{
    text-decoration: none;
}
.service-content h3 {
    font-size: 23px;
    font-weight: 700;
    color: #0036AA;
    padding-bottom: 15px;
    border-bottom: 1px solid #999;
    margin-bottom: 20px;
    white-space: nowrap;
}

.service-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    display: none;
}

.service-card.active .service-content p {
    display: block;
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* MOBILE */

@media (max-width: 991px) {
    .services-wrapper {
        flex-direction: column;
    }

    .service-card,
    .service-card.active {
        width: 100%;
    }

    .section-title h2 {
        font-size: 44px;
    }

    .section-title p {
        font-size: 18px;
    }

    .service-content h3 {
        font-size: 26px;
        white-space: normal;
    }

    .service-content p {
        display: block;
        font-size: 18px;
    }

    .service-image img {
        height: 260px;
    }
}
/* =========================
   WHY ARCCS DIGITALS SECTION
========================= */

.why-arccs {
    padding: 80px 0;
    font-family: "Jost", sans-serif;
}

.why-arccs-container {
    width: 92%;
    max-width: 1500px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT SIDE */

.why-video {
    width: 52%;
}

.video-thumbnail {
    position: relative;
    width: 100%;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

/* PLAY BUTTON */

.play-btn {
    position: absolute;
    bottom: -61px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: #0036AA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 42px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
    color: #fff;
}

.play-btn:hover {
    transform: translateX(-50%) scale(1.05);
}

/* RIGHT SIDE */

.why-content {
    width: 48%;
}

.why-content h2 {
    font-size: 43px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #000;
    line-height: 1.1;
}

.why-content h2 span {
    color: #0036AA;
    font-weight: 700;
}

.point {
    margin-bottom: 28px;
}

.point h3 {
    font-size: 18px;
    font-weight: 600;
    color: #c88400;
    margin-bottom: 8px;
}

.point p {
    font-size: 15px;
    line-height: 1.7;
    color: #222;
    margin: 0;
}

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

@media (max-width: 1024px) {
    .why-arccs-container {
        flex-direction: column;
        gap: 80px;
    }

    .why-video,
    .why-content {
        width: 100%;
    }

    .why-content h2 {
        font-size: 52px;
    }

    .play-btn {
        width: 130px;
        height: 130px;
        font-size: 36px;
    }
}

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

@media (max-width: 767px) {
    .why-arccs {
        padding: 60px 0;
    }

    .why-arccs-container {
        width: 92%;
        gap: 70px;
    }

    .why-content h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .point h3 {
        font-size: 22px;
    }

    .point p {
        font-size: 17px;
        line-height: 1.6;
    }

    .play-btn {
        width: 100px;
        height: 100px;
        font-size: 28px;
        bottom: -30px;
    }
}
/* SECTION */
.brand-cta-section {
    position: relative;
    padding: 100px 80px;
    color: #fff;
    background: url('../images/cta_banner.webp') no-repeat center/cover;
    background-attachment: fixed;
}

/* Overlay for dark gradient bottom */
.brand-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    z-index: 1;
}

/* CONTAINER */
.brand-cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT CONTENT */
.brand-cta-content {
    max-width: 700px;
}

.brand-cta-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.brand-cta-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #eee;
}

/* BUTTON */
.brand-btn {
    background: #0036AA;
    color: #fff;
    padding: 16px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.brand-btn:hover {
    background: #163bb5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .brand-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-cta-action {
        margin-top: 20px;
    }

    .brand-cta-content h1 {
        font-size: 36px;
    }
}
.outcomes-section {
    background: #f4f4f4;
    padding: 80px 40px;
    text-align: center;
}

.outcomes-container {
    max-width: 1300px;
    margin: auto;
}

/* TITLE */
.outcomes-title {
    font-size: 43px;
    font-weight: 500;
    line-height: 1.3;
    color: #000;
}

.outcomes-title span {
    color: #0036AA;
    font-weight: 700;
}

/* SUBTITLE */
.outcomes-subtitle {
    margin-top: 15px;
    font-size: 18px;
    color: #333;
}

/* GRID */
.outcomes-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

/* CARD */
.outcomes-card {
    position: relative;
    border-radius: 12px;
    overflow: visible; /* IMPORTANT */
}

.outcomes-card img {
    width: 100%;
    border-radius: 12px;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* PLAY BUTTON */
.outcomes-play-btn {
    position: absolute;
    left: 50%;
    bottom: -32px; /* pushes it outside like design */
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #0036AA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
    color: #fff;
}

.outcomes-play-btn:hover {
    transform: translateX(-50%) scale(1.05);
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .outcomes-title {
        font-size: 30px;
    }
}
/* SECTION */
.industries-section {
    background: #123ea8;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.industries-container{
    max-width: 1300px;
    margin: auto;
}
/* TITLE */
.industries-title {
    font-size: 43px;
    font-weight: 700;
}

.industries-title span {
    color: #f59e0b;
}

/* SUBTITLE */
.industries-subtitle {
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.9;
}

/* SLIDER */
.industries-slider {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.industries-track {
    display: flex;
    width: max-content;
    gap: 80px;
    animation: scrollIndustries 80s linear infinite;
}

/* ITEM */
.industry-item {
    min-width: 220px;
    text-align: center;
}

/* ICON */
.icon-box {
    width: 90px;
    height: 90px;
    background: #f7941d;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 36px;
    color: #fff;
}

/* TEXT */
.industry-item p {
    font-size: 18px;
    line-height: 1.4;
}

/* ANIMATION */
@keyframes scrollIndustries {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.our-process {
    padding: 80px 5%;
    background: #f2f2f4;
}

.container {
    max-width: 1600px;
    margin: auto;
}

/* Heading */

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

.section-heading h2 {
    font-size: 43px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    line-height: 1;
}

.section-heading h2 span {
    color: #0b3db8;
    font-weight: 700;
}

.section-heading p {
    font-size: 20px;
    color: #222;
    max-width: 1200px;
    margin: auto;
    line-height: 1.7;
}

/* Grid */

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

/* Card */

.process-card {
    background: #E9E9E9;
    border-radius: 12px;
    padding: 30px;
    min-height: 195px;
    position: relative;
    transition: 0.3s;
}

.process-card:hover {
    background: #0036aa;
    color: #fff;
    transform: translateY(-8px);
}

.process-card:hover p {
    color: #eee;
}
.process-card:hover h3 {
    color: #eee;
}
.process-card .number {
    position: absolute;
    top: 28px;
    right: 30px;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}

.process-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 22px;
    line-height: 1.3;
}

.process-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #111;
    max-width: 90%;
}

/* Tablet */

@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Mobile */

@media (max-width: 768px) {
    .our-process {
        padding: 60px 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

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

    .section-heading p {
        font-size: 16px;
        line-height: 1.6;
    }

    .process-card {
        padding: 30px 24px;
        min-height: auto;
    }

    .process-card h3 {
        font-size: 24px;
    }

    .process-card p {
        font-size: 16px;
        max-width: 100%;
    }

    .process-card .number {
        font-size: 18px;
        top: 22px;
        right: 22px;
    }
}

/* Section */

.brand-contact-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px 6%;
    display: flex;
    align-items: center;

    /* FIXED BACKGROUND IMAGE */
    background: url("../images/Arccs_Bg_image.webp") center center / cover no-repeat fixed;
}

/* Dark Overlay */

.brand-contact-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Container */

.brand-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */

.brand-left {
    color: #fff;
}

.small-logo {
    margin-bottom: 30px;
}

.small-logo img {
    width: 52px;
    height: auto;
}

.brand-left h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 35px;
    max-width: 700px;
}

.brand-left h2 span {
    display: block;
}

.brand-left p {
    font-size: 24px;
    line-height: 1.6;
    max-width: 780px;
    color: rgba(255,255,255,0.95);
}

/* Right Form */

.brand-form form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-grid input,
.brand-form textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #f1f1f1;
    padding: 22px 28px;
    font-size: 16px;
    font-family: "Jost", sans-serif;
    color: #000000;
}

.form-grid input {
    height: 46px;
}

.brand-form textarea {
    height: 180px;
    resize: none;
    margin-bottom: 40px;
    padding-top: 22px;
}

/* Button */

.brand-form button {
    width: 100%;
    height: 43px;
    font-size: 14px;
    background: #c78401;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.brand-form button:hover {
    background: #0036aa;
}

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

@media (max-width: 1200px) {
    .brand-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .brand-left h2 {
        font-size: 54px;
    }

    .brand-left p {
        font-size: 20px;
    }
}

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

@media (max-width: 768px) {
    .brand-contact-section {
        padding: 70px 20px;
        min-height: auto;
        background-attachment: scroll; /* better mobile support */
    }

    .brand-left h2 {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .brand-left p {
        font-size: 17px;
        line-height: 1.7;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-grid input {
        height: 60px;
        font-size: 16px;
        padding: 16px 20px;
    }

    .brand-form textarea {
        height: 150px;
        font-size: 16px;
        padding: 18px 20px;
    }

    .brand-form button {
        height: 62px;
        font-size: 18px;
    }
}


/* Banner Section */
.inner-banner {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Video */
.banner-video {
    position: absolute;
    /* top: 50%; */
    /* left: 50%; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transform: translate(-50%, -50%); */
    z-index: 1;
}

/* Overlay (dark blue effect) */
.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 2;
    background-color: #000000;
}

/* Content */
.banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    color: #fff;
    font-family: "Jost", sans-serif;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.85;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 6px;
}

/* Title */
.banner-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* Tablet */
@media (max-width: 1024px) {
    .inner-banner {
        height: 260px;
    }

    .banner-content h1 {
        font-size: 42px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .inner-banner {
        height: 220px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .inner-banner {
        height: 200px;
    }

    .banner-content h1 {
        font-size: 26px;
    }
}


/* About Us page */
.about-section {
    background: #f5f5f5;
    padding: 80px 20px;
    font-family: "Jost", sans-serif;
}

.about-section-container {
    max-width: 1200px;
    margin: auto;
}

.about-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

.about-left h2 span {
    color: #0036aa;
    font-weight: 700;
}

.about-left p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* RIGHT GRID */
.about-right {
    flex: 1;
    display: flex;
    gap: 20px;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* IMAGE */
.img-box {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* CARD */
.card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
}

.card img.icon {
    width: 40px;
}

.card h3 {
    font-size: 28px;
    margin: 0;
}

.card p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* COLORS */
.about-section-blue {
    background: #0036aa;
    justify-content: center;
}

.about-section-yellow {
    background: #c78401;
    justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-left h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-right {
        flex-direction: column;
    }

    .about-left h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 15px;
    }

    .about-left h2 {
        font-size: 24px;
    }

    .card {
        padding: 15px;
    }

    .card h3 {
        font-size: 22px;
    }
}

.vision-mission {
    background: #f3f1ff;
    padding: 80px 20px;
    font-family: "Jost", sans-serif;
}

.vision-mission-container {
    max-width: 1200px;
    margin: auto;
}

.vm-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT */
.vm-left {
    flex: 1;
}

.vm-left h2 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.vm-left h2 span {
    color: #0036aa;
    font-weight: 700;
    display: block;
}

.divider {
    width: 100%;
    height: 1px;
    background: #ccc;
    margin: 25px 0;
}

.vm-left h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

/* RIGHT */
.vm-right {
    flex: 1;
    display: flex;
    gap: 40px;
}

.vm-box {
    flex: 1;
}

.vm-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.vm-box .line {
    width: 100%;
    height: 1px;
    background: #999;
    margin-bottom: 20px;
}

.vm-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vm-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .vm-wrapper {
        flex-direction: column;
    }

    .vm-left h2 {
        font-size: 36px;
    }

    .vm-left h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .vm-right {
        flex-direction: column;
    }

    .vm-left h2 {
        font-size: 30px;
    }

    .vm-left h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .vision-mission {
        padding: 50px 15px;
    }

    .vm-left h2 {
        font-size: 24px;
    }

    .vm-left h3 {
        font-size: 18px;
    }
}

.why-section {
    background: #f3f4f7;
    padding: 80px 20px;
    text-align: center;
    font-family: "Jost", sans-serif;
}

.why-section-container {
    max-width: 1200px;
    margin: auto;
}

/* TAG */
.tag {
    display: inline-block;
    background: #e6e7ea;
    color: #333;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

/* TITLE */
.why-section-title {
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 50px;
}

.why-section-title span {
    color: #0036aa;
    font-weight: 700;
}

/* CARDS */
.why-section-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* SINGLE CARD */
.why-section-card {
    position: relative;
    background: #e9e9eb;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: left;
    flex: 1;
    transition: 0.3s;
}

/* NUMBER */
.why-section-card .number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    color: #bfbfc4;
    font-weight: 600;
}

/* ICON */
.why-section-card .icon {
    width: 50px;
    margin-bottom: 20px;
}

/* TEXT */
.why-section-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-section-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* HOVER EFFECT */
.why-section-card:hover {
    background: #0036aa;
    color: #fff;
    transform: translateY(-8px);
}

.why-section-card:hover p {
    color: #eee;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .why-section-cards {
        flex-direction: column;
    }

    .why-section-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .why-section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 50px 15px;
    }

    .why-section-card {
        padding: 25px;
    }
}

/* portfolio */
.portfolio {
    padding: 80px 20px;
    background: #f5f5f5;
    text-align: center;
    font-family: "Jost", sans-serif;
}

.portfolio-container {
    max-width: 1200px;
    margin: auto;
}

/* TABS */
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    background: #c78401;
    color: #fff;
    transition: 0.3s;
}

/* ACTIVE TAB */
.tab.active {
    background: #0036aa;
}

/* CONTENT */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fade 0.5s ease;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* IMAGES */
.grid img {
    width: 100%;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}

/* HOVER EFFECT */
.grid img:hover {
    transform: scale(1.05);
}
.animation-video-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    border-radius: 8px;
    overflow: hidden;
}

.animation-video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* ANIMATION */
@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .tab {
        width: 100%;
    }
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 0px;
}

/* Card Box */
.project-card {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  /*border-radius: 20px;*/
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  background: #fff;
  padding: 20px;
}

/* Image */
.image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  transition: transform 6s linear; /* smooth scrolling */
}

/* On Hover → scroll image down */
.project-card:hover .image-container img {
  transform: translateY(-40%); /* adjust this value based on img height */
}

/* Overlay Button */
.project-card-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.5s ease;
 
}
.project-card:hover .project-card-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.view-btn {
   /*background-image: linear-gradient(135deg, #7B1315 0%, #F6BD29 100%);*/
  background: #790011;
  border: none;
  padding: 6px 32px;
  border-radius: 10px;
  font-weight: 400px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  color: #fff;
}

.view-btn:hover {
   
background-image: linear-gradient(135deg, #0b2a49 0%, #0b2a49 100%);
  color: #fff;
}

Contact Us Page
.vsw-contact-wrap {
  background: #f4f4f4;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.vsw-contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  padding: 30px 0;
}

/* LEFT */
.vsw-contact-left {
  background: linear-gradient(135deg, #0036AA, #243447);
  color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  width: 35%;
}

.vsw-contact-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.vsw-contact-title {
  font-size: 32px;
  margin-bottom: 30px;
}

.vsw-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.vsw-icon-box {
  background: #c68600;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.vsw-icon-box i {
  color: #fff;
  font-size: 16px;
}

.vsw-contact-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

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

.vsw-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 15px 0;
}

.vsw-social-icons {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.vsw-social-icons span {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.vsw-social-icons i {
  color: #fff;
  font-size: 14px;
}

/* RIGHT */
.vsw-contact-right {
  width: 65%;
}

.vsw-contact-right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vsw-form-row {
  display: flex;
  gap: 20px;
}

.vsw-form-row input,
.vsw-form-row select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #eee;
  outline: none;
}

.vsw-contact-right textarea {
  width: 100%;
  height: 140px;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #eee;
  resize: none;
}

.vsw-contact-right button {
  background: #c68600;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .vsw-contact-container {
    flex-direction: column;
  }

  .vsw-contact-left,
  .vsw-contact-right {
    width: 100%;
  }

  .vsw-form-row {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .vsw-contact-title {
    font-size: 24px;
  }

  .vsw-contact-left {
    padding: 25px;
  }

  .vsw-contact-right button {
    width: 100%;
  }
}
/* Case Studies */
.case-study-section {
  padding: 80px 20px;
}

/* Grid */
.case-study-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Outer Card */
.case-study-card {
  background: #dcdcdc;
  padding: 50px;
  border-radius: 12px;
}

/* Inner Card */
.card-inner {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Title */
.card-inner h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}

/* Text */
.card-inner p {
  font-size: 20px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Link */
.case-study-link {
  font-size: 17px;
  color: #1a4ed8;
  text-decoration: none;
  font-weight: 500;
}

.case-study-link span {
  margin-left: 8px;
  transition: 0.3s;
}

/* Hover Effect */
.case-study-link:hover span {
  margin-left: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .case-study-container {
    grid-template-columns: 1fr;
  }
}




.hero-section {
  background: #edeaff; /* light grey with slight purple tone */
  padding: 100px 20px;
  text-align: center;
}

/* Content */
.case-study-hero-content {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.case-study-hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Paragraph */
.case-study-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #5f6f63; /* slightly greenish grey tone */
}

/* Responsive */
@media (max-width: 768px) {
  .case-study-hero-content h1 {
    font-size: 36px;
  }

  .case-study-hero-content p {
    font-size: 15px;
  }

  .hero-section {
    padding: 60px 15px;
  }
}

/* Section */
/* Section background */
.video-section {
  background: #edeaff;
  padding: 20px 20px;
}

/* Center container */
.video-wrapper {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Text */
.video-text {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.8;
  color: #6b7d73;
}

/* White card */
.video-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
}

/* Video */
.case-study-video-box {
  max-width: 720px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.case-study-video-box iframe {
  width: 100%;
  height: 400px;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .video-text {
    font-size: 15px;
  }

  .video-card {
    padding: 20px;
  }

  .case-study-video-box iframe {
    height: 220px;
  }

  .video-section {
    padding: 60px 15px;
  }
}

/* Section Background */
.impact-sec {
    background: #edeaff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* Main Box */
.impact-box {
    background: #f3f3f3;
    padding: 40px 50px;
    border-radius: 10px;
    max-width: 1100px;
    width: 100%;
}

/* Header */
.impact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Icon (4 dots) */
.impact-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.impact-icon i {
    position: absolute;
    font-size: 6px;
    color: #4b3df0;
}

/* Positioning dots */
.impact-icon i:nth-child(1) { top: 0; left: 0; }
.impact-icon i:nth-child(2) { top: 0; right: 0; }
.impact-icon i:nth-child(3) { bottom: 0; left: 0; }
.impact-icon i:nth-child(4) { bottom: 0; right: 0; }

/* Title */
.impact-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

/* Text */
.impact-text {
    font-size: 16px;
    color: #555;
    margin: 0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
    .impact-box {
        padding: 30px;
    }

    .impact-header h2 {
        font-size: 24px;
    }

    .impact-text {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .impact-box {
        padding: 20px;
    }

    .impact-header {
        gap: 10px;
    }

    .impact-header h2 {
        font-size: 20px;
    }

    .impact-text {
        font-size: 14px;
    }
}

/* Services pages css */
.anim-service-sec {
    background: #edeaff;
    padding: 80px 20px;
}

.anim-container {
    max-width: 1200px;
    margin: auto;
}

/* Top */
.anim-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.anim-left h2 {
    font-size: 42px;
    margin: 0;
    line-height: 1.2;
}

.anim-left span,
.anim-left strong {
    color: #0036aa;
}

.anim-right p {
    max-width: 420px;
    line-height: 1.6;
    color: #333;
    font-size: 19px;
}

/* Grid */
.anim-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.anim-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 38px;
    text-align: center;
    transition: 0.3s;
}

.anim-card:hover {
    transform: translateY(-6px);
}

/* ICON IMAGE */
.anim-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #eef1ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anim-icon img {
    width: 81px;
    height: 81px;
    object-fit: contain;
}

/* Text */
.anim-card h3 {
    font-size: 25px;
    font-weight: 500;
    line-height: 29px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}
.anim-card:hover h3 {
    color: #0036aa;
}
.anim-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* Button */
.anim-card a {
    display: inline-block;
    background: #C78401;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.anim-card a:hover {
    background: #c78401;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .anim-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .anim-top {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .anim-grid {
        grid-template-columns: 1fr;
    }

    .anim-left h2 {
        font-size: 30px;
    }
}

/* Section */
.scale-sec {
    background: #f4f2ff;
    padding: 80px 20px;
}

/* Container */
.scale-container {
    max-width: 1300px;
    margin: auto;
}

/* Wrapper */
.scale-wrapper {
    background: #efeff4;
    border-radius: 30px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.scale-left {
    flex: 2;
}

.scale-title {
    font-size: 34px;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Stats */
.scale-stats {
    display: flex;
    gap: 50px;
}

/* Item */
.scale-item {
    text-align: center;
}

/* Circle */
.scale-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid #5a5cff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    transition: 0.3s ease;
}

/* Outer faint ring */
.scale-circle::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 1px solid #ddd;
}
.scale-circle:hover {
    transform: scale(1.08);
}
/* Number */
.scale-circle h3 {
    font-size: 30px;
    font-weight: 400;
    margin: 0;
}

/* Arrow */
.scale-circle i {
    color: #5a5cff;
    font-size: 14px;
    margin-top: 5px;
}

/* Text */
.scale-item p {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-top: 23px;
}

/* RIGHT BOX */
.scale-right {
    flex: 1;
    background: #e7e4f7;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Right Content */
.scale-right h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

.scale-right p {
    color: #6b7c6f;
    margin-bottom: 25px;
        font-size: 20px;
}

/* Button */
.scale-btn {
    background: #000;
    color: #fff;
    padding: 14px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    transition: 0.3s;
}

.scale-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .scale-wrapper {
        flex-direction: column;
    }

    .scale-stats {
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .scale-title {
        font-size: 26px;
    }

    .scale-stats {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .scale-circle {
        width: 130px;
        height: 130px;
    }

    .scale-circle::after {
        width: 160px;
        height: 160px;
    }
}

.product-servies {
    background: #ffffff;
    padding: 40px 20px 100px;
    font-family: "Jost", sans-serif;
    text-align: center;
}

.product-servies .product-servies-container {
    max-width: 1200px;
    margin: auto;
}

.product-servies h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f4fbf;
    margin-bottom: 20px;
}

.product-servies .product-servies-subtitle {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.product-servies h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 40px;
}

.product-servies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.product-servies-card {
    background: #e9e9e9;
    padding: 30px 25px;
    border-radius: 12px;
    position: relative;
    text-align: left;
    transition: 0.3s;
}

.product-servies-card p {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.product-servies-card .product-servies-number {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

.product-servies-card:hover {
    background: #d0d0d0;
}

.product-servies-footer-text {
    margin-top: 40px;
    font-size: 17px;
    color: #333;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .product-servies h2 {
        font-size: 28px;
    }

    .product-servies-grid {
        grid-template-columns: 1fr;
    }

    .product-servies-card {
        padding: 20px;
    }

    .product-servies-card p {
        font-size: 16px;
    }
}

/* SECTION */
.why-servies {
    position: relative;
    background: #ffffff;
    padding: 40px 20px 30px;
    font-family: "Jost", sans-serif;
}

/* TOP LINE */
.why-servies::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #b2b2b2;
}

/* PERFECT CENTER CURVE */
.why-servies::after {
    content: "";
    position: absolute;
    top: -49px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 50px;

    border: 1px solid #b2b2b2;
    border-bottom: none;
    border-radius: 200px 200px 0 0;

    background: #ffffff; /* MUST match section */
}

/* CONTAINER */
.why-servies-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID LAYOUT */
.why-servies-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.why-servies-left h2 {
    font-size: 42px;
    font-weight: 500;
    color: #000;
    line-height: 1.2;
}

.why-servies-left h2 span {
    color: #1f4fbf;
    font-weight: 700;
    display: block;
    margin-top: 10px;
}

.why-servies-left p {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    max-width: 450px;
    line-height: 1.6;
}

/* RIGHT SIDE */
.why-servies-right {
    padding-left: 40px;
    border-left: 1px solid #d0d0d0;
}

.why-servies-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-servies-right ul li {
    font-size: 18px;
    margin-bottom: 22px;
    position: relative;
    padding-left: 45px;
}

/* CHECK ICON */
.why-servies-right ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background: #0036aa;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-servies-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-servies-right {
        border-left: none;
        padding-left: 0;
    }

    .why-servies-left h2 {
        font-size: 28px;
    }

    .why-servies-right ul li {
        font-size: 16px;
        padding-left: 40px;
    }

    .why-servies::after {
        width: 200px;
        height: 40px;
        top: -35px;
    }
}

.pa2-section {
    position: relative;
    padding: 50px 20px;
    background: #ffffff; /* TOP WHITE */
    overflow: hidden;
}

/* BOTTOM PURPLE AREA */
.pa2-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%; /* controls where purple starts */
    background: #edeaff;
    z-index: 0;
}

/* MAIN BOX */
.pa2-wrapper {
    max-width: 1300px;
    margin: auto;
    display: flex;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* LEFT */
.pa2-left {
    width: 42%;
    background: #000;
    padding: 60px 40px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}

/* MENU */
.pa2-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.pa2-menu li {
    color: #9a9a9a;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ACTIVE ITEM (IMPORTANT PART) */
.pa2-menu li.active {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: linear-gradient(90deg, #2f6bff, #C78401);
    color: #fff;

    padding: 14px 20px;
    border-radius: 40px;

    width: 115%; /* THIS CREATES OVERFLOW INTO RIGHT */
    z-index: 5;
}

/* ARROW */
.pa2-arrow {
    width: 38px;
    height: 38px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa2-arrow i {
    color: #fff;
    font-size: 14px;
}
/* HIDE arrow by default */
.pa2-menu li .pa2-arrow {
    display: none;
}

/* SHOW arrow ONLY in active tab */
.pa2-menu li.active .pa2-arrow {
    display: flex;
}
/* RIGHT */
.pa2-right {
    position: relative;
    width: 58%;
    min-height: 300px; /* prevent jump */
    background: #e5e5e5;
    padding: 53px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.pa2-right h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pa2-desc {
    font-size: 16px;
    margin-bottom: 25px;
    color: #444;
}

.pa2-content p {
    font-size: 15.5px;
    margin-bottom: 15px;
    line-height: 1.7;
}
/* HIDE ALL TABS */
/* TAB BASE */
.pa2-tab {
    opacity: 0;
    transform: translateY(10px); /* slide from bottom */
    pointer-events: none;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ACTIVE TAB */
.pa2-tab.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
    z-index: 2;
}
/* EXITING TAB (fade out) */
.pa2-tab.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    z-index: 1;
}

/* CLICK CURSOR */
.pa2-menu li {
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER EFFECT */
.pa2-menu li:hover {
    color: #fff;
}
/* =========================
   TABLET
========================= */

@media (max-width: 1024px){

    .pa2-section{
        padding: 70px 24px;
    }

    .pa2-wrapper{
        flex-direction: column;
        border-radius: 30px;
    }

    .pa2-left,
    .pa2-right{
        width: 100%;
    }

    .pa2-left{
        padding: 40px 25px;
    }

    .pa2-right{
        padding: 45px 30px;
        min-height: auto;
    }

    .pa2-right h2{
        font-size: 32px;
    }

    .pa2-menu li{
        font-size: 16px;
        margin-bottom: 18px;
    }

    .pa2-menu li.active{
        width: 100%;
        padding: 15px 18px;
    }

    .pa2-content p{
        font-size: 15px;
    }
}

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

@media (max-width: 768px){

    .pa2-section{
        padding: 55px 16px;
    }

    .pa2-section::after{
        height: 70%;
    }

    .pa2-wrapper{
        border-radius: 22px;
    }

    .pa2-left{
        padding: 30px 18px;
    }

    .pa2-right{
        padding: 35px 22px;
    }

    .pa2-right h2{
        font-size: 26px;
        line-height: 1.4;
    }

    .pa2-desc{
        font-size: 14px;
        line-height: 1.8;
    }

    .pa2-content p{
        font-size: 14px;
        line-height: 1.8;
    }

    .pa2-menu li{
        font-size: 14px;
        line-height: 1.6;

        padding-right: 8px;
    }

    .pa2-menu li.active{
        padding: 14px 16px;
        border-radius: 18px;
    }

    .pa2-arrow{
        width: 32px;
        height: 32px;
    }

    .pa2-arrow i{
        font-size: 11px;
    }
}

/* SECTION */
.pas-section {
    background: #edeaff;
    padding: 20px 20px 40px;
    text-align: center;
}

/* CONTAINER */
.pas-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.pas-title {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #000;
}

.pas-title span {
    color: #0036aa;
    font-weight: 800;
}

/* SUBTITLE */
.pas-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 50px;
}

/* GRID */
.pas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.pas-card {
    background: #ffffff;
    padding: 35px 32px;
    border-radius: 20px;
    transition: 0.3s ease;
}

/* CARD TITLE */
.pas-card h3 {
    font-size: 25px;
    font-weight: 500;
    line-height: 29px;
    color: #000000;
    margin-bottom: 15px;
}

/* CARD TEXT */
.pas-card p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}

/* HOVER (subtle like reference) */
.pas-card:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pas-title {
        font-size: 28px;
    }

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

/* SECTION */
.indus-section {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

/* CONTAINER */
.indus-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.indus-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.indus-title span {
    color: #0036aa;
}

/* SUBTITLE */
.indus-subtitle {
    font-size: 17px;
    color: #444;
    margin-bottom: 60px;
}

/* GRID */
.indus-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

/* ITEM */
.indus-item {
    width: 18%;
    min-width: 180px;
}

/* ICON CIRCLE */
.indus-icon {
    width: 130px;
    height: 130px;
    border: 2px solid #C78401;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: transparent;
}

/* ICON IMAGE */
.indus-icon img {
    width: 118px;
    height: auto;
}

/* TEXT */
.indus-item h4 {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .indus-grid {
        justify-content: center;
    }

    .indus-item {
        width: 30%;
    }
}

@media (max-width: 576px) {
    .indus-title {
        font-size: 28px;
    }

    .indus-item {
        width: 100%;
    }
}

/* Staffing Solutions */
/* SECTION */
.payroll-section {
    background: #f4f4f4;
    padding: 40px 0;
    overflow: hidden;
}

.payroll-section-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/* HEADING */
.payroll-heading {
    text-align: center;
    margin-bottom: 70px;
}

.payroll-heading {
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #000;
}

.payroll-heading span {
    color: #0036aa;
    font-weight: 800;
}
/* WRAPPER */
.payroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* IMAGE */
.payroll-image {
    width: 68%;
    border-radius: 30px;
    overflow: hidden;
}

.payroll-image img {
    width: 100%;
    display: block;
    border-radius: 30px;
    object-fit: cover;
}

/* CONTENT BOX */
.payroll-content {
    position: absolute;
    right: 0;
    width: 42%;
    background: #ffffff;
    padding: 55px 40px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.payroll-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

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

    .payroll-wrapper {
        flex-direction: column;
    }

    .payroll-image {
        width: 100%;
    }

    .payroll-content {
        position: relative;
        width: 100%;
        margin-top: -60px;
    }

    .payroll-heading h2 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {

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

    .payroll-heading h2 {
        font-size: 30px;
    }

    .payroll-content {
        padding: 35px 25px;
    }

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

.staffing-services {
    padding: 30px 0;
    background: #f5f7fb;
}

.staffing-services-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/* LAYOUT */
.staffing-services .staffing-services-container {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    align-items: flex-start;
}

/* LEFT SIDE */
.services-left {
    width: 35%;
    position: sticky;
    top: 141px;
}

.small-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #C78401;
    margin-bottom: 20px;
}

.services-left h2 {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 700;
    color: #0036AA;
    margin-bottom: 25px;
}

.services-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

/* RIGHT SIDE */
.services-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* CARD */
.service-staffing-card {
    background: #fff;
    padding: 35px 40px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: 0.4s ease;
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}

.service-staffing-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #0036AA;
    transition: 0.4s ease;
}

.service-staffing-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.service-staffing-card:hover::before {
    background: #C78401;
}

.service-staffing-card span {
    min-width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(0, 54, 170, 0.08);
    color: #0036AA;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-staffing-card h3 {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

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

    .staffing-services .staffing-services-container {
        flex-direction: column;
        gap: 40px;
    }

    .services-left,
    .services-right {
        width: 100%;
    }

    .services-left {
        position: relative;
        top: 0;
    }

    .services-left h2 {
        font-size: 40px;
    }

    .services-right {
        gap: 18px;
    }

    .service-staffing-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {

    .staffing-services {
        padding: 50px 0;
    }

    .staffing-services-container {
        width: 92%;
    }

    .small-title {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .services-left h2 {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .services-left p {
        font-size: 15px;
        line-height: 1.7;
    }

    .service-staffing-card {
        padding: 22px 20px;
        gap: 16px;
        border-radius: 18px;
        align-items: center;
    }

    .service-staffing-card span {
        min-width: 55px;
        height: 55px;
        font-size: 18px;
    }

    .service-staffing-card h3 {
        font-size: 18px;
        line-height: 1.4;
    }

    .service-staffing-card:hover {
        transform: translateX(0);
    }
}
.recruitment-section {
    padding: 30px 0;
    background: #f4f4f4;
}

.recruitment-section-container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
}

/* ROW */
.recruitment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 40px;
}

/* IMAGE */
.recruitment-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.recruitment-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* CONTENT BOX */
.recruitment-content {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.recruitment-content:hover {
    transform: translateY(-8px);
}

/* ICON */
.recruitment-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    background: rgba(0, 54, 170, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.recruitment-icon i {
    font-size: 30px;
    color: #0036AA;
}

/* HEADING */
.recruitment-content h2 {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

/* TEXT */
.recruitment-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #5f5f5f;
}

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

    .recruitment-row {
        grid-template-columns: 1fr;
    }

    .reverse-row .recruitment-image {
        order: 1;
    }

    .reverse-row .recruitment-content {
        order: 2;
    }

    .recruitment-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {

    .recruitment-section {
        padding: 30px 0;
    }

    .recruitment-row {
        gap: 25px;
        margin-bottom: 25px;
    }

    .recruitment-content {
        padding: 35px 25px;
    }

    .recruitment-content h2 {
        font-size: 30px;
    }

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

    .recruitment-icon {
        width: 65px;
        height: 65px;
    }

    .recruitment-icon i {
        font-size: 24px;
    }
}
/* SECTION */
.why-staffing-section {
    padding: 30px 0;
    background: #f4f7ff;
    overflow: hidden;
    position: relative;
}

.why-staffing-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(0, 54, 170, 0.05);
    border-radius: 50%;
}

.why-staffing-section::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 450px;
    height: 450px;
    background: rgba(199, 132, 1, 0.06);
    border-radius: 50%;
}

/* CONTAINER */
.why-staffing-section-container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* TOP CONTENT */
.why-left {
    width: 100%;
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(199, 132, 1, 0.12);
    color: #C78401;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.section-tag::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #C78401;
    border-radius: 50%;
}

.why-left h2 {
    font-size: 45px;
    line-height: 1.08;
    font-weight: 800;
    color: #0036AA;
    margin-bottom: 24px;
}

.why-left p {
    font-size: 18px;
    line-height: 1.9;
    color: #5f5f5f;
    max-width: 760px;
    margin: auto;
}

/* CARD WRAPPER */
/* CARD WRAPPER */
.why-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* CARD */
.why-card {
    position: relative;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 28px;
    padding: 35px;
    transition: 0.45s ease;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    min-height: 260px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* STAGGER EFFECT */
.why-card:nth-child(even) {
    margin-top: 40px;
}

/* GLOW EFFECT */
.why-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: rgba(0, 54, 170, 0.06);
    border-radius: 50%;
    transition: 0.4s ease;
}

.why-card:hover::before {
    background: rgba(199, 132, 1, 0.10);
    transform: scale(1.1);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

/* ICON */
.why-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0036AA, #1e56d4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #C78401, #e0a41f);
    transform: rotate(-6deg) scale(1.05);
}

.why-icon i {
    color: #fff;
    font-size: 30px;
}

/* TEXT */
.why-card h3 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    color: #111;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .why-staffing-section {
        padding: 80px 0;
    }

    .why-left {
        margin-bottom: 50px;
    }

    .why-left h2 {
        font-size: 30px;
    }

    .why-left p {
        font-size: 16px;
    }

    .why-right {
        grid-template-columns: 1fr;
    }

    .why-card:nth-child(even) {
        margin-top: 0;
    }

    .why-card {
        min-height: auto;
    }
}

@media (max-width: 576px) {

    .why-left h2 {
        font-size: 25px;
    }

    .why-card {
        padding: 25px;
        border-radius: 22px;
    }

    .why-card h3 {
        font-size: 20px;
    }

    .why-icon {
        width: 65px;
        height: 65px;
        border-radius: 18px;
    }

    .why-icon i {
        font-size: 24px;
    }
}


/* SECTION */
.commitment-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #0036AA 0%, #0b4cd9 100%);
    position: relative;
    overflow: hidden;
}

/* CONTAINER */
.commitment-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* SHAPES */
.commitment-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.shape-1 {
    width: 420px;
    height: 420px;
    background: rgba(255,255,255,0.05);
    top: -180px;
    right: -120px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(199, 132, 1, 0.15);
    bottom: -120px;
    left: -100px;
}

/* CONTENT BOX */
.commitment-content {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 35px;
    padding: 70px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* TOP GLOW */
.commitment-content::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

/* TAG */
.commitment-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.15);
}

/* HEADING */
.commitment-content h2 {
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 35px;
}

/* PARAGRAPH */
.commitment-content p {
    font-size: 19px;
    line-height: 2;
    color: rgba(255,255,255,0.88);
    margin-bottom: 28px;
    max-width: 950px;
}

/* HIGHLIGHT BOX */
.commitment-highlight {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.highlight-line {
    width: 90px;
    height: 5px;
    border-radius: 50px;
    background: #C78401;
    margin-bottom: 25px;
}

.commitment-highlight h3 {
    font-size: 34px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
    max-width: 700px;
}

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

    .commitment-content {
        padding: 50px 40px;
    }

    .commitment-content h2 {
        font-size: 52px;
    }

    .commitment-highlight h3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {

    .commitment-section {
        padding: 80px 0;
    }

    .commitment-content {
        padding: 35px 25px;
        border-radius: 24px;
    }

    .commitment-content h2 {
        font-size: 38px;
        margin-bottom: 25px;
    }

    .commitment-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .commitment-highlight {
        margin-top: 30px;
        padding-top: 25px;
    }

    .commitment-highlight h3 {
        font-size: 22px;
    }
}

/* Staffing Solutions */


/* SECTION */
.insights-section {
    padding: 40px 0;
    background: #f5f5f5;
}

/* CONTAINER */
.insights-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

/* HEADER */
.insights-header {
    text-align: center;
    margin-bottom: 70px;
}

.insights-tag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(199, 132, 1, 0.12);
    color: #C78401;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.insights-header h2 {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 800;
    color: #0036AA;
    max-width: 850px;
    margin: auto;
}

/* GRID */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.insight-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.45s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
}

.insight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

/* IMAGE */
.insight-image {
    height: 320px;
    overflow: hidden;
    background: #ececec;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.08);
}

/* CONTENT */
.insight-content {
    padding: 30px;
}

/* CATEGORY */
.insight-category {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #7c7c7c;
    margin-bottom: 18px;
}

/* TITLE */
.insight-content h3 {
    font-size: 23px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 22px;
    transition: 0.3s ease;
}

.insight-card:hover h3 {
    color: #0036AA;
}

/* DESCRIPTION */
.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #6a6a6a;
    margin-bottom: 28px;
}

/* BUTTON */
.insight-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: #0036AA;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.35s ease;
}

.insight-btn:hover {
    background: #C78401;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {

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

    .insight-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {

    .insights-section {
        padding: 80px 0;
    }

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

    .insights-header h2 {
        font-size: 40px;
    }

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

    .insight-image {
        height: 260px;
    }
}

@media (max-width: 576px) {

    .insights-header h2 {
        font-size: 32px;
    }

    .insight-content {
        padding: 24px;
    }

    .insight-content h3 {
        font-size: 24px;
    }

    .insight-content p {
        font-size: 16px;
    }

    .insight-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}


/* SECTION */
.contact-section {
    padding: 40px 0;
    background: #ffffff;
}

/* CONTAINER */
.contact-container {
    width: 79%;
    max-width: 1550px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

/* LEFT BOX */
.contact-info-box {
    width: 34%;
    background: linear-gradient(180deg, #0036AA 0%, #183b7a 100%);
    border-radius: 22px;
    padding: 35px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

/* TAG */
.contact-tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.9);
}

/* HEADING */
.contact-info-box h2 {
    font-size: 45px;
    line-height: 0.95;
    font-weight: 800;
    margin-bottom: 50px;
}

/* INFO ITEM */
.contact-info-item {
    display: flex;
    gap: 18px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* ICON */
.contact-icon {
    min-width: 58px;
    width: 58px;
    height: 58px;
    background: #C78401;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 22px;
    color: #fff;
}

/* TEXT */
.contact-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-text a,
.contact-text p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

/* SOCIAL */
.contact-socials {
    display: flex;
    gap: 14px;
    margin-top: 15px;
}

.contact-socials a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.35s ease;
}

.contact-socials a:hover {
    background: #C78401;
    transform: translateY(-4px);
}

/* RIGHT FORM */
.contact-form-box {
    width: 66%;
}

/* GRID */
.contact-section-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
}

/* GROUP */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1f1f1f;
}

/* INPUTS */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d9d9d9;
    background: #fff;
    border-radius: 10px;
    padding: 18px 20px;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease;
    font-family: inherit;
}

.form-group input,
.form-group select {
    height: 64px;
}

.form-group textarea {
    height: 230px;
    resize: none;
}

/* FOCUS */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0036AA;
    box-shadow: 0 0 0 4px rgba(0, 54, 170, 0.08);
}

/* FULL WIDTH */
.full-width {
    margin-top: 28px;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    height: 72px;
    border: none;
    border-radius: 10px;
    background: #C78401;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 28px;
    transition: 0.35s ease;
}

.submit-btn:hover {
    background: #0036AA;
}

/* RESPONSIVE */
@media (max-width: 1200px) {

    .contact-container {
        flex-direction: column;
    }

    .contact-info-box,
    .contact-form-box {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-info-box h2 {
        font-size: 48px;
    }

    .contact-section-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .contact-info-box {
        padding: 35px 25px;
    }

    .contact-info-box h2 {
        font-size: 38px;
    }

    .contact-text h3 {
        font-size: 20px;
    }

    .contact-text a,
    .contact-text p {
        font-size: 15px;
    }

    .submit-btn {
        height: 64px;
        font-size: 18px;
    }
}

/* =========================
   BLOG SECTION
========================= */

.arccs-blog-section{
    background: linear-gradient(148deg, #edeaff, #ffffff);
    padding: 80px 20px;
}

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

.arccs-blog-container{
    max-width: 1300px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 60px;
}

/* =========================
   LEFT CONTENT
========================= */

.arccs-blog-content{
    width: 68%;
}

.arccs-blog-content h2{
    font-size: clamp(38px, 5vw, 43px);
    line-height: 1.1;
    font-weight: 800;
    color: #022868;
    margin-bottom: 35px;
}

.arccs-blog-content p{
    font-size: 18px;
    line-height: 1.9;
    color: #111;
    margin-bottom: 30px;
}

/* BLOG BLOCK */

.arccs-blog-block{
    margin-top: 38px;
}

.arccs-blog-block h2{
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
    color: #022868;
}

.arccs-blog-block h3{
    font-size: clamp(28px, 4vw, 22px);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 25px;
    color: #022868;
}

.arccs-blog-block ul{
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.arccs-blog-block ul li{
    position: relative;
    padding-left: 32px;

    margin-bottom: 18px;

    font-size: 18px;
    color: #4d5665;
    line-height: 1.7;
}

/* CUSTOM BULLET */

.arccs-blog-block ul li::before{
    content: "";
    position: absolute;

    left: 0;
    top: 12px;

    width: 10px;
    height: 10px;

    background: #d08a00;
    transform: rotate(45deg);
}

/* =========================
   SIDEBAR
========================= */

.arccs-blog-sidebar{
    width: 32%;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

/* SIDEBAR CARD */

.arccs-sidebar-card{
    background: transparent;
    border: 1px solid rgba(0,0,0,0.08);

    border-radius: 25px;
    padding: 35px;

    transition: 0.3s ease;
}

/* SIDEBAR TITLE */

.arccs-sidebar-card h3{
    font-size: 22px;
    font-weight: 700;
    color: #314b2d;
    margin-bottom: 30px;
}

/* POSTS */

.arccs-post-item{
    padding-bottom: 28px;
    margin-bottom: 28px;

    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.arccs-post-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.arccs-post-item a{
    display: block;

    text-decoration: none;

    color: #111;
    font-size: 18px;
    font-weight: 500;

    line-height: 1.5;

    transition: 0.3s ease;
}

.arccs-post-item a:hover{
    color: #d08a00;
}

.arccs-post-item span{
    display: block;
    margin-top: 14px;

    color: #66706a;
    font-size: 15px;
}

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

@media(max-width: 1024px){

    .arccs-blog-section{
        padding: 70px 24px;
    }

    .arccs-blog-container{
        flex-direction: column;
        gap: 50px;
    }

    .arccs-blog-content,
    .arccs-blog-sidebar{
        width: 100%;
    }

    .arccs-blog-sidebar{
        position: static;
    }

    .arccs-blog-content h2{
        font-size: 34px;
    }

    .arccs-blog-content p{
        font-size: 17px;
        line-height: 1.8;
    }

    .arccs-blog-block{
        margin-top: 60px;
    }
}

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

@media(max-width: 768px){

    .arccs-blog-section{
        padding: 55px 16px;
    }

    .arccs-blog-container{
        gap: 40px;
    }

    .arccs-blog-content h2{
        font-size: 27px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .arccs-blog-content p{
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 24px;
    }

    .arccs-blog-block{
        margin-top: 45px;
    }

    .arccs-blog-block h2{
        font-size: 27px;
    }

    .arccs-blog-block ul{
        margin-top: 24px;
    }

    .arccs-blog-block ul li{
        font-size: 15px;
        padding-left: 26px;
    }

    .arccs-sidebar-card{
        padding: 25px 20px;
        border-radius: 18px;
    }

    .arccs-sidebar-card h3{
        font-size: 20px;
        margin-bottom: 22px;
    }

    .arccs-post-item{
        margin-bottom: 22px;
        padding-bottom: 22px;
    }

    .arccs-post-item a{
        font-size: 16px;
    }

    .arccs-post-item span{
        font-size: 14px;
    }
}