/* ---------- CSS Variables ---------- */
:root {
  --primary: #5db1ba;
  --primary-dark: #6b91a1;
    --primaryc6e4f1: #c6e4f1;
  --dark: #293033;
  --dark-2: #2a2a2a;
  --light: #f1f6f9;
  --text: #555;
  --text-light: #888;
  --white: #ffffff;
  --teambg:#f1f6f9;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 50px;
  --section-pad: 90px 0;
  --shadow: 0 8px 40px rgba(0,0,0,.10);
  --shadow-hover: 0 20px 60px rgba(0,0,0,.18);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    --bg:          #f0f4f8;
    --navy:        #1B3A6B;
    --navy-deep:   #0d2040;
    --teal:        #3AABB8;
    --teal-light:  #5dcbd8;
    --teal-pale:   #e4f4f6;
    --orange:      #E8541A;
    --orange-lt:   #ff7340;
    --card-bg:     #ffffff;
    --border-col:  #d8e4ed;
    --text-muted:  #6b7fa3;
    --text-body:   #2d3d58;


}

/* ---------- Base Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Inter', sans-serif;
	font-size: 17px;
	color: var(--black);
	line-height: 1.6;
}
p{ font-family: "Open Sans", sans-serif;}
.bg_1{background:#f2f2f2;}
.color-1{color: var( --primaryc6e4f1);}
h1,h2,h3,h4,h5,h6 {  /*! color: var(--dark); */ }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }

h2 {
   color: var(--dark);
   font-size: 3rem;
}


/* ---------- Utility ---------- */
.section-pad { padding: var(--section-pad); }
.bg-light-section { background: var(--light); }

.section-eyebrow {
  
font-size: 13px;
  
font-weight: 600;
  
/* letter-spacing: 3px; */
  
text-transform: uppercase;
  
color: var(--primary);
  
display: block;
  
margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  /*! font-weight: 700; */
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-sub {
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 12px 32px;
  
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,110,253,.35);
}
.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: var(--radius-lg);
  padding: 12px 32px;
  
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
.btn-outline-primary-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 12px 36px;
  
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  transition: var(--transition);
}
.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-cta-white {
  background: transparent;
  color: var(--white);
  border: 2px solid #fff;
  border-radius: var(--radius-lg);
  padding: 14px 40px;
  
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1.5px;
  transition: var(--transition);
}
.btn-cta-white:hover {
  background: var(--white);
  color: #000;
  /*! transform: translateY(-2px); */
}

/* ============================================================
   TOP BAR
============================================================ */
.top-bar {
  background: var(--dark);
  padding: 9px 0;
  font-size: 13px;
  z-index: 1100;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 7px;
}
.btn-lang {
  background: none;
  border: none;
  color: rgba(255,255,255,1);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-lang:hover {
  color: #fff;
}
.btn-lang.active {
  color: var(--primary);
  font-weight: 700;
}
.lang-divider {
  color: rgba(255,255,255,.5);
}

.top-contact a {
  color: rgba(255,255,255,1);
  font-size: 12.5px;
  transition: var(--transition);
}
.top-contact a:hover { color: #fff; }
.top-contact a i { color: var(--primary); }
.top-social a {
  color: var(--primary);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.top-social a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
============================================================ */
.main-navbar {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  z-index: 1050;
  transition: var(--transition);
}
.main-navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.12);
}
.navbar-brand {
  
  font-size: 22px;
  font-weight: 800;
  color: var(--dark) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand span { color: var(--primary); }
.brand-icon {
  background: var(--primary);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.main-navbar .nav-link {
  
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 8px 14px !important;
  position: relative;
  transition: var(
  --transition);
}
.main-navbar .nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.main-navbar .nav-link:hover::before,
.main-navbar .nav-link.active::before { width: calc(100% - 28px); }
.main-navbar .nav-link:hover { color: var(--primary) !important; }
.main-navbar .nav-link.active { color: var(--primary) !important; }

/* Hide hamburger on desktop */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
  .collapse.navbar-collapse {
    display: flex !important;
  }
}

/* Show hamburger on mobile */
@media (max-width: 991px) {
  .collapse.navbar-collapse {
    display: none !important;
  }
}

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1170px; overflow: hidden;
    }

.btn-icon-search {
  background: none;
  border: none;
  color: var(--dark);
  font-size: 16px;
  padding: 6px 10px;
  transition: var(--transition);
}
.btn-icon-search:hover { color: var(--primary); transform: scale(1.1); }

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  padding: 8px;
}
.dropdown-item {
  border-radius: 8px;
  
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--primary); color: #fff; }

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.search-overlay.active { display: flex; }
.search-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 90%;
  max-width: 640px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 24px;
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  
  color: var(--dark);
}
.search-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.search-close:hover { color: var(--primary); transform: rotate(90deg); }

/* Offcanvas */
.offcanvas {
	max-width: 100%;
	z-index: 1111;
}
.offcanvas-title {  font-weight: 700; }
.offcanvas .nav-link {
  
  font-weight: 500;
  color: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.offcanvas .nav-link:hover { color: var(--primary); padding-left: 8px; }

/* ============================================================
   MEGAMENU (DESKTOP)
============================================================ */
.dropdown-hover {
  position: relative;
}

.dropdown-hover:hover > .mega-menu {
  display: block;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  gap: 32px;
  z-index: 1200;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mega-item {
  display: block;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.mega-item:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 20px;
}

/* ============================================================
   MOBILE OFFCANVAS SIDEBAR
============================================================ */
.offcanvas-start {
  width: 300px;
  background: #fff;
}

.offcanvas-header {
  border-bottom: 2px solid var(--light);
  padding: 20px;
}

.offcanvas-title {
  
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.offcanvas-body {
  padding: 0;
}

.offcanvas-body .navbar-nav {
  gap: 0 !important;
}

.offcanvas-body .nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.offcanvas-body .nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 14px 20px !important;
  font-size: 15px;
  transition: var(--transition);
}

.offcanvas-body .nav-link:hover {
  color: var(--primary);
  background: var(--light);
}

/* Mobile Submenu Toggle */
.btn-submenu-toggle {
  background: none;
  border: none;
  color: var(--text-light);
  padding: 8px 12px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 12px;
}

.btn-submenu-toggle:hover {
  color: var(--primary);
}

.btn-submenu-toggle.active {
  color: var(--primary);
  transform: rotate(90deg);
}

/* Mobile Submenu */
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fafafa;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.submenu.show {
  max-height: 500px;
}

.submenu .nav-link {
  padding: 10px 20px !important;
  font-size: 14px;
  color: var(--text-light);
}

.submenu .nav-link:hover {
  color: var(--primary);
  padding-left: 28px !important;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  position: relative;
  min-height: 78vh;
  background: url('../images/home-banner.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  /*! padding-bottom: 180px; */
}
.hero-section.products-banner {
  position: relative;
  min-height: 78vh;
  background: url('../images/products-banner.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  /*! padding-bottom: 180px; */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.72) 0%, rgba(13,110,253,.25) 100%);
}
.hero-section .container-xl { position: relative; z-index: 2; width: 100%; }
.hero-sub {
  
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
}
.hero-title {
  
  font-size: clamp(3rem, 8vw, 3.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
  margin-bottom: 20px;
}
.hero-desc {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.top100 {
  margin-top: 150px;
}
#Cards { margin-top: -280px; }

/* Card Design */
.service-card {
    background: rgba(255,255,255);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 20px 19px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Icon Circle */
.icon-box {
    width: 90px;
    height: 90px;
    background: #e9e9e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    font-size: 35px;
    color: #333;
}

/* About Section */
.about-section {
    /*! background: #f2f2f2; */
    padding: 88px 0;
}

/* Heading */
.about-content h2 {
    margin-bottom: 30px;
}

/* List */
.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-list li {
    font-size: 18px;
    margin-bottom: 15px;
    color: #111111;
}

.about-list li i {
    color:var(--primary);
    margin-right: 10px;
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary);
    border-radius: 30px;
    color:var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.about-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* Image */
.about-img img {
    width: 100%;
    max-width: 450px;
    
}

.bor-50 img{
    border-radius: 50px;
}

.products-content {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
}
.counter-number {
	font-size: 38px;
	font-weight: bold;
	color: var(--primary);
	margin-top: 12px;
}


.hub-title{
    font-size:42px;
    font-weight:500;
}

.hub-item h5{
    font-size:22px;
    font-weight:500;
}

.hub-item p{
    color:#555;
    margin-top:15px;
    line-height:1.7;
}

/* underline line */
.hub-line{
    width:85%;
    height:2px;
    background:var(--primary);
    margin-top:10px;
}

/* image card */
.hub-image{
    border-radius:35px;
    overflow:hidden;
    background:#ddd;
    padding:20px;
}

.hub-image img{
    width:100%;
    border-radius: var(--radius-lg);
    object-fit:cover;
}

.team-section{
    background:var(--teambg);
    padding:80px 0;
}

.team-title{
    font-size:48px;
    font-weight:500;
}

.team-desc{
    max-width:700px;
    margin:15px auto 40px;
    color:#555;
    font-size:17px;
}

.team-card{
    background:var(--white);
    padding: 33px;
    border-radius:var(--radius-lg);
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-8px);
}

.team-img{
    border-radius:30px;
    overflow:hidden;
    margin-bottom:20px;
}

.team-img img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.team-card h4{
    font-size:22px;
    margin-bottom:5px;
}

.team-card span{
    color:#777;
    font-size:16px;
}

.form-card {
      background-color: #f0f0f0;
      border-radius: var(--radius-lg);
      padding: 30px 28px;
      width: 100%;
    }
 
    .form-label {
      font-size: 0.92rem;
      color: #444;
      margin-bottom: 6px;
      font-weight: 500;
    }
 
    .form-control {
      background-color: #ffffff;
      border: none;
      border-radius: var(--radius-lg);
      padding: 12px 18px;
      font-size: 0.9rem;
      color: #555;
      box-shadow: none;
      transition: box-shadow 0.2s ease;
    }
 
    .form-control:focus {
      box-shadow: 0 0 0 3px rgba(100, 160, 175, 0);
      outline: none;
    }
    .mb-form input:focus, .mb-form textarea:focus {
    border-color: #e21c21;
}
 
    textarea.form-control {
      border-radius: var(--radius-md);
      resize: vertical;
      min-height: 112px;
      resize: none;
    }
 
    .btn-send {
      background-color: var(--primary);
      color: #fff;
      border: none;
      border-radius: var(--radius-lg);
      padding: 11px 36px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: background-color 0.25s ease, transform 0.15s ease;
    }
 
    .btn-send:hover {
      background-color: #5f97a3;
      color: #fff;
    }
 
        .mb-form {
    position: relative;
}

    .mb-form label.error {
    position: absolute;
    left: 0;
    bottom: -17px;
    font-size: 12px;
    color: #e21c21;
      }
.capcha2div {
    display: flex;
    align-items: center;
    gap: 20px;
}
.capcha2div img {
    width: 128px;
}
 
    .mb-form {
      margin-bottom: 8px;
    }

/* Responsive */
@media(max-width:991px){
    .hub-title{
        font-size:32px;
        text-align:center;
    }
}
/* Responsive */
@media(max-width:992px){
    .about-content {
        margin-bottom: 40px;
        text-align: center;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(90deg, #1f2a2e, #2c3b40);
    color: #fff;
    padding-top: 80px;
}
.footer-section a{color: var(--primary);}
.footer-section a:hover{color: var(--white);}

/* Top CTA */
.footer-top h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.footer-top p {
    color: #ccc;
}

.cta-btn {
    background: var(--primary);
    padding: 15px 35px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.cta-btn:hover {
    background: #6c97a6;
    color: #fff;
}

/* Footer Main */
.footer-main h4 {
    margin-bottom: 20px;
    font-size: 33px;
}


/* Address */
.address i {
    margin-right: 10px;
}

/* Map link */
.map-link {
    color: #7fa9b8;
    text-decoration: underline;
    font-size: 14px;
}

/* Social */
.social-icons i {
    margin-right: 15px;
    cursor: pointer;
}

/* Phone */
.phone {
	font-size: 24px;
	color: #7fa9b8;
	font-weight: bold;
}

.flag-icon{
  width:22px;
  height:22px;
  border-radius:50%;   
  object-fit:cover;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
}

.footer-links a:hover {
    color: #fff;
}

/* Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 15px;
    margin-top: 40px;
    font-size: 14px;
}

/* Responsive */
@media(max-width:768px){
    .footer-top h2 {
        font-size: 32px;
    }

    .cta-btn {
        margin-top: 20px;
    }
}

.roll-in{
    opacity:0;
    transform:translateX(-200px) rotate(-180deg);
    animation:rollIn 1s ease forwards;
}

@keyframes rollIn{
    0%{
        opacity:0;
        transform:translateX(-200px) rotate(-180deg);
    }
    100%{
        opacity:1;
        transform:translateX(0) rotate(0deg);
    }
}


[data-aos="roll-right"]{
    opacity:0;
    transform:translateX(200px) rotate(180deg);
}
[data-aos="roll-right"].aos-animate{
    opacity:1;
    transform:translateX(0) rotate(0deg);
    transition:all 1s ease;
}


.margintopminus{margin-top: -220px;}
.hero-banner{
    padding: 78px 0px;
    background-image:url("../images/using-home-technology7.jpg");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    position:relative;
     background-attachment: fixed;
    color:#fff;
}

.relatedproduct{
    height:650px;
    background-image:url("../images/relatedproduct.jpg");
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    position:relative;
     background-attachment: fixed;
    color:#fff;
}

.relatedproduct::before{
    content:"";
    position:absolute;
    inset:0;   
    background:rgba(0,0,0,.56);
}

.relatedproduct .container{
    position:relative;
    z-index:2;
}


/* Dark overlay */
.hero-banner::before{
    content:"";
    position:absolute;
    inset:0;   
    background:rgba(0,0,0,.45);
}

.hero-banner .container{
    position:relative;
    z-index:2;
}

/* Title */
.hero-title{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-titleinnter{
    font-size:4.5rem;
    font-weight:700; color: #fff;
    margin-bottom:20px;
}
.counter-text {
	font-size: 13px;
	font-weight: bold;
}

/* Text */
.hero-text{
    max-width:700px;
    margin:auto;
    font-size:18px;
    opacity:.9;
}

/* Button */
.hero-btn{
    margin-top:30px;
    padding:12px 40px;
    border:2px solid #fff;
    border-radius:40px;
    color:#fff;
    font-weight:600;
    letter-spacing:1px;
    transition:.3s;
}

.hero-btn:hover{
    background:#fff;
    color:#000;
}

.manage-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.manage-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

/* Overlay */
.manage-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    background: rgb(0, 0, 0, 0.6);
}

/* Text */
.manage-card h5 {
    font-size: 27px;
    margin-bottom: 0px;
}

.manage-card p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Bottom line */
.manage-card .overlay::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 20px;
    width: 75%;
    height: 0px;
    background: #fff;
    opacity: 0.5;
}

/* Hover */
.manage-card:hover img {
    transform: scale(1.05);
}
.manage-slider .manage-card{
    margin:0 10px;
}

.cta-box {
    margin-top: 40px;
    background: linear-gradient(78deg, rgb(20 34 104) 0%, rgb(93 177 186) 100%);
    border-radius: 16px;
    padding: 40px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ BANNER 2: AI Consulting Hero Ã¢â€â‚¬Ã¢â€â‚¬ */
  .banner-2 {    
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
 
  /* subtle mesh overlay */
  .banner-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,255,255,.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 80% 30%, rgba(255,255,255,.06) 0%, transparent 70%);
    pointer-events: none;
  }
 
  .banner-2 .content {
    position: relative;
    z-index: 1;
    max-width: 50%;
  }
 
  
 
  .robot-wrap {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 240px;
    display: flex;
    align-items: center;
    background: #fff;
    min-height: 156px;
    justify-content: center;
    border-radius: var(--radius-md);
  }
 

  /* Decorative background lines */

    .wrapper {
    position: relative;

    width: 100%;
  }

  .bg-lines {
    position: absolute;
    inset: -40px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

.bg-lines::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(0%, -50%);
    width: 300px;
    height: 300px;
    opacity: 0.07;
    background: url(../images/ca.png) no-repeat center right;
    background-size: cover;
}
 
  .card {
    position: relative;
    z-index: 1;
    padding: 3rem 3.5rem;
    overflow: hidden;
  }
 
  /* Gold corner accent top-left */
  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 80px; height: 80px;
    border-top: 2px solid #c9a96e;
    border-left: 2px solid #c9a96e;
  }
  /* Gold corner accent bottom-right */
  .card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 80px; height: 80px;
    border-bottom: 2px solid #c9a96e;
    border-right: 2px solid #c9a96e;
  }
 
  .tag {
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #5db1ba;
    border: 1px solid #5db1ba;
    padding: 5px 14px;
    margin-bottom: 1.8rem;
  }
 
 
 
  h2 span {
    color: #5db1ba;
    font-style: italic;
  }
 
  .divider {
    width: 48px;
    height: 1px;
    background: #142268;
    margin: 1.6rem 0;
  }
 
  .desc {
    margin-bottom: 2.5rem;
  }
 

 
  /* Feature pills */
  .pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.8rem;
  }
 
  .pill {
    /* font-size: 12px; */
    letter-spacing: 0.05em;
    /* color: #999; */
    border: 1px solid #142268;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.3s, color 0.3s;
    cursor: default;
  }
 
  .pill:hover {
    border-color: #c9a96e55;
    color: #c9a96e;
  }
 
  .pill-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #5db1ba;
    flex-shrink: 0;
  }
 
  /* CTA Buttons */
  .cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }
 
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #142268;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }
 
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }
 
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary:hover { transform: translateY(-2px); }
 
  .btn-arrow {
    font-size: 16px;
    transition: transform 0.3s;
  }
  .btn-primary:hover .btn-arrow { transform: translateX(4px); }
 
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #5db1ba;
    padding: 14px 20px;
    border: 1px solid #5db1ba;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
  }
 
.btn-secondary:hover {
    border-color: #142268;
    color: #142268;
}
 
  /* Decorative number */
  .bg-number {
    position: absolute;
    bottom: -20px;
    right: 3rem;
    font-size: 160px;
    font-weight: 600;
    color: #ffffff04;
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
  section.map-section {
    background: linear-gradient(90deg, #1f2a2e, #2c3b40);
}

 
  @media (max-width: 560px) {
    .card { padding: 2rem 1.5rem; }
    h1 { font-size: 2rem; }
    .cta-row { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { justify-content: center; }
  }
  
 
  @media (max-width: 600px) {
    .banner-2 { flex-direction: column; padding: 28px 24px; }
    .robot-wrap { width: 100%; }
    h2 {font-size: 2rem;}
    .banner-2 .content {
    max-width: 100%; margin-bottom: 30px;
}
  }

/* Responsive */
@media(max-width:768px){
    .manage-title {
        font-size: 32px;
    }

    .manage-card img {
        height: 250px;
    }
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
  .floating-cards-wrapper { position: relative; bottom: auto; margin-top: -40px; padding-bottom: 20px; }
  .hero-section { min-height: auto; padding: 100px 0 60px; }
  #about { padding-top: 40px; }
  .about-badge { left: 0; }
  .about-list { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 3.2rem; }
  .glass-card { margin-bottom: 0; }
  .floating-cards-wrapper { position: relative; bottom: auto; }
  .cta-section, .parallax-section { padding: 70px 0; }
  .section-pad { padding: 60px 0; }
  #about { padding-top: 30px; }
  .manage-card { height: 180px; }
  .gallery-item { height: 180px; }
  .stat-number { font-size: 1.8rem; }
  .about-badge { left: 0; bottom: 10px; }

  :root { 
  --radius-lg: 30px;
  }
  .bor-50 img {
    border-radius: 30px;
}
.products-content {
    padding: 38px 25px;
}
.team-card {
    padding: 17px;
}
a.navbar-brand img {
    width: 110px;
}
.main-navbar, .main-navbar.scrolled {
    padding: 2px 0;

}
.margintopminus {
    margin-top: 45px;
}
.top100 {
    margin-top: 0px;
}
.service-card{
    margin-top: 50px;
}
.hero-titleinnter {
    font-size: 2.5rem;
}
.about-section {
    padding: 64px 0;
}
.footer-section {
    padding-top: 65px;
}
.phone {
    font-size: 21px;
}

}

@media (max-width: 575.98px) {
  .hero-title { font-size: 2.5rem; }
  .product-img-wrap { height: 180px; }
  .team-img-wrap, .team-img-wrap img { width: 110px; height: 110px; }
  .footer-cta-title { font-size: 1.3rem; }
}


/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HERO Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .contact-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #1a4f70 100%);
    padding: 80px 0 65px;
    position: relative;
    overflow: hidden;
  }
  .contact-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -60px;
    width: 460px; height: 460px;
    border-radius: 50%;
    border: 1px solid rgba(58,171,184,.18);
    box-shadow: 0 0 0 80px rgba(58,171,184,.07), 0 0 0 160px rgba(58,171,184,.03);
    pointer-events: none;
  }
  .contact-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--orange), var(--teal));
  }
 
  .section-eyebrow {
    /* font-size: 11px; */
    /* letter-spacing: 0.22em; */
    text-transform: uppercase;
    color: var(--teal-light);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px; height: 2px;
    background: var(--orange);
    border-radius: 2px;
    flex-shrink: 0;
  }
 
  .section-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .section-title span { color: var(--teal-light); }
 
  .hero-desc {
    font-size: 15px;
    color: #8eaac8;
    max-width: 480px;
    line-height: 1.8;
  }
 
  .stat-box {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(58,171,184,.22);
    border-radius: 10px;
    padding: 16px 22px;
    text-align: center;
  }
  .stat-num {
    font-family: 'Barlow', sans-serif;
    font-size: 32px; font-weight: 700;
    color: var(--teal-light); line-height: 1;
  }
  .stat-label {
    font-size: 11px; color: #7a9ab5;
    letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px;
  }
 
  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ OFFICE CARDS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .offices-section { padding: 70px 0 60px; background: var(--bg); }
 
  .office-card {
    background: var(--card-bg);
    border: 1px solid var(--border-col);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s, transform .3s, border-color .3s;
    box-shadow: 0 2px 12px rgba(27,58,107,.06);
  }
  .office-card:hover {
    box-shadow: 0 10px 34px rgba(27,58,107,.13);
    transform: translateY(-5px);
    border-color: var(--teal);
  }
  .office-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0px;
    background: linear-gradient(90deg, var(--teal), var(--navy));
    border-radius: 14px 14px 0 0;
  }
 
  .office-flag {
    width: 55px; height: 55px;
    border-radius: 50%;
    background: var(--teal-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; overflow: hidden;
    margin-bottom: 1rem;
  }
 
  .office-country {
    font-size: 30px;
    /* letter-spacing: 0.2em; */
    text-transform: uppercase;
    color: #142268;
    font-weight: 700;
    margin-bottom: 4px;
  }
 
  .office-company {
    /* font-family: 'Barlow', sans-serif; */
    font-size: 20px;
    /* font-weight: 700; */
    color: #5db1ba;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
 
  .office-divider { height: 1px; background: var(--border-col); margin-bottom: 1rem; }
 
  .info-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
 
  .info-icon {
    width: 28px; height: 28px;
    background: var(--teal-pale);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
  }
  .info-icon i { font-size: 12px; color: var(--teal); }
 
  .info-text {font-size: 15px;color: var(--text-muted);line-height: 1.65;}
 
  .info-text a {
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid rgba(27,58,107,.2);
    transition: color .2s, border-color .2s;
  }
  .info-text a:hover { color: var(--teal); border-color: var(--teal); }
 
  .card-footer-row {
    margin-top: 1.4rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-col);
  }
 
  .map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    /* font-weight: 600; */
    color: var(--teal);
    text-decoration: none;
    /* letter-spacing: .04em; */
    transition: gap .2s, color .2s;
  }
  .map-link:hover { gap: 10px; color: var(--orange); }
 
  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CONTACT PERSON Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .contact-person-section { padding: 0 0 80px; }
 
  .section-title-sm {
    /* font-family: 'Barlow', sans-serif; */
    /* font-size: clamp(1.3rem, 2.5vw, 1.8rem); */
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
  }
  .section-title-sm span { color: var(--teal); }
 
  .person-card {
    background: var(--navy);
    border-radius: 14px;
    padding: 2.5rem;
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
    position: relative; overflow: hidden;
    box-shadow: 0 6px 28px rgba(13,32,64,.22);
  }
  .person-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0px;
    background: linear-gradient(180deg, var(--teal), var(--orange));
  }
  .person-card::before {
    content: '';
    position: absolute; top: -60px; right: 60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(58,171,184,.07);
    pointer-events: none;
  }
 
  .person-avatar {
    width: 68px; height: 68px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), #1d6e78);
    border: 3px solid rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 700; color: #fff;
    font-family: 'Barlow', sans-serif;
    flex-shrink: 0; position: relative; z-index: 1;
  }
 
  .person-role {
    font-size: 14px;
    /* letter-spacing: .18em; */
    text-transform: uppercase;
    color: var(--teal-light);
    font-weight: 600;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
  }
  .person-name {
    /* font-family: 'Barlow', sans-serif; */
    font-size: 26px;
    /* font-weight: 700; */
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }
 
  .person-contacts { display: flex; gap: 1.5rem; flex-wrap: wrap; position: relative; z-index: 1; }
 
  .person-contact-item {display: flex;align-items: center;gap: 8px;font-size: 14px;color: #8eaac8;}
  .person-contact-item i { color: var(--teal-light); font-size: 14px; }
  .person-contact-item a {color: #b8cfe8;text-decoration: none;border-bottom: 1px solid rgba(184,207,232,.3);transition: color .2s;}
  .person-contact-item a:hover { color: var(--teal-light); }
 
  .btn-email {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px;
    background: var(--orange); border-radius: 6px;
    color: #fff; font-size: 13px; font-weight: 600;
    text-decoration: none; letter-spacing: .04em;
    transition: background .2s, transform .2s;
    position: relative; z-index: 1; white-space: nowrap;
  }
  .btn-email:hover { background: var(--orange-lt); transform: translateY(-2px); color: #fff; }
 
  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER BAR Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .bottom-bar {
    background: var(--navy-deep);
    padding: 20px 0;
    border-top: 4px solid var(--teal);
    text-align: center;
    font-size: 12px; color: #4a6080;
  }
  .bottom-bar span { color: var(--teal); }
 
  @media (max-width: 768px) {
    .person-card { flex-direction: column; }
    .person-card::after { width: 100%; height: 4px; right: 0; top: auto; bottom: 0; }
    .person-contacts { flex-direction: column; gap: .6rem; }
    .top-bar-tag { display: none; }

 
  }

    @media (max-width: 568px) {
   
    .capcha2div {
    gap: 11px;
    }
  .captcha-box .mb-form{width:46% !important;}
  .form-card {
  padding: 30px 20px;
  }
.capcha2div img {
    width: 88px;
}
.hero-section.products-banner {
    min-height: 37vh;
}
  }
