/*---------------------------------------------------------------------
   File Name: style.css
   TekVion – Main stylesheet
---------------------------------------------------------------------*/

/* ========== Fonts ========== */

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,600i,700,700i,800,800i&display=swap');

@import url(font-awesome.min.css);
@import url(owl.carousel.min.css);

/* ========== CSS variables ========== */

:root {
     --primary: rgb(24, 164, 249);
     --accent: rgb(247, 105, 8);
     --primary-dark: rgb(7, 120, 192);
     --text-on-primary: #ffffff;
}

/* ========== Scroll dropdown effect (cards & components) ========== */
.scroll-drop {
     opacity: 0;
     transform: translateY(-44px);
     transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-drop.is-visible {
     opacity: 1;
     transform: translateY(0);
}
/* Optional stagger for grids – first child no delay, then incremental */
.scroll-drop-stagger .scroll-drop:nth-child(1) { transition-delay: 0ms; }
.scroll-drop-stagger .scroll-drop:nth-child(2) { transition-delay: 80ms; }
.scroll-drop-stagger .scroll-drop:nth-child(3) { transition-delay: 160ms; }
.scroll-drop-stagger .scroll-drop:nth-child(4) { transition-delay: 240ms; }
.scroll-drop-stagger .scroll-drop:nth-child(5) { transition-delay: 320ms; }
.scroll-drop-stagger .scroll-drop:nth-child(6) { transition-delay: 400ms; }
.scroll-drop-stagger .scroll-drop:nth-child(7) { transition-delay: 480ms; }
.scroll-drop-stagger .scroll-drop:nth-child(8) { transition-delay: 560ms; }
.scroll-drop-stagger .scroll-drop:nth-child(9) { transition-delay: 640ms; }
.scroll-drop-stagger .scroll-drop:nth-child(10) { transition-delay: 720ms; }
.scroll-drop-stagger .scroll-drop:nth-child(n+11) { transition-delay: 800ms; }

@media (max-width: 767px) {
	.scroll-drop {
		transform: translateY(-28px);
	}
}

/* ========== Tech theme animations ========== */
@keyframes techPulse {
	0%, 100% { box-shadow: 0 4px 20px rgba(24, 164, 249, 0.35), 0 0 0 0 rgba(24, 164, 249, 0.4); }
	50% { box-shadow: 0 6px 28px rgba(24, 164, 249, 0.5), 0 0 0 8px rgba(24, 164, 249, 0); }
}
@keyframes techPulseAccent {
	0%, 100% { box-shadow: 0 4px 20px rgba(247, 105, 8, 0.35); }
	50% { box-shadow: 0 6px 28px rgba(247, 105, 8, 0.5); }
}
@keyframes techShimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}
@keyframes titleLineIn {
	from { transform: scaleX(0); opacity: 0; }
	to { transform: scaleX(1); opacity: 1; }
}
@keyframes iconGlowRing {
	0% { transform: scale(1); opacity: 0.6; }
	100% { transform: scale(1.4); opacity: 0; }
}

/* Section titles: animated gradient line (draws in when section is visible) */
.titlepage h2 {
	position: relative;
	display: inline-block;
}
.titlepage h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: left;
	opacity: 0;
}
.titlepage.scroll-drop.is-visible h2::after,
.scroll-drop.is-visible.titlepage h2::after {
	animation: titleLineIn 0.6s ease-out forwards;
}

/* Primary buttons: subtle tech pulse on hover */
.read_more:hover,
.main_form .send_btn:hover {
	animation: techPulse 2s ease-in-out infinite;
}
.subs_btn:hover {
	animation: techPulseAccent 2s ease-in-out infinite;
}

/* Cards with tech glow: stronger hover glow */
.tech-glow:hover {
	animation: techPulse 2.5s ease-in-out infinite;
}

/* Solution & compliance card icons: glow ring on hover */
.solution-card-icon,
.compliance-card-icon {
	position: relative;
}
.solution-card-icon::before,
.compliance-card-icon::before {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px solid rgba(24, 164, 249, 0.5);
	opacity: 0;
	pointer-events: none;
}
.solution-card:hover .solution-card-icon::before,
.compliance-card:hover .compliance-card-icon::before {
	animation: iconGlowRing 0.8s ease-out forwards;
}

/* Service card: shimmer overlay on hover */
.service-card.tech-glow::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.06) 45%, transparent 55%);
	background-size: 200% 100%;
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
}
.service-card:hover.tech-glow::after {
	opacity: 1;
	animation: techShimmer 1.2s ease-in-out;
}

/* Nav link: subtle bottom line on hover */
.navigation .navbar-nav .nav-link {
	position: relative;
}
.navigation .navbar-nav .nav-link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transition: width 0.3s ease, left 0.3s ease;
}
.navigation .navbar-nav .nav-link:hover::after {
	width: 80%;
	left: 10%;
}

@media (prefers-reduced-motion: reduce) {
	.read_more:hover,
	.main_form .send_btn:hover,
	.subs_btn:hover,
	.tech-glow:hover { animation: none; }
}

/* ========== Base / reset ========== */

body {
     color: #666666;
     font-size: 14px;
     font-family: 'Poppins', sans-serif;
     line-height: 1.80857;
     font-weight: normal;
}

a {
     color: #222222;
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
     letter-spacing: 0;
     font-weight: normal;
     position: relative;
     padding: 0;
     line-height: normal;
     color: #111111;
     margin: 0;
}

h1 {
     font-size: 24px
}

h2 {
     font-size: 22px
}

h3 {
     font-size: 18px
}

h4 {
     font-size: 16px
}

h5 {
     font-size: 14px
}

h6 {
     font-size: 13px
}

*,
*::after,
*::before {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
     color: #212121;
     text-decoration: none!important;
     opacity: 1
}

button:focus {
     outline: none;
}

ul,
li,
ol {
     margin: 0px;
     padding: 0px;
     list-style: none;
}

p {
     margin: 0;
     padding: 0;
     font-weight: 400;
     font-size: 17px;
     line-height: 28px;
}

a,
.btn {
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}

img {
     max-width: 100%;
     height: auto;
}

:focus {
     outline: 0;
}

.btn-custom {
     margin-top: 20px;
}

.service_icon {
     width: 120px;
     height: 120px;
     margin: 0 auto;
     padding: 0;
     background: transparent;
     border-radius: 0;
     box-shadow: none;
     display: flex;
     align-items: center;
     justify-content: center;
}

.service_icon img {
     max-width: 100%;
     max-height: 120px;
     object-fit: contain;
}

.form-control:focus {
     border-color: #ffffff !important;
     box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}

.navbar-form input {
     border: none !important;
}

.badge {
     font-weight: 500;
}

blockquote {
     margin: 20px 0 20px;
     padding: 30px;
}

button {
     border: 0;
     margin: 0;
     padding: 0;
     cursor: pointer;
}

.full {
     width: 100%;
     float: left;
     margin: 0;
     padding: 0;
}

.titlepage {
     padding-bottom: 60px;
}

.titlepage::before {
     content: "";
     position: absolute;
     border: #fff solid 5px;
     border-width: 5px;
     width: 80px;
     z-index: 999;
     margin: 0 auto;
     left: 0;
     right: 0;
     top: 55px;
}

.titlepage h2 {
     font-size: 45px;
     font-weight: bold;
     line-height: 50px;
     color: #323232;
}

.read_more {
     display: inline-block;
     background: var(--primary);
     color: #fff;
     transition: transform 0.55s ease, background 0.3s ease, color 0.3s ease;
     max-width: 215px;
     height: 61px;
     line-height: 61px;
     width: 100%;
     font-size: 17px;
     text-align: center;
     font-weight: 500;
     transition: ease-in all 0.5s;
}

.read_more:hover {
     background: var(--primary-dark);
     color: #fff;
     transform: rotate(360deg);
     transition: transform 0.55s ease, background 0.3s ease, color 0.3s ease;
}

.img_responsive {
     max-width: 100%;
}

.text_align_center {
     text-align: center;
}

.text_align_left {
     text-align: left;
}

.text_align_right {
     text-align: right;
}

.d_flex {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
}

.container {
     max-width: 1170px;
}


/*----------------------------
   loader (preloader)
   Fallback: hides after 2.5s if JS doesn't run
----------------------------*/

.loader_bg {
     position: fixed;
     z-index: 9999999;
     background: #fff;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     transition: opacity 0.35s ease-out;
}

/* Fallback when JS fails or is slow: hide loader after 2.5s */
@keyframes loader-hide-fallback {
     0% { opacity: 1; visibility: visible; }
     90% { opacity: 1; visibility: visible; }
     100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

.loader_bg {
     animation: loader-hide-fallback 2.5s ease-out 1 forwards;
}

/* When JS takes over, stop the long fallback animation so fadeOut can run */
.loader_bg.loader-js-hiding {
     animation: none;
}

.loader {
     height: 100%;
     width: 100%;
     position: absolute;
     left: 0;
     top: 0;
     display: flex;
     justify-content: center;
     align-items: center;
}

.loader img {
     width: 280px;
}


/*--------------------------------------------------------------------- 
header 
---------------------------------------------------------------------*/

/* Header adjusted to a dark background so the colored logo and controls are visible */
.header {
      width: 100%;
      background: #000000; /* dark header so buttons are clearly visible */
      height: 106px;
      padding: 18px 30px;
      position: absolute;
      z-index: 999;
      box-shadow: 0 2px 12px rgba(0,0,0,0.4);
 }
 .header .row.d_flex {
      align-items: center;
      flex-wrap: nowrap;
 }

/* Fluid color header for the index page */
body.main-layout:not(.inner_page) .header {
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
 }
 
 /* Logo sizing and safe background so colored SVG reads clearly */
 .logo img {
     height: 60px;
     display: block;
     background: transparent;
 }
 
 /* Navigation: single horizontal row, no wrap – smaller size so all items fit */
 .navigation.navbar-dark .navbar-nav {
     flex-wrap: nowrap;
     align-items: center;
 }
 .navigation.navbar-dark .navbar-nav .nav-item {
     flex-shrink: 0;
 }
 .navigation.navbar-dark .navbar-nav .nav-link {
     padding: 0 10px;
     color: #ffffff;
     font-size: 13px;
     line-height: 20px;
     font-weight: 400;
     white-space: nowrap;
 }
 
.navigation.navbar-dark .navbar-nav .nav-link {
     display: inline-block;
     transition: transform 0.55s ease, color 0.2s ease;
 }
 .navigation.navbar-dark .navbar-nav .nav-link:focus,
 .navigation.navbar-dark .navbar-nav .nav-link:hover {
     color: var(--accent);
 }
 .navigation.navbar-dark .navbar-nav .nav-link:hover {
     transform: rotate(360deg);
 }
 
 /* Email/login icons on header – align with nav */
 ul.email {
     align-items: center;
     margin: 0;
     padding: 0;
 }
 ul.email li a {
     font-size: 13px;
     color: #ffffff;
     white-space: nowrap;
 }
 ul.email li i {
     color: #ffffff;
     font-size: 16px;
 }

/* Ensure navbar toggler icon is visible on dark header for collapsed mobile */
.navbar-toggler {
    border-color: rgba(255,255,255,0.1);
}
.navbar-toggler-icon {
    background-image: none;
    color: #fff;
    font-size: 22px;
}


/*--------------------------------------------------------------------- 
menu section
---------------------------------------------------------------------*/

.navigation.navbar {
     float: right;
     padding: 0;
}

.navigation.navbar-dark .navbar-nav .nav-link {
     padding: 0 10px;
     color: #fff;
     font-size: 13px;
     line-height: 20px;
     font-weight: 400;
     white-space: nowrap;
}

.navigation.navbar-dark .navbar-nav .nav-link:hover {
     transform: rotate(360deg);
}
.navigation.navbar-dark .navbar-nav .nav-link:focus,
.navigation.navbar-dark .navbar-nav .nav-link:hover {
     color: #fff;
}

.navigation.navbar-dark .navbar-nav .active>.nav-link,
.navigation.navbar-dark .navbar-nav .nav-link.active,
.navigation.navbar-dark .navbar-nav .nav-link.show,
.navigation.navbar-dark .navbar-nav .show>.nav-link {
     color: #fff;
}

.di_no {
     display: none;
}

ul.email {
     padding-top: 0;
     display: flex;
     align-items: center;
     justify-content: flex-end;
     flex-wrap: nowrap;
     gap: 8px;
}

ul.email li {
     padding: 0 8px;
}

ul.email li:nth-child(2) {
     padding-right: 0;
}

ul.email li a {
     font-size: 17px;
     color: #fff;
}

ul.email li i {
     color: #fff;
     font-size: 19px;
}


/** banner_main **/

#top_section {
     padding-top: 120px;
     position: relative;
     height: 100vh;
     background: #0a0e1a; /* fallback if images fail to load */
}

/* Rotating hero background (5 sec) – must sit above section background */
.banner_bg_rotator {
     position: absolute;
     inset: 0;
     z-index: 0;
     overflow: hidden;
}

.banner_bg_slide {
     position: absolute;
     inset: 0;
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
     opacity: 0;
     transition: opacity 1s ease-in-out;
}

.banner_bg_slide--active {
     opacity: 1;
     z-index: 1;
}

#top_section #particles-js {
     z-index: 1;
}

#top_section .container {
     position: relative;
     z-index: 2;
}

#myCarousel .carousel-indicators {
     bottom: -50px;
     margin-left: 11px;
     right: inherit;
}

#myCarousel .carousel-indicators .active {
     background: #0e0b01;
}

#myCarousel .carousel-indicators li {
     cursor: pointer;
     background: #fff;
     border-radius: 40px;
     width: 22px;
     height: 22px;
}

#myCarousel a.carousel-control-next,
#myCarousel a.carousel-control-prev {
     display: none;
}

.relative {
     position: inherit;
     bottom: 0;
     padding: 0;
}

.bluid {
     margin-top: 10px;
     font-family: 'Open Sans', sans-serif;
     text-align: left;
}

.banner_main .bluid h1 {
     color: #fff;
     font-size: 100px;
     line-height: 110px;
     font-weight: bold;
     padding-bottom: 25px;
}

.banner_main .bluid p {
     color: #fff;
     line-height: 25px;
     font-weight: 500;
     padding-bottom: 50px;
     font-size: 17px;
}

.banner_main .bluid .read_more {
     margin-right: 8px;
     background: #fff;
     color: #000;
}

.banner_main .bluid .read_more:hover {
     color: var(--text-on-primary);
     background: var(--primary-dark);
}


/** we_do **/

.we_do {
     background: linear-gradient(135deg, rgba(248, 249, 252, 0.96) 0%, rgba(240, 244, 249, 0.98) 100%), url('../images/hero-fiber-lights.png');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     padding: 100px 0 120px 0;
     position: relative;
     overflow: hidden;
}

.we_do::before {
     content: '';
     position: absolute;
     top: -50px;
     right: -100px;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(11, 120, 209, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 0;
     animation: float 20s infinite ease-in-out;
}

.we_do::after {
     content: '';
     position: absolute;
     bottom: -50px;
     left: -100px;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(11, 120, 209, 0.08) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 0;
     animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
     0%, 100% { transform: translateY(0px); }
     50% { transform: translateY(-30px); }
}

.we_do .container {
     position: relative;
     z-index: 1;
}

/* Wider container for index What We Do section */
body.main-layout:not(.inner_page) #what-we-do .container {
     max-width: 1320px;
}

body.main-layout:not(.inner_page) #what-we-do {
     padding-left: 10px;
     padding-right: 10px;
}

.we_do .titlepage::before {
     border: #0b78d1 solid 4px;
     transition: all 0.4s ease;
}

.we_do .titlepage:hover::before {
     border-color: #095fa8;
     transform: scale(1.1);
}

.we_do_intro {
     font-size: 19px !important;
     font-weight: 600 !important;
     color: #2b3b4a !important;
     line-height: 1.9 !important;
     max-width: 850px;
     margin: 0 auto !important;
     letter-spacing: 0.4px;
     background: linear-gradient(90deg, #0b2545 0%, #0b78d1 50%, #0b2545 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
     from {
          opacity: 0;
          transform: translateY(-20px);
     }
     to {
          opacity: 1;
          transform: translateY(0);
     }
}

.we1_do {
     position: inherit;
     padding: 0;
}

#bo_ho:hover {
     border: #292a2c solid 1px;
     transition: ease-in all 0.5s;
}

.we_box {
     border: #e6e7e8 solid 1px;
     transition: ease-in all 0.5s;
     padding: 0;
     margin-bottom: 26px;
}

.we_box.text_align_center {
    padding: 30px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.service_icon {
     width: 120px;
     height: 120px;
     margin: 0 auto 20px;
     padding: 12px;
     background: #ffffff;
     border-radius: 12px;
     box-shadow: 0 6px 18px rgba(0,0,0,0.06);
     display: flex;
     align-items: center;
     justify-content: center;
}

.service_icon img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     display: block;
}

.we_box h3 {
     color: #111;
     font-size: 20px;
     margin-bottom: 12px;
}

.service_title {
     margin-top: 12px;
     margin-bottom: 6px;
     font-weight: 600;
     color: #0b2545;
     font-size: 18px;
}

.we_box + .service_title + .collapse {
     margin-bottom: 8px;
}

.we_box + .service_title + .collapse + .read_more {
     display: inline-block;
     margin-bottom: 18px;
}

.we_box {
     border: none;
     background: transparent;
     padding: 0;
     width: auto;
     margin: 0 auto 6px auto;
     display: block;
     text-align: center;
}

.service_icon img {
     display: block;
     max-width: 140px;
     max-height: 140px;
     width: auto;
     height: auto;
     border-radius: 8px;
     box-shadow: none;
     transition: transform 180ms ease;
}

.service_icon img:hover {
     transform: translateY(-3px);
}

.we_box + .service_title + .collapse p {
     background: #f7f9fc;
     padding: 10px 12px;
     border-radius: 8px;
     color: #2b3b4a;
     margin: 6px auto 12px;
     max-width: 440px;
}

@media (max-width:767px){
     .we_box{ width:110px; }
     .service_icon img{ max-height:90px; }
     .service_title{ font-size:16px; }
}

/* we_do portfolio-style containers */
.we_do_portfolio{ margin-top:18px; }
.we_do_portfolio .portfolio_main{ margin-bottom:18px; }
.we_do_portfolio figure{ position:relative; overflow:hidden; border-radius:8px; }
.we_do_portfolio img{ width:100%; height:auto; display:block; }
.we_do_portfolio .portfolio_text{ position:absolute; left:12px; right:12px; bottom:12px; background:rgba(11,37,69,0.78); color:#fff; padding:10px 12px; border-radius:6px; opacity:0; transform:translateY(8px); transition:all .22s ease; }
.we_do_portfolio .portfolio_main:hover .portfolio_text{ opacity:1; transform:translateY(0); }
.we_do_portfolio .portfolio_text h3{ margin:0; font-size:16px; font-weight:600; }
.we_do_portfolio .portfolio_text p{ margin:6px 0 0; font-size:13px; color:#e8f1fb; }

@media (max-width:991px){
     .we_do_portfolio .col-md-3{ margin-bottom:12px; }
}

/* New High-Quality Service Cards */
.service-cards-row{ 
     margin-top: 60px; 
     margin-bottom: 40px;
     animation: fadeInUp 0.9s ease-out;
}

.services-carousel {
     position: relative;
}

.services-carousel .carousel-indicators {
     bottom: -40px;
}

.services-carousel .carousel-indicators li {
     background: #cfd8e6;
}

.services-carousel .carousel-indicators .active {
     background: #0b78d1;
}

.services-carousel .carousel-control-prev,
.services-carousel .carousel-control-next {
     width: 44px;
     height: 44px;
     top: 50%;
     transform: translateY(-50%);
     background: #ffffff;
     border-radius: 50%;
     box-shadow: 0 10px 22px rgba(11, 37, 69, 0.18);
     opacity: 1;
     cursor: pointer;
     pointer-events: auto;
     z-index: 10;
}

.services-carousel .carousel-control-prev {
     left: 12px;
}

.services-carousel .carousel-control-next {
     right: 12px;
}

.services-carousel .carousel-control-prev i,
.services-carousel .carousel-control-next i {
     color: #0b78d1;
     font-size: 22px;
     line-height: 44px;
}

.services-carousel .carousel-control-prev:hover,
.services-carousel .carousel-control-next:hover {
     background: #0b78d1;
     box-shadow: 0 12px 28px rgba(11, 120, 209, 0.35);
}

.services-carousel .carousel-control-prev:hover i,
.services-carousel .carousel-control-next:hover i {
     color: #fff;
}

/* Services carousel card sizing (index page) */
.services-carousel .service-card {
     width: 360px;
     height: 360px;
     margin: 0 auto;
}

.services-carousel .service-card-image {
     height: 180px;
     background: linear-gradient(135deg, rgba(7, 120, 192, 0.3) 0%, rgba(24, 164, 249, 0.2) 100%);
}

@keyframes fadeInUp {
     from {
          opacity: 0;
          transform: translateY(30px);
     }
     to {
          opacity: 1;
          transform: translateY(0);
     }
}

/* Solutions grid (What we do) */
.solutions-section {
     margin-top: 70px;
     padding-top: 50px;
     border-top: 1px solid rgba(24, 164, 249, 0.2);
}

.solutions-section .titlepage h2 {
     font-size: 28px;
     font-weight: 700;
     color: #0b2545;
     margin-bottom: 40px;
}

.solutions-grid {
     margin-top: 20px;
}

.solution-card {
     background: #fff;
     border: 1px solid #e6edf5;
     border-radius: 16px;
     padding: 28px 24px;
     text-align: center;
     height: 100%;
     min-height: 160px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     transition: all 0.35s ease;
     box-shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
}

.solution-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 16px 40px rgba(11, 120, 209, 0.15);
     border-color: rgba(24, 164, 249, 0.3);
}

.solution-card-icon {
     width: 56px;
     height: 56px;
     min-width: 56px;
     border-radius: 14px;
     background: linear-gradient(135deg, rgba(24, 164, 249, 0.15) 0%, rgba(247, 105, 8, 0.1) 100%);
     color: var(--primary);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 26px;
     margin-bottom: 16px;
     transition: all 0.35s ease;
}

.solution-card:hover .solution-card-icon {
     background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
     color: #fff;
     transform: scale(1.08);
}

.solution-card-title {
     font-size: 16px;
     font-weight: 700;
     color: #0b2545;
     margin: 0;
     line-height: 1.4;
}

/* Card Container */
.service-card {
     width: 100%;
     max-width: 520px;
     min-height: 420px;
     background: linear-gradient(135deg, rgba(24, 164, 249, 0.15) 0%, rgba(7, 120, 192, 0.25) 100%);
     border: 2px solid rgba(24, 164, 249, 0.3);
     border-radius: 16px;
     overflow: hidden;
     transition: all 0.4s ease;
     position: relative;
     display: flex;
     flex-direction: column;
}

/* What we do page: larger, equal, rounded-square cards */
body.inner_page .we_do .service-card {
     border-radius: 24px;
     width: 380px;
     height: auto;
     margin: 0 auto;
}

body.inner_page .we_do .service-card-image {
     height: 230px;
     width: 380px;
}

body.inner_page .we_do .service-card-content {
     padding: 30px 28px;
     height: 190px;
     display: flex;
     flex-direction: column;
     justify-content: center;
}

body.inner_page .we_do .service-card-content h3 {
     font-size: 28px;
}

body.inner_page .we_do .service-card-content p {
     font-size: 16px;
     line-height: 1.9;
}

@media (max-width: 991px) {
     body.inner_page .we_do .service-card-image {
          height: 300px;
     }
     body.inner_page .we_do .service-card {
          min-height: 560px;
     }
}

@media (max-width: 767px) {
     body.inner_page .we_do .service-card-image {
          height: 260px;
     }
     body.inner_page .we_do .service-card {
          min-height: 520px;
     }
}

/* Glow effect */
.service-card.tech-glow::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(120deg, rgba(247, 105, 8, 0.12), rgba(24, 164, 249, 0.18), transparent);
     opacity: 0;
     transition: 0.4s;
}

.service-card:hover.tech-glow::before {
     opacity: 1;
}

/* Hover effect */
.service-card:hover {
     transform: translateY(-6px) scale(1.01);
     box-shadow: 0 25px 60px rgba(24, 164, 249, 0.4), 0 0 40px rgba(247, 105, 8, 0.2);
     border-color: rgba(247, 105, 8, 0.6);
}

/* Image Section */
.service-card-image {
     width: 100%;
     height: 240px;
     position: relative;
     overflow: hidden;
}

/* Number badge (01,02...) */
.service-card-image::after {
     content: attr(data-card-num);
     position: absolute;
     top: 12px;
     right: 14px;
     font-size: 22px;
     font-weight: 700;
     color: rgba(255,255,255,0.85);
     background: rgba(0,0,0,0.45);
     padding: 6px 12px;
     border-radius: 10px;
     backdrop-filter: blur(6px);
}

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

.services-carousel .service-card-image img {
     height: auto;
     object-fit: contain;
}

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

/* Content */
.service-card-content {
     padding: 22px 24px;
     text-align: left;
     flex: 1;
}

.service-card-content h3 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 10px;
     color: #ffffff;
}

.service-card-content p {
     font-size: 14.5px;
     line-height: 1.6;
     color: rgba(255,255,255,0.92);
     margin: 0;
}

/* Primary Call-to-Action Button */
.service-card-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0b78d1 0%, #095fa8 100%);
  color: #fff !important;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.6px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 16px 32px rgba(11, 120, 209, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.service-card-primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.service-card-primary-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-primary-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 24px 48px rgba(11, 120, 209, 0.55);
  gap: 16px;
  border-color: rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #0b78d1 0%, #0a4d85 100%);
}

.service-card-primary-btn:hover::before {
  left: 100%;
}

.service-card-primary-btn:hover::after {
  opacity: 1;
}

.service-card-primary-btn i {
  font-size: 15px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.service-card-primary-btn:hover i {
  transform: translateX(6px);
}

/* Responsive adjustments for service cards */
@media (max-width: 1199px) {
  .service-card-image {
    height: 290px;
  }
  
  .service-card-content {
    padding: 32px;
  }
  
  .service-card-content h3 {
    font-size: 23px;
  }
  
  .service-card-content p {
    font-size: 14px;
  }
  
  .service-card:hover {
    transform: translateY(-16px) scale(1.02);
  }
}

@media (max-width: 767px) {
  .service-cards-row {
    margin-top: 40px;
    margin-bottom: 25px;
  }
  
  .service-card-image {
    height: 240px;
  }
  
  .service-card-image::before {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  
  .service-card-content {
    padding: 28px 24px;
  }
  
  .service-card-content h3 {
    font-size: 21px;
    margin-bottom: 12px;
  }
  
  .service-card-content p {
    font-size: 13px;
  }
  
  .service-card-primary-btn {
    padding: 15px 36px;
    font-size: 14px;
    gap: 10px;
  }
  
  .service-card-primary-btn i {
    font-size: 13px;
  }
  
  .service-card:hover {
    transform: translateY(-12px) scale(1.01);
  }
}



.we_box p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Adjust read_more for service cards */
.we_box .read_more {
    max-width: 140px;
    height: 44px;
    line-height: 44px;
    border-radius: 6px;
    background: var(--primary);
}

#we1 .carousel-indicators {
     display: none;
}

#we1 a.carousel-control-next,
#we1 a.carousel-control-prev {
     background: #ffffff;
     width: 67px;
     height: 59px;
     top: 109%;
     opacity: 1;
     font-size: 33px;
     color: #000000;
     box-shadow: 3px 0 36px rgba(30, 30, 30, 0.2);
}

#we1 a.carousel-control-prev {
     left: 43%;
}

#we1 a.carousel-control-next {
     right: 43%;
}

#we1 a.carousel-control-next:focus,
#we1 a.carousel-control-next:hover,
#we1 a.carousel-control-prev:focus,
#we1 a.carousel-control-prev:hover {
     background: #464646;
     color: #fff;
     opacity: 1;
}


/** end we_do **/


/** about **/

.about {
     background: #f8f9fc;
     background-image: linear-gradient(135deg, rgba(248, 249, 252, 0.94) 0%, rgba(248, 249, 252, 0.97) 100%), url('../images/about-code.png');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     min-height: 60vh;
     padding: 90px 0;
}

.about .titlepage::before {
     border: #0b78d1 solid 5px;
}

.about .titlepage {
     padding-bottom: 0;
     margin-bottom: 0px;
}

.about .titlepage h2 {
     color: #0b2545;
}

.about .titlepage p {
     line-height: 28px;
     padding-top: 20px;
     color: #2b3b4a;
     font-size: 17px;
}

.about_intro {
     max-width: 820px;
     margin: 0 auto;
     font-weight: 500;
     color: #2b3b4a;
}

.about_executive_row {
     margin-top: 36px;
}

.about_executive {
     background: #ffffff;
     border: 1px solid #e6edf5;
     border-radius: 16px;
     padding: 32px 36px;
     box-shadow: 0 10px 26px rgba(11, 37, 69, 0.08);
}

.about_executive_title {
     font-size: 22px;
     font-weight: 700;
     margin: 0 0 8px 0;
     color: #0b2545;
}

.about_executive_company {
     font-size: 16px;
     font-weight: 700;
     letter-spacing: 0.04em;
     color: var(--primary);
     margin: 0 0 16px 0;
}

.about_executive_text {
     font-size: 15px;
     line-height: 1.8;
     margin: 0;
     color: #556575;
}

.about_vm {
     margin-top: 40px;
}

.about_card {
     background: #ffffff;
     border: 1px solid #e6edf5;
     border-radius: 16px;
     padding: 28px 26px;
     color: #0b2545;
     box-shadow: 0 10px 26px rgba(11, 37, 69, 0.08);
     height: 100%;
}

.about_card h3 {
     font-size: 22px;
     font-weight: 700;
     margin-bottom: 12px;
     color: #0b2545;
}

.about_card p {
     font-size: 15px;
     line-height: 1.8;
     margin: 0;
     color: #556575;
}

.tech-glow {
     box-shadow: 0 12px 30px rgba(11, 120, 209, 0.18);
     transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.tech-glow:hover {
     box-shadow: 0 20px 50px rgba(11, 120, 209, 0.3);
     transform: translateY(-4px);
}


/** end about **/


/** portfolio **/

.portfolio {
     padding-top: 90px;
     padding-bottom: 90px;
     background: #fff;
}

.portfolio .titlepage::before {
     right: inherit;
     border: #2e2f34 solid 5px;
     left: 15px;
}

.portfolio_main {
     margin-bottom: 30px;
     transition: ease-in all 0.5s;
}

.portfolio_main figure {
     margin: 0;
     position: relative;
     overflow: hidden;
}

#ho_nf:hover {
     box-shadow: 3px 0 20px rgba(30, 30, 30, 0.31);
     transition: ease-in all 0.5s;
}

#ho_nf:hover .portfolio_text {
     height: 240px;
     transition: ease-in all 0.5s;
     padding: 40px 40px;
}

#ho_nf:hover .li_icon {
     margin-top: -65px;
     transition: ease-in all 0.7s;
}

.portfolio_text {
     cursor: pointer;
     position: absolute;
     transition: ease-in all 0.5s;
     bottom: 0;
     height: 0;
     background: #fff;
     overflow: initial;
}

.li_icon {
     display: flex;
     transition: ease-in all 0.7s;
     z-index: 99999999999999999999999;
     position: absolute;
}

.li_icon a {
     background: #fff;
     width: 60px;
     height: 60px;
     border-radius: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #3a404e;
     box-shadow: 3px 0 9px rgba(30, 30, 30, 0.09);
}

.li_icon a:hover {
     background: #0f1012;
     color: #fff;
}

.portfolio_text h3 {
     color: #0c0c0d;
     font-size: 24px;
     line-height: 30px;
     font-weight: bold;
     padding-bottom: 15px;
}

.portfolio_text p {
     color: #031330;
     font-size: 17px;
     line-height: 30px;
     padding-bottom: 15px;
}

.portfolio .read_more {
     margin: 0 auto;
     display: block;
     background: #252525;
     margin-top: 30px;
}

.portfolio .read_more:hover {
     background: #464646c7;
}


/* end portfolio */


/* chose */

.chose {
     padding: 90px 0 60px 0;
     background: linear-gradient(90deg, rgba(7, 120, 192, 0.88) 0%, rgba(247, 105, 8, 0.85) 100%), url('../images/chose-geometric.png');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
}

.chose .titlepage::before {
     right: inherit;
     left: 15px;
}

.chose .titlepage h2 {
     color: #fff;
}

.chose .titlepage p,
.chose_intro {
     color: #fff;
     padding-top: 15px;
}

.chose_intro {
     max-width: 800px;
     margin: 0 auto 40px;
     font-size: 16px;
     line-height: 1.6;
}

.chose_box {
     margin-bottom: 30px;
}

.chose_box h3 {
     padding-top: 20px;
     color: #fff;
     font-weight: bold;
     font-size: 30px;
     line-height: 35px;
}

.chose_box strong {
     display: block;
     color: #fff;
     font-weight: bold;
     font-size: 48px;
     line-height: 60px;
     padding-bottom: 30px;
}

.chose_box .read_more {
     background: #fff;
     color: #323232;
     max-width: 176px;
     line-height: 47px;
     height: 47px;
}

.chose_box .read_more:hover {
     background: #0e0b01;
     color: #fff;
}


/** end chose **/


/** contact section **/

.contact {
     background: #fefeff;
     padding: 90px 0;
}

.contact .titlepage::before {
     right: inherit;
     border: #2e2f34 solid 5px;
     left: 15px;
}

.main_form .contactus {
     border: #d2d2d3 solid 1px;
     padding: 0 15px;
     margin-bottom: 25px;
     width: 100%;
     height: 71px;
     background: #fff;
     color: #888888;
     font-size: 16px;
     font-weight: normal;
}

.main_form .textarea {
     border: #d2d2d3 solid 1px;
     margin-bottom: 25px;
     width: 100%;
     background: #fff;
     color: #888888;
     font-size: 18px;
     font-weight: normal;
     padding: 57px 15px 0 15px;
     border-radius: 0;
     height: 150px;
}

.main_form .send_btn {
     font-size: 17px;
     transition: transform 0.55s ease, background-color 0.3s ease, color 0.3s ease;
     background-color: var(--primary);
     text-transform: uppercase;
     color: #fff;
     padding: 25px 0px;
     max-width: 252px;
     width: 100%;
     display: block;
     margin-top: 10px !important;
     font-weight: bold;
}

.main_form .send_btn:hover {
     background-color: var(--primary-dark);
     color: #fff;
     transform: rotate(360deg);
     transition: transform 0.55s ease, background-color 0.3s ease, color 0.3s ease;
}

#request *::placeholder {
     color: #888888;
     opacity: 1;
}


/** end contact section **/


/** testimonial **/

.posi_in {
     position: inherit;
     padding: 0;
}

.clientsl_text {
     margin-top: 90px;
     box-shadow: 0px 0 11px rgba(30, 30, 30, 0.07);
     padding: 40px;
     margin-bottom: 26px;
}

.clientsl_text i {
     display: block;
     text-align: center;
}

.clientsl_text i img {
     margin-top: -89px;
     display: block;
     margin-left: auto;
     margin-right: auto;
     float: none;
     border-radius: 50%;
}

.clientsl_text h3 {
     margin-top: 8px;
     color: #000b0a;
     font-size: 23px;
     font-weight: bold;
     line-height: 20px;
     text-align: center;
}

.clientsl_text p {
     color: #757575;
     padding-top: 62px;
     display: block;
}

#clientsl .carousel-indicators {
     display: none;
}

#clientsl a.carousel-control-next,
#clientsl a.carousel-control-prev {
     background: #ffffff;
     width: 67px;
     height: 59px;
     top: 105%;
     opacity: 1;
     font-size: 33px;
     color: #000000;
     box-shadow: 3px 0 36px rgba(30, 30, 30, 0.2);
}

#clientsl a.carousel-control-prev {
     left: 37%;
}

#clientsl a.carousel-control-next {
     right: 37%;
}

#clientsl a.carousel-control-next:focus,
#clientsl a.carousel-control-next:hover,
#clientsl a.carousel-control-prev:focus,
#clientsl a.carousel-control-prev:hover {
     background: #252525;
     color: #fff;
     opacity: 1;
}


/** end testimonial **/


/** footer **/

.footer {
     background: var(--primary-dark);
     padding-top: 90px
}

.newslatter_form {
     display: flex;
     align-items: center;
     margin-bottom: 70px;
}

.ente {
     color: #000;
     border: inherit;
     padding: 0 30px;
     height: 66px;
     width: 100%;
     font-size: 17px;
}

.subs_btn {
     max-width: 289px;
     display: inline-block;
     background: var(--primary);
     transition: transform 0.55s ease, background 0.3s ease, color 0.3s ease;
     height: 66px;
     width: 100%;
     color: #fff;
     font-size: 17px;
     text-transform: uppercase;
     font-weight: bold;
     transition: ease-in all 0.5s;
}

.subs_btn:hover {
     background: var(--accent);
     color: #fff;
     transform: rotate(360deg);
     transition: transform 0.55s ease, background 0.3s ease, color 0.3s ease;
}

.Informa h3 {
     color: #ffffff;
     font-size: 23px;
     font-weight: bold;
     line-height: 21px;
     margin-bottom: 15px;
     margin-top: 26px;
     text-transform: uppercase;
}

.Informa li {
     font-size: 17px;
     line-height: 37px;
     color: #ffffff;
}

.Informa li a {
     display: inline-block;
     transition: transform 0.55s ease, color 0.2s ease;
}
.Informa li a:hover {
     color: #bdbdbe;
     transform: rotate(360deg);
}

.helpful ul li a {
     color: #fff;
     font-size: 17px;
     line-height: 30px;
}

.helpful ul li a:hover {
     color: #bdbdbe;
}

ul.social_icon {
     float: right;
}

ul.social_icon li {
     display: inline-block;
     padding-right: 15px;
}

ul.social_icon li:last-child {
     padding-right: 0;
}

ul.social_icon li a {
     color: #fff;
     display: inline-block;
     text-align: center;
     line-height: 33px;
     font-size: 28px;
     font-weight: bold;
}

ul.social_icon li a:hover {
     color: #bdbdbe;
     transform: rotate(360deg);
     transition: ease-in all 0.7s;
}

.conta ul li a {
     color: #ffffff;
}

.conta ul li a i {
     padding-right: 5px;
}

.copyright {
     background: rgba(0,0,0,0.18);
     margin-top: 80px;
     padding: 20px 0px;
}

.copyright p {
     color: #bdbdbe;
     font-weight: 400;
}

.copyright a {
     color: #bdbdbe;
}

.copyright a:hover {
     color: #fff;
}


/** end footer **/


/*- - ener page css--*/

.inner_page .header {
     box-shadow: 0 -3px 20px 0px #717171;
     position: inherit;
   
}

.inner_page .about {
     margin: 90px 0;
}


/* ========== Compliance page ========== */

.compliance-hero {
     background: linear-gradient(135deg, #0b2545 0%, #0b78d1 50%, #095fa8 100%);
     padding: 70px 0 60px;
     position: relative;
     overflow: hidden;
}

.compliance-hero::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -20%;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
     border-radius: 50%;
     pointer-events: none;
}

.compliance-hero-inner {
     position: relative;
     z-index: 1;
     text-align: center;
     max-width: 820px;
     margin: 0 auto;
}

.compliance-hero h1 {
     font-size: 42px;
     font-weight: 700;
     color: #fff;
     margin: 0 0 20px 0;
     line-height: 1.2;
     letter-spacing: -0.02em;
}

.compliance-hero-intro {
     font-size: 18px;
     line-height: 1.65;
     color: rgba(255, 255, 255, 0.92);
     margin: 0;
}

.compliance-list {
     padding: 70px 0 80px;
     background: #f8f9fc;
}

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

.compliance-card {
     display: flex;
     align-items: flex-start;
     gap: 24px;
     background: #fff;
     border: 1px solid #e6edf5;
     border-radius: 16px;
     padding: 28px 32px;
     margin-bottom: 20px;
     box-shadow: 0 8px 24px rgba(11, 37, 69, 0.06);
     transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.compliance-card:last-child {
     margin-bottom: 0;
}

.compliance-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 16px 40px rgba(11, 120, 209, 0.12);
     border-color: rgba(24, 164, 249, 0.25);
}

.compliance-card-icon {
     width: 56px;
     height: 56px;
     min-width: 56px;
     border-radius: 14px;
     background: linear-gradient(135deg, rgba(24, 164, 249, 0.15) 0%, rgba(247, 105, 8, 0.1) 100%);
     color: var(--primary);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     transition: transform 0.3s ease, background 0.3s ease;
}

.compliance-card:hover .compliance-card-icon {
     background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
     color: #fff;
     transform: scale(1.05);
}

.compliance-card-body {
     flex: 1;
}

.compliance-card-body h3 {
     font-size: 20px;
     font-weight: 700;
     color: #0b2545;
     margin: 0 0 10px 0;
     line-height: 1.3;
}

.compliance-card-body p {
     font-size: 15px;
     line-height: 1.7;
     color: #556575;
     margin: 0;
}

.compliance-cta {
     padding: 50px 0 70px;
     background: #fff;
     text-align: center;
}

.compliance-cta-text {
     font-size: 18px;
     font-weight: 600;
     color: #2b3b4a;
     margin: 0 0 20px 0;
}

.compliance-cta .read_more {
     margin: 0 auto;
}

@media (max-width: 767px) {
     .compliance-hero {
          padding: 50px 0 40px;
     }
     .compliance-hero h1 {
          font-size: 28px;
     }
     .compliance-hero-intro {
          font-size: 16px;
     }
     .compliance-list {
          padding: 50px 0 60px;
     }
     .compliance-card {
          flex-direction: column;
          gap: 16px;
          padding: 22px 20px;
     }
     .compliance-card-icon {
          width: 48px;
          height: 48px;
          min-width: 48px;
          font-size: 20px;
     }
     .compliance-card-body h3 {
          font-size: 18px;
     }
     .compliance-card-body p {
          font-size: 14px;
     }
}