@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
    :root {
      --primary: #0a2d6e;
      --accent: #e84c1e;
      --accent2: #f7941d;
      --light-bg: #f4f7fc;
      --text-dark: #1a1a2e;
      --text-muted: #666;
      --white: #fff;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: "Rubik", sans-serif; color: var(--text-dark); overflow-x: hidden; }
    h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }

    /* ── TOP BAR ── */
    .top-bar {
      background: #5f2dee;
      color: #cdd8f0;
      font-size: 13px;
      padding: 7px 0;
    }
    .top-bar a { color: #cdd8f0; text-decoration: none; }
    .top-bar .social-icons a {
      display: inline-flex; align-items: center; justify-content: center;
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(255,255,255,0.12); color: #fff;
      font-size: 12px; margin-left: 6px; transition: background .3s;
    }
    .top-bar .social-icons a:hover { background: var(--accent); }

    /* ── NAVBAR ── */
    .main-nav {
      background: #fff;
      box-shadow: 0 2px 15px rgba(0,0,0,0.08);
      position: sticky; top: 0; z-index: 999;
    }
    .navbar-brand {
      font-family: 'Poppins', sans-serif;
      font-size: 22px; font-weight: 800;
      color: var(--primary) !important;
      letter-spacing: -0.5px;
    }
    .navbar-brand img{
      width: 260px;
    }
    .navbar-brand span { color: var(--accent); }
    .main-nav .nav-link {
      font-weight: 500; font-size: 14px;
      color: var(--text-dark) !important;
      padding: 8px 14px !important;
      transition: color .3s;
    }
    .main-nav .nav-link:hover,
    .main-nav .nav-link.active { color: var(--accent) !important; }
    .main-nav .dropdown-menu { border: none; box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-radius: 8px; }
    .main-nav .dropdown-item { font-size: 13.5px; padding: 8px 20px; }
    .main-nav .dropdown-item:hover { background: var(--light-bg); color: var(--accent); }
    .btn-quote {
      background: var(--accent); color: #fff !important;
      border-radius: 30px; padding: 9px 22px !important;
      font-weight: 600; font-size: 13px;
      border: 2px solid var(--accent); transition: .3s;
    }
    .btn-quote:hover { background: transparent; color: var(--accent) !important; }

/* .navbar li:last-child{
	background: var(--accent); color: #fff !important;
      border-radius: 20px; padding: 1px 15px !important;
      font-weight: 600; font-size: 14px;
	border: 2px solid var(--accent); transition: .3s;
}
.navbar li:last-child:hover{
	background: transparent; color: var(--accent) !important;
} */
    /* Navbar */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

.navbar-brand img {
    max-height: 60px;
}

.navbar-nav .nav-link {
    color: #222;
    font-weight: 600;
    padding: 12px 18px !important;
    transition: .3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0d6efd;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    margin-top: 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: .3s;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #0d6efd;
}

/* Hover Dropdown Desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all .3s ease;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }
}

    /* ── HERO SLIDER ── */
    #heroCarousel .carousel-item {
      min-height: 560px;
      position: relative;
      overflow: hidden;
    }
    .slide-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform 8s ease;
    }
    .carousel-item.active .slide-bg { transform: scale(1.07); }
    .slide-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(120deg, rgb(0 0 0 / 74%) 40%, rgb(95 45 238 / 22%) 100%);
    }
    .slide-content {
      position: relative; z-index: 2;
      padding: 120px 0 80px;
    }
    .slide-content .eyebrow {
      display: inline-block;
      background: transparent; color: #5f2dee;
      font-size: 12px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 5px 16px; border-radius: 20px; margin-bottom: 18px;
    }
    .slide-content h1 {
      font-size: clamp(32px, 5vw, 58px);
      font-weight: 600; color: #fff;
      line-height: 1.15; margin-bottom: 20px;
    }
    /*.slide-content h1 span { color: var(--accent2); }*/
    .slide-content p {
      font-size: 16px; color: rgba(255,255,255,0.82);
      max-width: 540px; margin-bottom: 32px; line-height: 1.8;
    }
    .slide-content .btn-primary-hero {
      background: var(--accent); color: #fff;
      border: 2px solid var(--accent); border-radius: 30px;
      padding: 12px 30px; font-weight: 600; font-size: 14px;
      text-decoration: none; display: inline-block; margin-right: 12px;
      transition: .3s;
    }
    .slide-content .btn-primary-hero:hover { background: transparent; color: #fff; }
    .slide-content .btn-outline-hero {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,0.6); border-radius: 30px;
      padding: 12px 30px; font-weight: 600; font-size: 14px;
      text-decoration: none; display: inline-block; transition: .3s;
    }
    .slide-content .btn-outline-hero:hover { background: #fff; color: var(--primary); }
    #heroCarousel .carousel-indicators [data-bs-target] {
      width: 10px; height: 10px; border-radius: 50%;
      background: rgba(255,255,255,0.5); border: none; margin: 0 5px;
    }
    #heroCarousel .carousel-indicators .active { background: var(--accent); }

    /* ── SECTION GLOBAL ── */
    section { padding: 80px 0; }
    .section-eyebrow {
      display: inline-block;
      color: var(--accent); font-size: 13px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 10px;
    }
    .section-title {
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 700; color: var(--primary);
      line-height: 1.25; margin-bottom: 18px;
    }
    .divider-line {
      width: 50px; height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      border-radius: 2px; margin: 0 0 24px;
    }

    /* ── ABOUT ── */
    #about { background: var(--white); }
    #about .about-img { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
    #about .about-img img { width: 100%; height: 400px; object-fit: cover; }
    #about p { font-size: 15px; color: var(--text-muted); line-height: 1.9; }
    #about .btn-read { display: inline-block; background: var(--primary); color: #fff; padding: 11px 28px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 14px; transition: .3s; }
    #about .btn-read:hover { background: var(--accent); }

    /* ── STATS BAND ── */
    .stats-band {
      background: linear-gradient(135deg, var(--primary) 0%, #1a4a9c 100%);
      padding: 60px 0;
    }
    .stat-item { text-align: center; padding: 20px; }
    .stat-item .number {
      font-family: 'Poppins', sans-serif;
      font-size: 56px; font-weight: 800; color: #fff;
      line-height: 1;
    }
    .stat-item .number span { color: var(--accent2); }
    .stat-item .label { color: rgba(255,255,255,0.7); font-size: 15px; margin-top: 8px; font-weight: 500; }

    /* ── FEATURES STRIP ── */
    #features { background: var(--light-bg); }
    .feature-card {
      background: #fff; border-radius: 12px;
      padding: 36px 30px; height: 100%;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: transform .3s, box-shadow .3s;
      border-bottom: 4px solid transparent;
    }
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      border-bottom-color: var(--accent);
    }
    .feature-icon {
      width: 60px; height: 60px; border-radius: 12px;
      background: linear-gradient(135deg, var(--primary), #1a4a9c);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .feature-icon i { color: #fff; font-size: 22px; }
    .feature-card h5 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
    .feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin: 0; }

    

    .work-process-section{
    background:#f7f7f7;
    padding:120px 0;
    overflow:hidden;
}

.process-wrapper{
    position:relative;
}

.process-item{
    position:relative;
    margin-bottom:80px;
    max-width:380px;
}

.process-two{
    margin-left:160px;
}

.process-three{
    margin-top:30px;
}

.process-count{
    position:absolute;
    top:-20px;
    right:-50px;
    font-size:110px;
    font-weight:800;
    color:transparent;
    -webkit-text-stroke:2px #e2e2e2;
    line-height:1;
    z-index:1;
}

.process-icon{
    font-size:35px;
    color:#ff4d2d;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.process-item h4{
    font-size:20px;
    font-weight:600;
    color:#222;
    margin-bottom:15px;
    position:relative;
    z-index:2;
}

.process-item p{
    color:#777;
    line-height:1.9;
    font-size:16px;
    position:relative;
    z-index:2;
}

.process-arrow{
    position:absolute;
    color:#d9d9d9;
    font-size:110px;
}

.arrow-one{
    right:-120px;
    top:60px;
    transform:rotate(-20deg);
}

.arrow-two{
    left:-120px;
    bottom:-70px;
    transform:rotate(180deg);
}

.section-subtitle{
    color:#ff4d2d;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.process-title{
    font-size:45px;
    font-weight:600;
    line-height:1.2;
    color:#222;
    margin-bottom:25px;
}

.process-desc{
    color:#777;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.process-image img{
    width:100%;
    border-radius:8px;
    display:block;
}

@media(max-width:991px){

    .process-two{
        margin-left:0;
    }

    .process-count{
        right:0;
        font-size:80px;
    }

    .process-arrow{
        display:none;
    }

    .process-title{
        font-size:40px;
        margin-top:40px;
    }
}

    .why-choose-section{
    background:#f5f5f5;
    padding:80px 0;
}

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

.why-content{
    background:#111;
    color:#fff;
    padding:80px 70px;
    height:100%;
}

.section-subtitle{
    color:#ff4d2d;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.why-content h2{
    font-size:45px;
    line-height:1.25;
    font-weight:600;
    margin-bottom:25px;
}

.intro{
    color:#a7a7a7;
    line-height:1.9;
    margin-bottom:40px;
}

.why-item{
    display:flex;
    gap:20px;
    padding:30px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.why-item i{
    color:#ff4d2d;
    font-size:34px;
    min-width:40px;
}

.why-item h5{
    color:#fff;
    font-size:18px;
    margin-bottom:12px;
    font-weight:600;
}

.why-item p{
    color:#a7a7a7;
    line-height:1.8;
    margin:0;
}

    .client-strip {
    background: #2f2b36;
    padding: 45px 0;
}

.client-item{
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.client-item img{
    max-width:180px;
    max-height:50px;
    width:auto;
    height:auto;
    filter:brightness(0) invert(1);
    transition:.3s;
}

.client-item:hover img{
    transform:scale(1.08);
}

    /* ── FOOTER ── */
    footer {
          background: #2f2b36;
      color: rgba(255,255,255,0.75);
      padding: 70px 0 0;
    }
    footer .footer-brand {
      font-family: 'Poppins', sans-serif;
      font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 16px;
    }
   .footer-brand img{
    vertical-align: middle;
    width: 260px;
}
    footer .footer-brand span { color: var(--accent2); }
    footer p { font-size: 14px; line-height: 1.9; margin-bottom: 20px; }
    footer h6 { color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 20px; letter-spacing: 0.5px; }
    footer ul { list-style: none; padding: 0; }
    footer ul li { margin-bottom: 10px; }
    footer ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: .3s; }
    footer ul li a:hover { color: var(--accent2); padding-left: 5px; }
    footer .footer-bottom {
      background: rgba(0,0,0,0.2);
      padding: 18px 0; margin-top: 50px;
      font-size: 13px; text-align: center;
    }
    footer .footer-bottom a { color: var(--accent2); text-decoration: none; }
    footer .social-icons a {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.1); color: #fff;
      font-size: 14px; margin-right: 8px; transition: .3s;
    }
    footer .social-icons a:hover { background: var(--accent); }
    footer .feedback-form .form-control {
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      color: #fff; border-radius: 8px; font-size: 14px; margin-bottom: 12px;
    }
    footer .feedback-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
    footer .feedback-form .form-control:focus { background: rgba(255,255,255,0.12); box-shadow: none; border-color: var(--accent2); }
    footer .btn-submit {
      background: var(--accent); border: none; color: #fff;
      padding: 10px 24px; border-radius: 30px; font-weight: 600; font-size: 14px;
      width: 100%; transition: .3s;
    }
    footer .btn-submit:hover { background: var(--accent2); }

    /* ── BACK TO TOP ── */
    #backTop {
      position: fixed; bottom: 28px; right: 28px;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--accent); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; cursor: pointer; opacity: 0;
      transition: .3s; z-index: 9999; box-shadow: 0 4px 15px rgba(232,76,30,0.4);
    }
    #backTop.show { opacity: 1; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      section { padding: 60px 0; }
      .slide-content { padding: 90px 0 60px; }
      .stat-item .number { font-size: 40px; }
    }


.project-section{
    background:#f5f5f5;
    padding:100px 0;
}

.section-title .sub-title{
    display:inline-flex;
    align-items:center;
    gap:4px;
    font-size:13px;
    font-weight:700;
    color:#ff4d2d;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:45px;
    font-weight:600;
    color:#222;
    margin:0;
    line-height:1.2;
}

.project-box {
    background: #fff;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .05);
    border-radius: 20px;
}

.project-media img{
    width:100%;
    height:390px;
    object-fit:cover;
    border-radius:6px;
    display:block;
}

.project-content{
    padding-left:35px;
}

.project-content h3{
    font-size:25px;
    font-weight:600;
    line-height:1.45;
    color:#222;
    margin-bottom:25px;
}

.project-content p{
    color:#777;
    line-height:1.9;
    font-size:17px;
    margin-bottom:30px;
}

.project-content hr{
    margin:25px 0 35px;
        border-color: #8d8d8d;
}

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

.feature-list li{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:22px;
    color:#555;
    font-size:18px;
}

.feature-list i{
    color:#ff4d2d;
    font-size:20px;
    font-weight:700;
}

@media(max-width:991px){

    .project-box{
        padding:25px;
    }

    .project-content{
        padding-left:0;
        padding-top:30px;
    }

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

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


.services-section{
    background:#f8f8f8;
    padding:120px 0;
    position:relative;
}

.service-heading{
    padding-top:20px;
}

.section-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#ff5722;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:20px;
}

.section-subtitle i{
    font-size:18px;
}

.service-heading h2{
    font-size:45px;
    line-height:1.25;
    font-weight:600;
    color:#222;
    margin:0;
}

.service-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:8px;
    padding:25px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.service-icon{
    width:60px;
    height:60px;
    border:1px solid #e5e5e5;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-icon i{
    font-size:32px;
    color:#ff5722;
}

.service-card h4{
    font-size:20px;
    font-weight:600;
    line-height:1.4;
    color:#222;
    margin-bottom:22px;
}

.service-card p{
    color:#777;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;
}

.read-more{
    text-decoration:none;
    color:#ff5722;
    font-size:14px;
    font-weight:700;
}

.read-more i{
    margin-left:8px;
}

.service-bg-icon{
    position:absolute;
    right:15px;
    bottom:5px;
    opacity:.05;
    font-size:100px;
    color:#000;
}

.service-image{
    height:100%;
    overflow:hidden;
    border-radius:8px;
}

.service-image img{
    width:100%;
    height:100%;
    min-height:300px;
    object-fit:cover;
    border-radius:8px;
}

@media(max-width:991px){

    .service-heading h2{
        font-size:42px;
        margin-bottom:20px;
    }

    .service-card h4{
        font-size:26px;
    }
}

@media(max-width:767px){

    .service-heading h2{
        font-size:34px;
    }

    .service-card{
        padding:25px;
    }
}

.service-top {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    justify-content: flex-start;
    align-items: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i{
    font-size:30px;
    color:#ff5722;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #222;
    margin: 0;
}

@media(max-width:575px){
    .service-top{
        gap:15px;
    }

    .service-icon{
        width:60px;
        height:60px;
        min-width:60px;
    }

    .service-card h4{
        font-size:18px;
    }
}


.breadcrumb-section{
    padding:140px 0 80px;
    background:url(images/breadcrumb.jpg) center/cover;
    position:relative;
}

.breadcrumb-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.breadcrumb-content{
    position:relative;
    z-index:2;
}

.breadcrumb-content h1{
    color:#fff;
    font-size:60px;
    font-weight:800;
}

.breadcrumb-content ul{
    display:flex;
    justify-content:center;
    gap:10px;
    list-style:none;
    padding:0;
}

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




.section-subtitle{
    color:#ff5722;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title{
    font-size:45px;
    font-weight:600;
    color:#111;
    margin-top:10px;
}

.about-banner{
    padding:180px 0 120px;
    background:url('https://mccullough.devsushavan.com/wp-content/uploads/2026/06/Information-Technology-Infrastructure.png') center/cover;
    position:relative;
}

.about-banner:before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.7);
}

.banner-content{
    position:relative;
    z-index:2;
}
.banner-content span{
	color:#fff;
}
.banner-content h1{
    color:#fff;
    font-size:45px;
    font-weight:600;
}

.banner-content ul{
    display:flex;
    justify-content:center;
    gap:10px;
    list-style:none;
    padding:0;
}

.banner-content a,
.banner-content li{
    color:#fff;
    text-decoration:none;
}

.stats-section{
    background:#ff5722;
    padding:80px 0;
}

.stat-card{
    color:#fff;
}

.stat-card h2{
    font-size:45px;
    font-weight:600;
}

.why-card,
.process-card,
.testimonial-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.why-card:hover,
.process-card:hover,
.testimonial-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    font-size:45px;
    color:#ff5722;
    margin-bottom:20px;
}

.mission-box{
    background:#111827;
    color:#fff;
    padding:50px;
    border-radius:20px;
	height:100%
}

.vision-box{
    background:#ff5722;
    color:#fff;
    padding:50px;
    border-radius:20px;
}

.process-card span{
    font-size:70px;
    font-weight:800;
    color:#eee;
}

.testimonial-card i{
    font-size:40px;
    color:#ff5722;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}

.feature-box i{
    color:#ff5722;
}



/* Contact Info */

.contact-info-card{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    transition:.4s;
	height:100%;
}

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

.contact-info-card .icon{
    width:80px;
    height:80px;
    background:#ff5722;
    color:#fff;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

/* Contact Form */

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.form-control{
    height:55px;
    border-radius:12px;
}

textarea.form-control{
    height:auto;
}

.btn-contact{
    background:#ff5722;
    border:none;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
}

.btn-contact:hover{
    background:#e94d20;
}

.contact-list div{
    margin-bottom:15px;
    font-weight:600;
}

.contact-list i{
    color:#ff5722;
    margin-right:10px;
}

/* FAQ */

.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* CTA */

.cta-section{
    padding:100px 0;
}

.cta-box{
    background:linear-gradient(135deg,#ff5722,#ff7a59);
    border-radius:25px;
    text-align:center;
    padding:80px;
    color:#fff;
}

.cta-box h2{
    font-size:50px;
    font-weight:800;
}

.cta-btn{
    display:inline-block;
    margin-top:20px;
    background:#fff;
    color:#ff5722;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

{
    padding:120px 0;
}

.service-list{
    margin:30px 0;
}

.service-list div{
    margin-bottom:15px;
    font-weight:600;
    color:var(--dark);
}

.service-list i{
    color:var(--primary);
    margin-right:10px;
}

.theme-btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
	 text-decoration: none;
}

.theme-btn:hover {
    background: #e84c1e;
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
}
.banner-content li {
    color: #fff;
    text-decoration: none;
    padding-right: 15px;
    border-right: 1px solid #ccc;
}
.banner-content li:last-child{
	border:none;
}
/*=====================================
SERVICE CARDS
=====================================*/
.services-grid{
    padding:120px 0;
    background:var(--light);
}

.service-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--primary);
}

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

.service-card i{
    font-size:16px;
    color:#000;
}

/* .service-card h4{
    font-size:24px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:15px;
} */

/*=====================================
BENEFITS SECTION
=====================================*/
.benefits-section{
    padding:120px 0;
}

.benefit-item{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.benefit-item i{
    width:65px;
    height:65px;
    background:rgba(255,87,34,.1);
    color:var(--primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.benefit-item h5{
    font-size:22px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:8px;
}

/*=====================================
WORK PROCESS
=====================================*/
.work-process{
    background:var(--light);
    padding:120px 0;
}

.process-card{
    background:#fff;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
    transition:.4s;
    position:relative;
    height:100%;
}

.process-card:hover{
    transform:translateY(-10px);
}

.process-card span{
    font-size:70px;
    font-weight:800;
    color:#ececec;
    display:block;
    line-height:1;
    margin-bottom:15px;
}

.process-card h4{
    color:var(--dark);
    font-weight:700;
    margin-bottom:15px;
}

/*=====================================
TECHNOLOGY SECTION
=====================================*/
.technology-section{
    padding:120px 0;
}

.tech-box{
    background:#fff;
    border:1px solid #eee;
    padding:25px;
    border-radius:15px;
    font-weight:700;
    color:var(--dark);
    transition:.4s;
}

.tech-box:hover{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
    transform:translateY(-5px);
}