@import url("./branding.css?v=0.1");

/*================= HEADER =================*/
.header {
  position: fixed !important;
  top: 20px;
  left: 28px;
  z-index: 99;
  width: 97%;
  height: auto;
  transition: all 0.35s ease;
  padding: 0 0px;
  height: 110px;
  background-color: white;
  border-radius: 19px;
  box-shadow: 0px 9px 6px #00000012;
  margin: 0 auto;
}
.header-bar{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 42px;
  background-color: var(--light-gray-bg);
  z-index: 98;
}
.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  column-gap: 1.25rem;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
}
.brand {
  width: 290px;
  height: 72px;
}
.brand img,
.brand svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 4rem;
  transition: all 0.4s ease-in-out;
}
.menu.is-active {
  top: 94px;
  width: 98.5%;
  height: calc(100% - 97px);
  background-color: #fff;
  left: 6px;
  border-radius: 10px;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.menu_item {
  font-family: var(--theme-title-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--theme-color);
  opacity: 1;
  transition: all 0.3s ease;
  padding: 10px 12px;
  border-radius: 10px;
}
.menu_item:hover,
.menu_item:focus,
.menu_item:active,
.menu_item.active {
  background-color: var(--theme-color);
  color: #fff !important;
}
.toggle_menu {
  position: relative;
}
.toggle_menu i {
  color: var(--theme-white);
  font-size: 25px;
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: #01489d;
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}
.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}
.header-theme-btn {
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  line-height: 19px;
  border-radius: 30px;
  display: inline-block;
  padding: 13px 20px;
}
.header-theme-btn:hover {
  background-color: #f2f2f2;
  color: #000;
}
.dropdown-menu {
  background: #fff;
  border: 0;
  border-radius: 0 0 16px 16px ;
  min-width: 250px;
  top: 65px !important;
  left: 0px !important;
  padding: 10px 20px;
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border-top:solid 1px #eaeaea;
}
.header-action{
  width: 290px;
  text-align: end;
}
.dropdown-menu .dropdown-item {
    margin-bottom: 0px;
    color: var(--theme-color);
    font-size: 15px;
    padding: 10px;
    background-color: #fff;
    white-space: break-spaces;
}
.dropdown-menu li+li .dropdown-item {
  border-top:solid 1px #eaeaea;
}
.dropdown-toggle::after {
  border: 0;
  background-image: url(../img/dropdown.svg);
  width: 12px;
  height: 12px !important;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: 6px;
}
.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus, .dropdown-item:hover {
  background-color: var(--theme-color) !important;
  color: #fff !important;
}
.dropdown.lang-drodown .dropdown-menu{
  left: -64px !important;
  min-width: 150px !important;
}
.header-menu-btn {
  position: fixed;
  right: 50px;
  top: 42px;
  cursor: pointer;
}

/* =========== Sidebar =============*/
.side-bar {
  background-color: var(--theme-color);
  width: 550px;
  position: fixed;
  right: -200%;
  z-index: 100;
  top: 0px;
  transition: all .3s ease;
  height: 100vh;
  padding: 150px 0;
}
.side-bar.active {
  right: 0;
}
.side-bar .container {
  padding-bottom: 0px;
  height: 100%;
}
.side-bar .row {
  max-width: 370px;
  margin: 0 auto;
  height: 100%;
}
.side-bar .menu-box h4 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
.side-bar .menu-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.menu-box li {
  margin-bottom: 10px;
}
.menu-box a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-box a span {
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
}
.menu-box a i {
  color: #fff;
  transition: all .3s ease;
}
.menu-box a:hover i {
  margin-right: -10px;
}
.menu-cross {
  width: 68px;
  height: 68px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #313131;
}
.menu-cross i {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 20px;
  cursor: pointer;
}
.about-r {
  max-width: 500px;
}
/*================= HOME BANNER =================*/
.container-mx{
  width: 94.5%;
  border-radius: 10px;
  padding: 50px 0;
  margin-top: 100px;
}
/*================= Sec About =================*/
.section-about{
  position: relative;
}
.section-about::after{
    content: "";
    position: absolute;
    left: 0;
    top: -59px;
    width: 70%;
    height: 100%;
    background-image: url('../img/icons/bird-shadow-1.webp');
    background-position: ;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}
.section-about .container{
  position: relative;
  z-index: 1;
}
/*================= Infrastructure & Networking =================*/
.before-shadow{
  position: relative;
  z-index: 1;
}
.before-shadow::before{
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  background-image: url('../img/icons/bird-shade.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.service-img-wrap{
  position: relative;
}
.service-img-wrap h4{
  position: absolute;
  bottom: 50px;
  left: 35px;
  max-width: 430px;
}
.sec-infa-btn a {
  justify-content: center;
}
.sec-infa-btn .theme_btn {
  margin-right: 10px;
}
.after-shadow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url('../img/shadow-blur.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  width: 475px;
  height: 494px;
  z-index: -1;
}
.after-shadow{
  position: relative;
  z-index: 1;
}
/*================ Counter =============*/
.section-counter {
  border-radius: 0 0 20px 20px;
}
/*================ Cloud =============*/
.sec-cloud-btn .theme_btn {
  margin-left: 10px;
}
.sec-cloud-btn a {
  justify-content: center;
}
/*================ Cyber Security =============*/
.sec-cyber-btn .theme_btn {
  margin-right: 10px;
}
.sec-cyber-btn a {
  justify-content: center;
}
.section-cyber-security{
    background-image: url('../img/Mask\ Group\ 84.png');
  background-repeat: no-repeat;
  background-size: cover
  ;
  background-position: bottom;

 
} 
.right-side-img .service-img-wrap h4{
  right: 36px;
  left: unset;
}
/*=========== Section Explore============-->*/
.bg-elv{
  background-image: url('../img/card-bg-1.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  height: 100%;
  
}
.bg-bmc{
  background-image: url('../img/bg-dotes.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  border-radius: 20px;
  height: 100%;
}
.bg-iot{
  background-image: url('../img/services/iot.webp');
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
  border-radius: 30px;
}
.bg-fire-life{
  background-image: url('../img/card-bg-2.png');
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
  border-radius: 30px;
  position: relative;
}
.bg-fire-life-career{
  background-image: url('../img/card-bg-2.png');
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
  border-radius: 30px;
  position: relative;
}
.bg-fire-life p{
  min-height: 170px !important;
}
.bg-fire-life-career p{
  min-height: auto !important;
}
.addmission-btn{
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  padding: 9px 10px;
  border-radius: 10px 0;
}
.card-linear{
  padding: 50px 30px 26px 30px;
}
.card-linear h3{
  min-height: 83px;
}
.card-linear p{
  min-height: 243px;
}
.mh-unset{
  min-height: unset !important;
}
.bg-iot p{
  max-width: 314px;
  margin-left: auto;
}
.th-card-img img{
  border-radius: 30px;
}
.confidence .container-mx{
  padding: 70px 0;
}
/*=========== Unique ============ */
.unique-ul {
  list-style: none;
  padding-left: 0;
}
.unique-ul li {
  position: relative;
  padding-left: 5px;
  padding-bottom: 20px;
}
.unique-ul .fa-solid {
  margin-right: 20px;
}
.card-uni {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  padding: 30px 55px 30px 30px;
  background-image: url(../img/Rectangle\ 3298.png);
}
.outlined-text {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  font-size: 90px;
  font-family: fantasy;
}
.ul-text{
  margin-top: 30px !important;
  padding-left: 10px;
}
.ul-img img{
  width: 30px;
  height: 31px;
  object-fit: contain;
  margin-bottom: 12px;
}
.card-uni p{
  max-width: 300px;
}
/* ============= Future ========== */
.future .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background: linear-gradient(to right, #44BAE2, #00A0E9);
  background-clip: border-box;
  border: 0px solid rgba(0, 0, 0, .125);
  border-radius: 20px 20px 12px 12px;
  width: 100%;
  text-align: center;
}
.future-p{
  padding: 30px 90px;
}
.gr-card{
  position: relative;
}
.gr-card .gr-img{
  height: 460px;
  overflow: hidden;
  border-radius: 20px;
}
.gr-card .card img {
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.gr-card:hover .gr-img img{
  transform: scale(1.1);
}
/*================= Case Study ================*/
.case-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.case-card img {
  width: 100%;
  height: auto;
  display: block;
}

/*================= Join Us ================*/
.j-banner {
  background-image: url('../img/j.banner-bg.png');
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: white;
  width: 100%;
  height: auto;
  border-radius: 25px;
  padding: 45px 0;
  padding-bottom: 0;
  background-size: cover;
  min-height: 550px;
}
.j-person {
  width: auto;
  height: auto;
  margin-left: auto;
  object-fit: cover;
position: absolute;
bottom: 0px;
}
.join-us {
  background-image: url(../img/Mask\ Group\ 85.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: white;
  object-fit: contain;
}
.join-us .theme_btn{
  margin-top: 50px !important;
}
/*================= Footer ================*/
.nav-pills .nav-link {
  background-color: #CFCFCF;
  border: 0;
  border-radius: 0px;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #707070;
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
    background: #0d6efd;
    border-radius: 0px 30px 30px 30px !important;
}
/*================= Get In Touch ================*/
.get-in-touch{
  width: 93%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px 30px 0px 0px;
}
.get-in-touch a{
  font-weight: 200;
}
/*================= Certified Banner ================*/
.certified-banner {
  background: linear-gradient(to right, #3bdacb, #1e90e4);
  color: white;
  padding: 60px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 20px;
}
/*================= Footer ================*/
.footer .footer-inner{
  background: url('../img/Rectangle\ 2753.png') no-repeat center/cover, #1f1f1f; 
  background-blend-mode: normal; 
  width: 94.5%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  padding-top: 70px;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer-logo img {
  width: 344px;
  height: 92px;
  object-fit: contain;
}
.useful_inner h4 {
  font-size: 22px;
  color: var(--theme-white);
  margin-bottom: 25px;
}
.useful_points li {
  margin-bottom: 13px;
}
.useful_points li a {
  font-size: 16px;
  color: #C2C2C2;
}
.useful_points li a:hover {
  color: #f4f4f4;
}
.socail_link {
  display: flex;
  gap: 15px;
}
.footer a,
.footer a:hover{
  color: white;
}
.fotter-logos a {
  width: 60px;
  display: flex;
  justify-content: space-between;
  color: #CFCFCF !important;
}
.fotter-logos img {
  width: 30px;
}
.ratio iframe{
  border-radius: 30px;
}
.case-study-card{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 85px 20px;
}
.case-study-card a{
  margin: 0 auto;
  padding: 22px 10px;
}
.case-bg-1{
  background-image: url('../img/white-paper.webp');  
}
.case-bg-2{
  background-image: url('../img/case-study.webp');
}
.case-bg-3{
  background-image: url('../img/webinar.webp');
}
.case-card-overlay-text{
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.text-lt{
  color: rgba(255, 255, 255, 0.80) !important;
}
.nav-tabs .nav-link {
  color: #878787;
  background: var(--light-gray-1);
  border: none;
  margin-right: -8px;
  border-radius: 15px 15px 0 0;
  padding: 18px 39px 16px 40px;
  position: relative;
  z-index: 0;
  border: 1px solid #707070;
  border-bottom: 0;
}
.nav-tabs .nav-link.active {
  background: var(--blue-3);
  color: #fff;
  border: none;
  z-index: 1;
  border: 1px solid var(--blue-3);
}
.tab-content {
  border-radius: 0 0 15px 15px;
  padding: 0;
  overflow: hidden;
}
.tab-content iframe {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border: none;
}
.btn-close{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  opacity: 1;
  background: none;
  background: linear-gradient(261deg, #57C1E8, #00AEEF);
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1; 
}
.btn-close i{
  color: #fff;
}
.btn-close:focus{
  box-shadow: none;
}
.support-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  padding-top: 50px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: start;
  margin-bottom: 20px;
}
.icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--theme-color);
  position: relative;
}
.icon-wrap i {
  color: var(--theme-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-info {
  width: calc(100% - 50px);
}
.contact-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
}
.ft-item{
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.ft-item p{
  font-size: 17px;
  margin: 0;
  min-height: 81px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 40px 40px 40px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  height: 100%;
}
.service-number {
  position: absolute;
  top: 18px;
  left: 36px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}
.service-description {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.8;
}
.feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.feature-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  transition: all 0.3s ease;
}
.feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #667eea;
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}
.parents-section {
  background: linear-gradient(135deg, #111111 0%, #111111 100%, #092240 50%);
  position: relative;
  overflow: hidden;
}
.impact-title {
  font-size: 1.6rem;
  color: white;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}
.impact-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}
.impact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.impact-list li {
  background: rgba(255,255,255,0.05);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 15px;
  color: white;
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}
.glow-effect {
  position: relative;
}
/*  */
.target-audience-section{
  background: linear-gradient(135deg, #111111 0%, #111111 100%, #092240 50%);
}
.target-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.08));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 35px 25px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    opacity: 0.1;
    transition: all 0.4s ease;
}
.card-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s ease;
  font-weight: 500;
}
/*  */
.our-services {
  background: #f9f9f9;
}
.service-box {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-thumb{
  height: 300px;
}
.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-content {
  padding: 1.5rem;
  flex: 1;
}
.service-content p{
  min-height: 96px;
}
.service-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}
.service-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.footer .inner-footer a{
  font-size: 16px;
}
.service-thumb img{
  transition: all .3s ease;
}
.service-box .service-thumb{
  overflow: hidden;
}
.service-box:hover .service-thumb img{
  transform: scale(1.1);
}
.service-box:hover .theme_btn .icon svg{
  transform: translateX(0.1em);
}
.service-box:hover .icon {
  width: calc(100% - 0.6em);
}
.rounded-20{
  border-radius: 20px;
}
.offcanvas-body{
  padding-top: 60px;
}
.offcanvas-body .btn-close{
  background: var(--dark-gray-1);
}