 /* ===== Service STARTS HERE ===== */

/* ===== Service Hero STARTS HERE ===== */


.services-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, #0b132b, #0e1a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 60px 20px;
}

/* INNER WRAPPER*/

.services-hero .section-inner {
    max-width: 1400px;
    width: 100%;
}

/*FLEX CONTAINER*/

.services-hero .top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* TEXT SECTION*/

.services-hero .top-text h2 {
    position: relative;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    padding-left: 20px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.services-hero .top-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 85%;
    background: #0d6efd;
    border-radius: 4px;
}

.services-hero .short-intro {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.6;
}

/* IMAGE SECTION*/

.services-hero .top-image {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.services-hero .top-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}



/* ===== Service Hero ENDS HERE ===== */

/* ===== Service cards STARTS HERE ===== */

.services-section {
  background: #f6f8fc;
}

/* CARD */
.service-card {
  padding: 0 !important;
  border: none !important;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.14);
}

/* REMOVE COLOR BAR (NOT NEEDED FOR THIS DESIGN) */
.service-color-bar {
  display: none;
}

/* IMAGE SECTION */
.service-img-wrapper {
  position: relative;
  height: 210px;
  margin: 0 !important;
  background: #0f172a;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;   
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.06);
}


.service-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
  pointer-events: none;
}

/* CONTENT AREA  */
.service-title,
.service-desc,
.service-card p:last-child {
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}

.service-title {
  margin-top: 1.6rem;
}

.service-title a {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.service-title a:hover {
  color: #2563eb;
}

.services-section .section-subtitle {
	    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
	margin-top: 0!important;
	
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
  margin-top: 0.5rem;
}

/*  BUTTON */
.service-card p:last-child {
  margin-top: 1.2rem;
  margin-bottom: 1.8rem;
}

.service-card .btn-primary {
  background: #2563eb;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-card .btn-primary:hover {
  background: #1e40af;
  transform: translateY(-1px);
}



/* ===== Service cards ENDS HERE ===== */


/* ===== Industry section STARTS HERE ===== */

/* INDUSTRY ICONS  */

.industry-item { width: 64px; height: 64px; border: 1px solid #e5e7eb; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; background: #ffffff; position: relative; transition: all 0.3s ease; }

/* Base icon */
.industry-item::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 26px;
  color: #02050c;
  content: "\f15c"; /* fallback */
}

/* Hover effect */
.industry-item:hover {
  border-color: #2563eb;
  background: #f8fafc;
  transform: translateY(-4px);
}

.industry-item:hover::before {
  color: #2563eb;
}
/*  ICON MAPPING (ORDER-BASED)*/

/* Retail */
.industry-section .col-6:nth-child(1) .industry-item::before {
  content: "\f54e"; /* fa-store */
}

/* Logistics */
.industry-section .col-6:nth-child(2) .industry-item::before {
  content: "\f48b"; /* fa-truck-fast */
}

/* E-commerce */
.industry-section .col-6:nth-child(3) .industry-item::before {
  content: "\f07a"; /* fa-cart-shopping */
}

/* CPG / FMCG */
.industry-section .col-6:nth-child(4) .industry-item::before {
  content: "\f466"; /* fa-box */
}

/* Hotel */
.industry-section .col-6:nth-child(5) .industry-item::before {
  content: "\f594"; /* hotel */
}

/* Healthcare */
.industry-section .col-6:nth-child(6) .industry-item::before {
  content: "\f0f8"; /* fa-hospital */
}


/* Left content typography */
.industry-section small {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.industry-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.25;
}

.industry-section p {
  line-height: 1.7;
}
.industry-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;

  background: linear-gradient(
    145deg,
    #f8fafc,
    #eef2f7
  );

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

  transition: all 0.25s ease;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.05);
}
.industry-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.1);
}
.industry-section .col-lg-6 p {
  margin-top: 10px;
  font-weight: 500;
  color: #111827;
}


/* Break out of Bootstrap container */
.container.industry-section {
  width: 100vw !important;
  max-width: 100vw !important;

  position: relative;
  left: 50%;
  margin-left: -50vw;

  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Center the real content */
.container.industry-section > .row {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Kill Bootstrap row negative margins */
.container.industry-section .row {
  margin-left: 0;
  margin-right: 0;
}


/* Center the industry section content perfectly */
.container.industry-section > .row {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;

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

  align-items: center; /* vertical centering */
}
.industry-section .col-lg-6:first-child {
  padding-right: 48px;
}
.industry-section .col-lg-6:last-child {
  padding-left: 48px;
}

/* ===== Industry section ENDS HERE ===== */


/* ================================================================================================= */


/* ===== CSD HERO SECTION STARTS HERE ===== */


.custom-software {
    position: relative;
    width: 100%;
    min-height: 420px; /* Better than fixed 40vh */
    background: linear-gradient(135deg, #0b132b, #0e1a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 60px 20px;
}

/* FLEX CONTAINER */

.custom-software .top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 60px;*/
    max-width: 1400px;
    width: 100%;
}

/*  TEXT SECTION*/

.custom-software .top-text h2 {
    position: relative;
    font-size: clamp(32px, 5vw, 60px); /* Responsive font */
    font-weight: 800;
    padding-left: 20px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.custom-software .top-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 85%;
    background: #0d6efd;
    border-radius: 4px;
}

.custom-software .top-text .short-intro {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.6;
}

/*  IMAGE SECTION */

.custom-software .top-image {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.custom-software .top-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}


 /* ===== CSD HERO SECTION ENDS HERE ===== */


 /* ===== CYBER SECURITY SOLUTION HERO SECTION STARTS HERE ===== */

 .cyber-sec {
    position: relative;
    width: 100%;
    min-height: 420px; /* Better than fixed 40vh */
    background: linear-gradient(135deg, #0b132b, #0e1a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 60px 20px;
}

/*  FLEX CONTAINER*/

.cyber-sec .top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 60px;*/
    max-width: 1400px;
    width: 100%;
}

/* TEXT SECTION*/
.cyber-sec .top-text h2 {
    position: relative;
    font-size: clamp(32px, 5vw, 60px); /* Responsive font */
    font-weight: 800;
    padding-left: 20px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cyber-sec .top-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 85%;
    background: #20c997;
    border-radius: 4px;
}

.cyber-sec .top-text .short-intro {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.6;
}

/* IMAGE SECTION*/

.cyber-sec .top-image {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.cyber-sec .top-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}
/* ===== CYBER SECURITY SOLUTION HERO SECTION ENDS HERE ===== */


 /* ===== IT SUPPORT HERO SECTION STARTS HERE ===== */


.it-maintenance-support {
    position: relative;
    width: 100%;
    min-height: 420px; /* Better than fixed 40vh */
    background: linear-gradient(135deg, #0b132b, #0e1a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 60px 20px;
}

/*FLEX CONTAINER*/

.it-maintenance-support .top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 60px;*/
    max-width: 1400px;
    width: 100%;
}

/*  TEXT SECTION*/

.it-maintenance-support .top-text h2 {
    position: relative;
    font-size: clamp(32px, 5vw, 60px); /* Responsive font */
    font-weight: 800;
    padding-left: 20px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.it-maintenance-support .top-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 85%;
    background: #fd7e14;
    border-radius: 4px;
}

.it-maintenance-support .top-text .short-intro {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.6;
}

/* IMAGE SECTION */

.it-maintenance-support .top-image {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.it-maintenance-support .top-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}
 /* ===== IT SUPPORT HERO SECTION ENDS HERE ===== */

 /* ===== NETWORK AND CLOUD HERO SECTION STARTS HERE ===== */


.network-cloud {
    position: relative;
    width: 100%;
    min-height: 420px; /* Better than fixed 40vh */
    background: linear-gradient(135deg, #0b132b, #0e1a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 60px 20px;
}

/*FLEX CONTAINER*/

.network-cloud .top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 60px;*/
    max-width: 1400px;
    width: 100%;
}

/*  TEXT SECTION*/

.network-cloud .top-text h2 {
    position: relative;
    font-size: clamp(32px, 5vw, 60px); /* Responsive font */
    font-weight: 800;
    padding-left: 20px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.network-cloud .top-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 85%;
    background: #28a745;
    border-radius: 4px;
}

.network-cloud .top-text .short-intro {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.6;
}

/* IMAGE SECTION */

.network-cloud .top-image {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.network-cloud .top-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}
 /* ===== NETWORK AND CLOUD HERO SECTION ENDS HERE ===== */


  /* ===== AUTOMATION HERO SECTION STARTS HERE ===== */


.process-automation {
    position: relative;
    width: 100%;
    min-height: 420px; /* Better than fixed 40vh */
    background: linear-gradient(135deg, #0b132b, #0e1a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 60px 20px;
}

/*FLEX CONTAINER*/

.process-automation .top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 60px;*/
    max-width: 1400px;
    width: 100%;
}

/*  TEXT SECTION*/

.process-automation .top-text h2 {
    position: relative;
    font-size: clamp(32px, 5vw, 60px); /* Responsive font */
    font-weight: 800;
    padding-left: 20px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.process-automation .top-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 85%;
    background: #17a2b8;
    border-radius: 4px;
}

.process-automation .top-text .short-intro {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.6;
}

/* IMAGE SECTION */

.process-automation .top-image {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.process-automation .top-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}
/* ===== AUTOMATION HERO SECTION ENDS HERE ===== */

/* ===== QA HERO SECTION STARTS HERE ===== */


.qa-testing {
    position: relative;
    width: 100%;
    min-height: 420px; /* Better than fixed 40vh */
    background: linear-gradient(135deg, #0b132b, #0e1a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 60px 20px;
}

/*FLEX CONTAINER*/

.qa-testing .top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 60px;*/
    max-width: 1400px;
    width: 100%;
}

/*  TEXT SECTION*/

.qa-testing .top-text h2 {
    position: relative;
    font-size: clamp(32px, 5vw, 60px); /* Responsive font */
    font-weight: 800;
    padding-left: 20px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.qa-testing .top-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 85%;
    background: #dc3545;
    border-radius: 4px;
}

.qa-testing .top-text .short-intro {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.6;
}

/* IMAGE SECTION */

.qa-testing .top-image {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.qa-testing .top-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

/* ===== QA HERO SECTION ENDS HERE ===== */



/* ===== SURVEILLANCE HERO SECTION STARTS HERE ===== */


.surveillance-solutions {
    position: relative;
    width: 100%;
    min-height: 420px; /* Better than fixed 40vh */
    background: linear-gradient(135deg, #0b132b, #0e1a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 60px 20px;
}

/*FLEX CONTAINER*/

.surveillance-solutions .top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 60px;*/
    max-width: 1400px;
    width: 100%;
}

/*  TEXT SECTION*/

.surveillance-solutions .top-text h2 {
    position: relative;
    font-size: clamp(32px, 5vw, 60px); /* Responsive font */
    font-weight: 800;
    padding-left: 20px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.surveillance-solutions .top-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 85%;
    background: #6f42c1;
    border-radius: 4px;
}

.surveillance-solutions .top-text .short-intro {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.6;
}

/* IMAGE SECTION */

.surveillance-solutions .top-image {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.surveillance-solutions .top-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}
/* ===== SURVEILLANCE HERO SECTION ENDS HERE ===== */


/* ===== UIUX HERO SECTION STARTS HERE ===== */



.uiux-design {
    position: relative;
    width: 100%;
    min-height: 420px; /* Better than fixed 40vh */
    background: linear-gradient(135deg, #0b132b, #0e1a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 60px 20px;
}

/*FLEX CONTAINER*/

.uiux-design .top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 60px;*/
    max-width: 1400px;
    width: 100%;
}

/*  TEXT SECTION*/

.uiux-design .top-text h2 {
    position: relative;
    font-size: clamp(32px, 5vw, 60px); /* Responsive font */
    font-weight: 800;
    padding-left: 20px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.uiux-design .top-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 85%;
    background:  #ffc107;
    border-radius: 4px;
}

.uiux-design .top-text .short-intro {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.6;
}

/* IMAGE SECTION */

.uiux-design .top-image {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.uiux-design .top-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}
/* ===== UIUX HERO SECTION ENDS HERE ===== */

 /* ===== SERVICE CONTENT STARTS HERE ===== */

 .service-content-full {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f8fafc 100%
  );
 
}


/* Content wrapper */
.service-content-full .content-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) 24px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Intro text */
.service-content-full .intro {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  line-height: 1.75;
  color: #334155;
  letter-spacing: 0.01em;
  font-weight: 400;
  opacity: 0.95;
}

/* Slight emphasis for first paragraph */
.service-content-full .intro:first-child {
  font-size: clamp(1.1rem, 1.3vw, 1.2rem);
  color: #0f172a;
}

/* Strong text polish (if used later) */
.service-content-full .intro strong {
  font-weight: 600;
  color: #0f172a;
}

 /* ===== SERVICE CONTENT ENDS HERE ===== */


 /* ===== VALUE BLOCK STARTS HERE ===== */

.value-blocks {
  margin-top: 60px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Card */
.value-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 28px 36px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  flex: 1 1 300px;
  max-width: 380px;
  text-align: center;
}

/* Hover lift */
.value-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}



/* Top Font Awesome icon */
.value-block::before {
  content: "\f121"; /* code icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 2.6rem;
  color: #1e5eff;

  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

/* Heading */
.value-block h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  color: #0f172a;
}

/* Text */
.value-block p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #6b7280;
  margin: 0;
}

 /* ===== VALUE BLOCK ENDS HERE ===== */


 /* ===== DELIVERY SECTION STARTS HERE ===== */

.service-delivery {
    padding: 120px 20px;
    background: #ffffff;

    display: flex;
    justify-content: center;  /* horizontal center */
    align-items: center;      /* vertical alignment (if height grows) */
    text-align: center;
}

.service-delivery .container {
    max-width: 900px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.service-delivery h3 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.service-delivery p.text-muted {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b7280;
   /* max-width: 700px;*/
    margin-left: auto;
    margin-right: auto;
}

 /* ===== DELIVERY SECTION ENDS HERE ===== */


 /* ===== SERVICE CTA STARTS HERE ===== */

.Service-image-cta {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    overflow: hidden;
    background: #002244;
}

/* Animated silk gradient layer */
.Service-image-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #001a33 0%,
        #003366 35%,
        #0055aa 50%,
        #003366 65%,
        #001122 100%
    );
    background-size: 300% 300%;
    animation: silkFlow 10s ease-in-out infinite alternate;
    z-index: 1;
}

/* Subtle premium light glaze */
.Service-image-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0) 40%
    );
    z-index: 2;
    pointer-events: none;
}

/* Inner container */
.Service-image-cta__inner {
    position: relative;
    z-index: 3;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 42px;
    border-radius: 22px;

    /* Glass depth */
    background: rgba(0, 34, 68, 0.55);
    backdrop-filter: blur(12px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Headline */
.Service-image-cta__inner h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* Text */
.Service-image-cta__inner p {
    font-size: 1.05rem;
    color: #b7cbe6;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Button */
.Service-image-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;

    background: linear-gradient(135deg, #0077ff, #0055cc);
    box-shadow:
        0 10px 30px rgba(0, 119, 255, 0.45),
        inset 0 1px 0 rgba(255,255,255,0.25);

    transition: all 0.35s ease;
}

/* Button hover */
.Service-image-cta__btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: #ffffff;
    color: #0077ff;
    box-shadow:
        0 18px 50px rgba(0, 119, 255, 0.65);
}

/* Silk motion */
@keyframes silkFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}


 /* ===== SERVICE  CTA ENDS  HERE ===== */


 /** ==== MEDIA QUERY Starts HERE === **/


@media (max-width: 1024px) {

    .custom-software,
    .cyber-sec,
    .it-maintenance-support,
    .network-cloud,
    .process-automation,
    .surveillance-solutions,
    .uiux-design,
    .qa-testing {
        padding: 60px 40px;
    }
    .services-hero .top-section, 
    .custom-software .top-section,
    .cyber-sec .top-section,
    .it-maintenance-support .top-section,
    .network-cloud .top-section,
    .process-automation .top-section,
    .surveillance-solutions .top-section,
    .uiux-design .top-section,
    .qa-testing .top-section {
        gap: 40px;
    }
    .services-hero .top-image,
    .custom-software .top-image,
    .cyber-sec .top-image,
    .it-maintenance-support .top-image,
    .network-cloud .top-image,
    .process-automation .top-image,
    .surveillance-solutions .top-image,
    .uiux-design .top-image,
    .qa-testing .top-image {
        text-align: center;
    }
}

@media (max-width: 992px) {
  .industry-section h2 {
    margin-bottom: 12px;
  }

  .industry-section .row.g-4 {
    margin-top: 24px;
  }
}

@media (max-width: 991px) {
  .industry-section .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .industry-section h2,
  .industry-section p {
    margin-left: auto;
    margin-right: auto;
  }
}



@media (max-width: 768px) {

    /* All service sections */
    .custom-software,
    .cyber-sec,
    .it-maintenance-support,
    .network-cloud,
    .process-automation,
    .qa-testing,
    .surveillance-solutions,
    .uiux-design {
        padding: 50px 20px;
    }

    /* All top sections */
    .services-hero .top-section,
    .custom-software .top-section,
    .cyber-sec .top-section,
    .it-maintenance-support .top-section,
    .network-cloud .top-section,
    .process-automation .top-section,
    .qa-testing .top-section,
    .surveillance-solutions .top-section,
    .uiux-design .top-section {
        flex-direction: column;
        text-align: center;
    }

    /* Remove heading left padding */
    .services-hero .top-text h2,
    .custom-software .top-text h2,
    .cyber-sec .top-text h2,
    .it-maintenance-support .top-text h2,
    .network-cloud .top-text h2,
    .process-automation .top-text h2,
    .qa-testing .top-text h2,
    .surveillance-solutions .top-text h2,
    .uiux-design .top-text h2 {
        padding-left: 0;
    }

    /* Remove vertical line */
    .services-hero .top-text h2::before,
    .custom-software .top-text h2::before,
    .cyber-sec .top-text h2::before,
    .it-maintenance-support .top-text h2::before,
    .network-cloud .top-text h2::before,
    .process-automation .top-text h2::before,
    .qa-testing .top-text h2::before,
    .surveillance-solutions .top-text h2::before,
    .uiux-design .top-text h2::before {
        display: none;
    }

    /* Image styling */
    .services-hero .top-image,
    .custom-software .top-image,
    .cyber-sec .top-image,
    .it-maintenance-support .top-image,
    .network-cloud .top-image,
    .process-automation .top-image,
    .qa-testing .top-image,
    .surveillance-solutions .top-image,
    .uiux-design .top-image {
        text-align: center;
        margin-top: 20px;
    }
    .services-hero .top-image img,
    .custom-software .top-image img,
    .cyber-sec .top-image img,
    .it-maintenance-support .top-image img,
    .network-cloud .top-image img,
    .process-automation .top-image img,
    .qa-testing .top-image img,
    .surveillance-solutions .top-image img,
    .uiux-design .top-image img {
        max-width: 90%;
    }

    /* CTA section */
    .Service-image-cta {
        padding: 60px 15px;
    }

    .Service-image-cta__inner {
        padding: 38px 26px;
    }
    
}
@media (max-width: 767px) {
  .service-img-wrapper {
    height: 180px;
  }
}

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

  .industry-section .col-lg-6:first-child {
    margin-bottom: 32px;
  }
}
 /** ==== MEDIA QUERY ENDS HERE === **/