@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
.pl-0{
    padding-left: 0px;
}
.pr-0{
    padding-right: 0px;
}
.br-0{border-right: 0px !important;}
.container{
    max-width: 1300px;
}
h2.title {
    font-size: 36px;
    color: #053668;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    display: inline-block;
    opacity: 0;
    transform: translateY(-60px);
    animation: dropDown 0.9s ease-out forwards;
}
@keyframes dropDown {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }
    70% {
        opacity: 1;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
h2.title span, h2.title-white span {
    color: #F05E16;
}


header{
  float: left;
  width: 100%;
  background:linear-gradient(to bottom right, #0d47a1e8, #135dcb);
  padding: 10px 0px;
  position: fixed;
  z-index: 9999;
}
main{
  padding-top: 0;
}
 .logo{
  font-family: "Inter", sans-serif;
  padding:5px 0px;
    display: flex;
    justify-content: left;
}
 .logo img {
    width: 100%;
}
 .menuWrapper {
  position: sticky;
  top: 0;
  z-index: 3; 
  padding: 10px 0px;
  display: flex;
  align-items: center;
  margin: 0px 0px 0px 0px;
}
 .menuWrapper .search {
  display: inherit;
  padding: 2px;
  border-bottom: 1px solid #EEF8FF;
}
 .menuWrapper .search input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color:#EEF8FF;
}
 .menuWrapper .search input::-moz-placeholder {
  color: #EEF8FF;
}
 .menuWrapper .search input::placeholder {
  color: #EEF8FF;
}
 .menuWrapper .search svg {
  font-size: 18px;
  color: #EEF8FF;
}
.menu {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  column-gap: 40px;
  position: relative;
}

.menu ul {
  margin: 0px;
  padding: 0;
  display: flex;
  -moz-column-gap: 35px;
  column-gap: 35px;
  position: relative;
}

.menu ul li {
  position: relative;
}

.menu ul li a {
    font-weight: 600;
    line-height: 1.8;
    color: #fff;
    font-size: 16px;
  position: relative;
  padding: 0px;
}
.menu ul li i{
  margin-right: 10px;
    font-size: 12px;
}

.menu ul li a.active {
    color: #f05e0e !important;
    font-size: 16px;
    font-weight: 600;
}

.menu ul li a:hover {
  transition: 0.5s ease-in-out;
  color: #f05e0e !important;
}

.menu-toggle{
  border: 0;
  outline: none;
  background: transparent;
  padding: 6px 2px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-top{
  display: none;
}
.menu-toggle span{
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle.is-active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2){
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* Style the submenu */
.menu ul ul {
  display: block;
  position: static ;
  top: 100%;
  left: 0;
}

.menu ul li:hover > ul {
  display: block; /* Show the submenu when hovering over the list item */
}
.menu ul ul li{
  padding: 5px 20px;
  border-bottom: dashed thin #1e85d3;
}
.menu ul ul li a{
  color:#333;
  font-size: 15px;
}
.menu ul ul li:last-child{
  border-bottom: none;
}










/********************************************** Particles ***********************************************************/

#particles-banner {
  position: relative;
  height: 100vh;
  background: linear-gradient(to bottom right, #0d47a1, #1976d2);
  overflow: hidden;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}


.content {
    width: 100%;
  position: relative;
  z-index: 2;
  margin-left: 5%;
  text-align: left;
}

.content h1 {
    font-size: 52px;
    margin: 0 0 80px 0px;
    font-weight: 800;
    line-height: 80px;
    color: #fff;
}
.content h1 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease-out forwards;
}

.content h1 span:first-child {
    animation-delay: 0.3s;
}

.content h1 span:last-child {
    animation-delay: 0.9s;
    color: #F05E16;
}

.content p {
  font-size: 1.2em;
  opacity: 0.8;
}

.content a.border-btn,
.content a.orange-btn {
    display: inline-block;
    opacity: 0;
}

.content a.border-btn {
    transform: translateX(-80px);
    animation: slideLeftBtn 0.9s ease-out forwards;
    animation-delay: 1.4s;
}

.content a.orange-btn {
    transform: translateX(80px);
    animation: slideRightBtn 0.9s ease-out forwards;
    animation-delay: 1.8s;
}

/* Hover enhancement */
.content a.border-btn:hover,
.content a.orange-btn:hover {
    transform: translateY(-2px) scale(1.03);
    transition: 0.3s ease;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideLeftBtn {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRightBtn {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.exp {
    position: fixed;
    top: 150px;
    right: -25px;
    z-index: 9999;  
}
.exp img {
    position: relative;
    animation: float-up-down 3s ease-in-out infinite alternate;
    width: 80%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

/* Keyframes for smooth floating */
@keyframes float-up-down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px); 
    }
}




/********************************************** Particles ***********************************************************/




/********************************************** Btns ***********************************************************/

a.blue-btn {
    background: #013368;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
}
a.border-btn{
    border: solid 2px #fff;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    margin-right: 35px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
}
a.orange-btn {
    background: #f05e0e;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
}
a.btn-white{
    background: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    color: #3B3B3C;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 700;
}

/********************************************** Btns ***********************************************************/





/********************************************** INFO ***********************************************************/

.info-wrap{
    float: left;
    width: 100%;
    margin: 40px 0px;
    padding: 40px 0px;
}
.info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.info-block h3{
    color: #3B3B3C;
    font-size: 18px;
}
.info-block i{
    margin-top: 13px;
    font-size: 20px;
    color: #F05E16;
}

/********************************************** INFO ***********************************************************/





/********************************************** about ***********************************************************/

.about-wrap{
    float: left;
    width: 100%;
    background: #053668;
    border-radius: 8px;
    padding: 0px;
}
.about-wrap .row{
    align-items: stretch;
}
.about-wrap .col-md-7{
    display: flex;
}



.about-content {
    background: url("../images/abt.png") no-repeat center center/cover;
    position: relative;
    width: 100%;
    height: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 0px;
}

.about-content .overlay {
    background: linear-gradient(  91deg,  rgba(8, 58, 108, 0.7) 0%,  rgba(5, 54, 104, 0.72) 36%,  rgba(115, 183, 253, 0.17) 100%);
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    color: #fff;
    text-align: left;
}

.about-content .overlay h4 {
      font-size: 14px;
      letter-spacing: 1px;
      margin-bottom: 15px;
      text-transform: uppercase;
}

.about-content .overlay h1 {
      font-size: 51px;
      line-height: 1.3;
      font-weight: 600;
      margin-bottom: 20px;
}

.about-content .overlay p {
      font-size: 16px;
      margin-bottom: 30px;
      color: #DBD4D4;
}

.about-content .buttons {
      display: flex;
      gap: 20px;
      justify-content: left;
      margin-top: auto;
}

.about-content .buttons a {
      padding: 12px 24px;
      background: rgb(255 255 255 / 20%);
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      transition: 0.3s;
      font-size: 15px;
      font-weight: 500;
}

.about-content .buttons a:hover {
      background: #F05E16;
      font-size: 15px;
      font-weight: 500;
      color: #fff;
}

.form-block{
    float: left;
    width: 100%;
    margin: 30px 0px;
}
.form-block h3{
    font-size: 25px;
    font-weight: 800;
    color: #fff;
}
.form-block h3 span{
    color: #F05E16;
}
.form-block p{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.form-block .input-group{
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.form-block .input-single{
    flex: 1;
    width: 100%;
}
.form-block input,select{
    background: #D9D9D9;
    border-radius: 5px;
    border:none;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
}
.form-block select{
    color: #aaa;
}

.form-block input::placeholder,
textarea::placeholder {
  color: #aaa;
  font-size: 16px;
  opacity: 1; 
}
.form-block textarea{
    width: 100%;
    max-width: 100%;
    height: 127px;
    background: #D9D9D9;
    border-radius: 5px;
    border:none;
    padding: 10px;
    margin-bottom: 20px;
}
.form-block button{
    border:none;
    background: #F05E16;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-weight:600;
    padding: 10px;
    width: 100%;
    max-width: 100%;
}

/********************************************** about ***********************************************************/





/********************************************** service ***********************************************************/


.service-section{
    float: left;
    width: 100%;
    margin: 50px 0px;
}
.service-wrap{
    float: left;
    width: 100%;
    border:solid thin #E2D2D2;
    padding: 0px;
    border-radius: 8px;
    overflow: hidden;
}
.service-wrap > .row{
    margin-left: 0;
    margin-right: 0;
    align-items: stretch;
}
.service-wrap > .row > .col-md-3{
    display: flex;
}
.service-intro{
    float: left;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #053668;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 40px 30px;
}
.service-intro h4{
    float: left;
    width: 100%;
    margin:50px 0px 63px 0px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}
.service-intro h4 span{ 
    font-size: 28px;
    font-weight: 700;
    color:#F05E16; 
}
/* Service Intro Animation */
.service-intro h4,
.service-intro h4 span,
.service-intro .btn-white {
    opacity: 0;
    transform: translateY(35px);
    animation: serviceDropUp 0.9s ease-out forwards;
}

/* Stagger timing */
.service-intro h4 {
    animation-delay: 0.2s;
}

.service-intro h4 span {
    animation-delay: 0.6s;
}

.service-intro .btn-white {
    animation-delay: 1s;
    margin-top: auto;
    align-self: flex-start;
}

/* Button hover polish */
.service-intro .btn-white:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}
@keyframes serviceDropUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.service-block{
    float: left;
    width: 100%;
    border-right: solid thin #E2D2D2;
    border-bottom: solid thin #E2D2D2;
    padding:20px 10px 0 0;
}
.service-block:last-child {
    border-bottom: none;
} 
.service-block i{
    float: left;
    margin-right: 15px;
    color: #5ea4f7;
    font-size: 25px;
}
.service-block img{
    width: 30px;
    height: auto;
    float: left;
    margin-right: 15px;
}
.service-block h3{
    font-size: 20px;
    color: #3B3B3C;
    font-weight: 700;
    display: flex;
}
.service-block ul li{
    color: #666666;
    font-size: 14px;
    padding-bottom: 5px;
    list-style: disc;
}
/* Drop animation only for service list items */
.service-block ul li {
    opacity: 0;
    transform: translateY(-12px);
    animation: liDrop 0.6s ease-out forwards;
}

/* Stagger each list item */
.service-block ul li:nth-child(1) { animation-delay: 0.2s; }
.service-block ul li:nth-child(2) { animation-delay: 0.35s; }
.service-block ul li:nth-child(3) { animation-delay: 0.5s; }
.service-block ul li:nth-child(4) { animation-delay: 0.65s; }
.service-block ul li:nth-child(5) { animation-delay: 0.8s; }
.service-block ul li:nth-child(6) { animation-delay: 0.95s; }
@keyframes liDrop {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********************************************** service ***********************************************************/





/********************************************** research ***********************************************************/

.research-wrap{
    float: left;
    width: 100%;
    background: linear-gradient(174deg, #DBE6FC 28%, #F8FAFF 100%);
    padding: 50px 0px;
}.research-block{
    width: 100%;
    float: left;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.4s ease;
}

/* Card hover shadow */
.research-block:hover{
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.research-block a{
    display: block;
    overflow: hidden;
    position: relative;
}

.research-block img{
    width: 100%;
    height: 295px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Image zoom like Techxen */
.research-block:hover img{
    transform: scale(1.08);
}

/* SHINE EFFECT */
.research-block a::after{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.35) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
}

.research-block:hover a::after{
    animation: shine 0.9s ease;
}

@keyframes shine{
    100%{
        left: 125%;
    }
}

/* CONTENT */
.research-block h3{
    font-size: 20px;
    font-weight: 600;
    padding: 15px 15px 10px;
}

.research-block h3 a{
    color: #111;
    transition: color 0.3s ease;
}

.research-block:hover h3 a{
    color: #0057ff; /* Techxen-like accent */
}

.research-block p{
    padding: 15px;
    border-top: solid thin rgb(18 28 39 / 13%);
    color: #666;
    font-size: 16px;
}

/* Continue button subtle slide */
.research-block a.continue-btn{
    font-size: 16px;
    color: #000;
    padding: 0 15px 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.research-block:hover a.continue-btn{
    transform: translateX(6px);
}


/********************************************** research ***********************************************************/


.banner-wrap {
    float: left;
width: 100%;
background: 
  linear-gradient(rgb(9 72 136 / 79%), rgb(9 72 136 / 81%)), 
  url(../images/texture.png) repeat;
background-size: auto;
background-blend-mode: multiply;
padding: 60px  0 0 0;
color: white;
position: relative;
overflow: hidden;
}

.banner-content {
  padding-left: 40px;
}

.banner-content h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  background-color: #f05a28;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
}

.banner-image {
  overflow: hidden;
  display: flex;
  align-items: flex-end; /* Align image to bottom */
  justify-content: center;
  margin-left: auto;
  height: 100%; /* or set a min-height if needed */
  padding-top: 40px; /* optional spacing above image */
}

.banner-image img {
  width: 90%;
  object-fit: cover;
    transform: translateX(100%); /* start offscreen right */
    animation: slideFloat 2s ease-out forwards, float 3s ease-in-out infinite;
}
/* Slide in from right + settle */
@keyframes slideFloat {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    50% {
        transform: translateX(0%) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translateX(0%) scale(1);
    }
}

/* Continuous floating effect */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Optional: hover zoom */
.banner-image img:hover {
    transform: scale(1.08);
    transition: transform 0.3s ease;
}

.partner-wrap .service-intro h4{
    margin-bottom: 40px;
}
.partner-wrap .service-intro p{
    font-size: 16px;
    color: #E2D2D2;
    float: left;
    width: 100%;
    margin-bottom: 80px;
}
ul.icon-list li {
    float: left;
    margin: 20px;
}
ul.icon-list li img{
    width: 145px;
    height: auto;
}

/*********************************************** Footer *****************************************************/

footer{
    float: left;
    width: 100%;
    background:#053668;
    padding-top: 60px;
}

.footer-info{
    float: left;
    width: 100%;
    color: #fff;
    border-right: solid thin rgb(133 156 245 / 11%);
}
.footer-info img{
    max-width: 100%;
    height: auto;
    max-height: 53px;
    display: block;
    margin-bottom: 30px;
}
.footer-info p{
    font-size: 15px;
    color: #CDD4EF;
    font-weight: 200;
    padding-right: 100px;
}
.footer-info h3{
    font-size: 24px;
    font-weight: 800;
    margin: 25px 0 20px 0;
}
.footer-info ul {
    margin: 0px;
    padding: 0px;
}
.footer-info ul li{
    color: #CDD4EF;
    font-size: 15px;
    font-weight: 300;
}
ul.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    padding-bottom: 40px;
}
ul.footer-social li a{
    color: #CDD4EF;
    font-size: 15px;
    font-weight: 300;
}

.footer-right {
    float: left;
    width: 100%;
    color: #fff;
}
.footer-right h3{
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
}
ul.footer-list{
    padding:0px;
}
ul.footer-list li{
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
ul.footer-list li a{
    color: #CDD4EF;
}
a.footer-btn {
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    color: #053668;
    font-size: 16px;
    font-weight: bold;
    margin-top: 50px;
}
a.footer-btn  span{
    color:#F05E16;
}
.footer-bottom{
    float: left;
    width: 100%;
    border-top: solid thin rgb(133 156 245 / 11%);
    text-align: center;
    padding: 20px 0px;
}
.footer-bottom p{
    color: #fff;
    font-size: 14px;
    margin: 0px;
}
.footer-legal{
    margin-bottom: 10px;
}
.footer-legal a,
.footer-legal span{
    color: #CDD4EF;
    font-size: 14px;
}
.footer-legal a:hover{
    color: #fff;
}

@media (max-width: 767px) {
    .footer-info img {
        max-height: 44px;
    }

    .footer-info p {
        padding-right: 0;
    }

    ul.footer-social {
        gap: 14px 20px;
        margin-top: 24px;
        padding-bottom: 24px;
    }

    .footer-legal{
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
}

/*********************************************** Footer *****************************************************/


   /* Mega Menu Styling */
.mega-menu {
    width: 100%;
    min-width: 58rem !important;
    left: -280px;
    right: 0;
    padding: 20px;
    border: none;
}

.mega-menu h6 {
    color: #053668;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.mega-menu h6 a{
    color: #053668 !important;
}

.mega-menu ul {
    padding-left: 0;
    list-style: none;
}

.mega-menu ul li {
    margin-bottom: 6px;
    padding: 5px 0px!important;
    border-bottom: solid thin #ddd !important;
    font-size: 13px !important;
    font-weight: 600;
}
.mega-menu ul li:last-child {
    border: none !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}
.mega-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 13px !important;
    line-height: 20px !important;
}

.mega-menu ul li a:hover {
            color: #0d6efd;
}

/* Hover dropdown for desktop */
@media (min-width: 992px) {
   .dropdown-menu.mega-menu {
        display: block !important; /* keep rendered */
        opacity: 0;
        visibility: hidden;
        transform: translateY(25px) scale(0.96);
        transition: 
            opacity 0.35s ease,
            transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
            visibility 0.35s ease;
        pointer-events: none;
    }
     .dropdown:hover > .dropdown-menu.mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
}
.mega-menu.ai-iot{
    min-width: 40rem !important;
    left: 0;
}
.mega-menu.ai-iot h3{
    color: #053668;
    font-size: 16px;
    font-weight: 700;
    margin:20px 0px 10px 0px;
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .container {
    max-width: 1320px;
  }

  .content h1 {
    font-size: 46px;
    line-height: 68px;
  }

  .about-content .overlay h1 {
    font-size: 44px;
  }

  .service-intro h4,
  .service-intro h4 span {
    font-size: 24px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 68vw;
  }

  .menu-top,
  .menu-toggle {
    display: none !important;
  }

  .menu {
    display: flex !important;
    position: relative;
  }

  .menu > ul {
    display: flex !important;
    position: relative;
    width: auto;
    max-width: none;
    max-height: none;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .content {
    margin-left: 5%;
  }

  .content h1 {
    font-size: 52px;
    line-height: 80px;
  }

  .about-content .overlay {
    padding: 60px 40px;
  }

  .about-content .overlay h1 {
    font-size: 51px;
  }

  .service-intro {
    padding: 40px 30px;
  }

  .service-intro h4,
  .service-intro h4 span {
    font-size: 28px;
  }
}

@media (min-width: 2560px) {
  .container {
    max-width: 68vw;
  }
}




/************************************************** breadcrumb-block ****************************************************************/


.breadcrumb-block {
  position: relative;
  min-height: 420px;
  background: url("../images/banner.jpg") no-repeat center center/cover;
  overflow: hidden;
}

.breadcrumb-block .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 45%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.breadcrumb-block .container {
  z-index: 2;
}

/* Heading */
.breadcrumb-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Paragraph */
.breadcrumb-text {
  font-size: 16px;
  max-width: 520px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Breadcrumb */
.breadcrumb-custom {
    display: inline;
    padding: 13px 15px;
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 5px;
    font-size: 15px;
  opacity: 0.9;
}

.breadcrumb-custom a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb-custom span {
  margin: 0 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
}
.animated-heading {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  overflow: hidden;
}

.animated-heading span {
  display: block;
  transform: translateY(120%);
  opacity: 0;
  animation: revealText 0.9s ease forwards;
}

/* Stagger delay like Techxen */
.animated-heading span:nth-child(1) {
  animation-delay: 0.1s;
}
.animated-heading span:nth-child(2) {
  animation-delay: 0.3s;
}
.animated-heading span:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes revealText {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .animated-heading {
    font-size: 38px;
  }
}


/************************************************** breadcrumb-block ****************************************************************/




/************************************************** Solution ****************************************************************/


.solution-block{
    float: left;
    width: 100%;
    margin: 50px 0px;
}

.solution-card {
  background: #ebebeb;
  border-radius: 12px;
    transition: all 0.4s;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.05);
  cursor: pointer;
    margin-bottom: 40px;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.08);
  background: #4f6ef7;
  color: #fff;
}
.solution-flex {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.solution-content {
  flex: 1;
}

.icon-wrap {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #4f6ef7;
  transition: background .3s ease, transform .3s ease;
}

.solution-card:hover .icon-wrap {
  background: #fff;
  transform: scale(1.15);
  color: #fff;
}
.solution-card:hover .icon-wrap i{
  color: #4f6ef7;}

.solution-title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  transition: color .3s ease;
}

.solution-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-top: 8px;
  transition: color .3s ease;
}

.solution-card:hover .solution-title a,
.solution-card:hover .solution-desc {
  color: #fff;
}


/************************************************** Solution ****************************************************************/


/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #6c757d;
    max-width: 380px;
    margin-bottom: 40px;
}

/* ===== Info Cards ===== */
.info-card {
    display: flex;
    align-items: center;
    background: #f8f9fb;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    animation: slideLeft 0.8s ease forwards;
    opacity: 0;
}

.info-card:nth-child(1){ animation-delay: 0.2s;}
.info-card:nth-child(2){ animation-delay: 0.4s;}
.info-card:nth-child(3){ animation-delay: 0.6s;}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #e8efff;
    color: #053668;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 16px;
}

.info-text h6 {
    margin: 0;
    font-weight: 600;
}

.info-text p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

/* ===== Form ===== */
.contact-form {
    background: #eaf0f5;
    padding: 40px;
    border-radius: 18px;
    animation: slideRight 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.form-control {
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #e1e1e1;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d3ccf;
}

.btn-submit {
    background: #053668;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #082b9c;
    transform: translateY(-2px);
}

/* ===== Animations ===== */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/********************************************************* Products **********************************************/

.product-section {
      padding: 80px 0;
      background: #f8f8f8;
    float: left;
    width: 100%;
    border-bottom: solid thin #efecec;
}
.product-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}
.product-section p {
    color: #555;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
    transform: rotateY(-10deg) translateY(50px);
    animation: imgFadeIn 1s ease forwards; /* Animate on load */
}
.product-img {
    max-width: 100%;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.product-img:hover {
  transform: rotateY(0deg);
}
 .specs {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
    animation: fadeInUp 1.4s ease forwards;
    opacity: 0;
    font-size: 14px;
}
.spec {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #053668;
}
.spec i {
    font-size: 1.5rem;
}
.product-section a.btn.btn-primary.btn-view {
    border-radius: 8px;
    background: #053668;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
}
.btn-view {
    margin-top: 30px;
    animation: fadeInUp 1.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(20px);}
      100% { opacity: 1; transform: translateY(0);}
    }
@keyframes imgFadeIn {
  0% {
    opacity: 0;
    transform: rotateY(-10deg) translateY(50px);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) translateY(0);
  }
}

/********************************************************* Products **********************************************/

