@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 :root {

  /* ===== COLORS ===== */
  --color-primary: #2563eb;
  --color-secondary: #031f7a;
  --color-accent: #ffd700;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text: #333333;
  --color-border: #e5e7eb;
  --color-bg-light: #f4f6fb;

  /* ===== FONTS ===== */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Verdana", sans-serif;

}
body{
    margin:0;
  padding:0;
  box-sizing:border-box;
 font-family: "Poppins", sans-serif;
}
@font-face {
    font-family: 'Verdana';
    src: url('../fonts/Verdana-Bold.eot');
    src: url('../fonts/Verdana-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Verdana-Bold.woff2') format('woff2'),
        url('../fonts/Verdana-Bold.woff') format('woff'),
        url('../fonts/Verdana-Bold.ttf') format('truetype'),
        url('../fonts/Verdana-Bold.svg#Verdana-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Verdana';
    src: url('../fonts/Verdana.eot');
    src: url('../fonts/Verdana.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Verdana.woff2') format('woff2'),
        url('../fonts/Verdana.woff') format('woff'),
        url('../fonts/Verdana.ttf') format('truetype'),
        url('../fonts/Verdana.svg#Verdana') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.container{
  max-width:1300px;
  padding:0 20px;
}
h1{
    font-size: 75px;
    font-weight: 600;
    line-height: 71px;
     font-family: var(--font-secondary);
}
h2 {
    font-size: 38px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2em;
    letter-spacing: .6px;
}

.main-header{
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  max-width: 1300px;
  width: calc(100% - 30px);

  background: #060E6FBA;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-radius: 4px;
  z-index: 999;
}
.main-header .container{
display: flex;
justify-content: space-between;
align-items: center;
}
.logo img{
    max-width: 158px;
    width: 100%;}
.menu{
  list-style:none;
  display:flex;
  gap:35px;
  margin-bottom: 0px;
  padding-left: 0px;
}

.menu li{
    position:relative;
     font-family: var(--font-primary);
}

.menu a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  text-transform:uppercase;
   font-family: var(--font-primary);
  cursor: pointer;
}

/* Dropdown desktop */
.dropdown-menu{
  position:absolute;
  top:26px;
  left:0;
  background:#fff;
  min-width:318px;
  display:none;
  padding: 0px;
  border-radius: 0px;
  border: 0px;
}
.dropdown-menu li{
    border-bottom: 1px solid rgba(128, 128, 128, 0.548);
    border-radius: 0px;
}
.dropdown-menu a{
  color:#000;
  padding:15px 17px;
  display:block;
}
.dropdown-menu li:hover {
  background-color: #1A06BA; /* hover color */
  border-radius: 0; /* remove radius on hover */
}

/* Click based dropdown */
.dropdown.open .dropdown-menu{
  display:block;
}

.dropdown:hover .dropdown-menu{
  display:block;
}

/* Icon styling */
.toggle-icon {
  transition: transform 0.3s ease;
  font-size: 12px;
  padding-left: 5px;
}


.dropdown-toggle::after {
   display: none;
}
.dropdown-menu li:hover{
  border-radius: 0;
  background-color: #1A06BA;
}

.dropdown-menu li:hover {
background-color: #1A06BA;
}
.dropdown-menu li:hover a{
    color: var(--color-white);
}
/* Hamburger */
.hamburger{
  width:30px;
  cursor:pointer;
  display:none;
}

.hamburger span{
  display:block;
  height:3px;
  background:#fff;
  margin:5px 0;
  transition:.3s;
}

/* Hamburger active */
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2){
  opacity:0;
}
.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* hero-section */
.hero-section{
    background-color: #fff0;
    background-image: linear-gradient(148deg, #083DD5 0%, #00144B 100%);
    padding: 240px 0px 150px 0px;
    display: flex;
    justify-content: baseline;
    align-items: center;
}
.hero-section h1{
    color: var(--color-white);
    text-align: center;
}
.hero-section p{
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    color: var(--color-white);
    font-family: var(--font-secondary);
}
.hero-section ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-left: 0px;
}
.hero-section ul li{
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.hero-section ul li svg{
        fill: #00D52B;
    transition: fill 0.3s;
  width: 18px;
  height: 18px;
}
.hero-section ul li span{
    font-size: 17px;
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--font-primary);
}
.marquee{
  overflow: hidden;
  width: 100%;
      background-color: #fff0;
    background-image: linear-gradient(180deg, #2563EB 0%, #093CAD 87%);
    padding: 20px 0px;
}

.marquee-content {
  display: flex;
  animation: marquee 6s linear infinite;
}

.marquee span{
  text-transform: uppercase;
       color: var(--color-white);
    font-weight: 600;
    font-size: 24px;
    padding: 0 12px;
    white-space: nowrap;
}


/* Keyframes: full scroll of first set */
@keyframes marquee{
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 50% because content is duplicated */
  }
}
/* award */
.greatest-section{
    background-color: #E2E1E1;
    padding: 67px 108px;
}
.greatest-section .greatest-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #080808;
}
.greatest-section .greatest-left{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.greatest-section .greatest-left h2 span{
    color: #2563eb;
}
.greatest-section .greatest-left p {
    font-size: 17px;
    font-weight: 400;
    color: #000;
}
.award-section{
    padding-top: 50px;
}
.award-section h2{
    color: var(--color-primary);
    text-align: center;
    padding-bottom: 50px;
}
.award-left ul{
    padding-left: 0px;
}
.award-left ul li{
list-style: none;
}
.award-left ul li svg {
    fill: #FCBE0A;
    transition: fill 0.3s;
    width: 20px;
    height: 20px;
}
.award-left ul li{
    font-family: "Poppins",Sans-serif;
    font-size: 17px;
    font-weight: 400;
    text-transform: capitalize;
    display: flex;
    gap: 10px;
    padding: 10px 0px;
    color: #000;
}
.award-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.award-right img{
    max-width: 409px;
    width: 100%;
    border-radius: 14px 14px 14px 14px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / .5);
}
.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 800px;
    justify-content: center;
}

.stat-card {
 background-image: linear-gradient(180deg, #013CE7 0%, #002693 100%);
    color: white;
    width: 255px;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 2px solid #2563eb;
}
.stat-card h3 {
    font-size: 33px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--color-white);
}

.stat-card p {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    color: var(--color-white) !important;
    margin-bottom: 0px;
}
.greatest-right {
    display: flex;
    justify-content: center;
}
.greatest-right img{
     max-width: 397px;
    width: 100%;
    border-radius: 14px 14px 14px 14px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / .5);
}
/* why choose */
.why-chooseus-section{
    padding: 80px 108px;
    background-color: #EBEBEB;
}
.why-chooseus-section h2{
    max-width: 995px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 40px;
}
.why-chooseus-section h2 span{
color: var(--color-primary);
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 25px;
    max-width: 1000px;
    width: 100%;
}

.service-card {
    background: #fff;
    padding: 16px 16px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start; 
    gap: 15px;
    box-shadow: 0 0 3px 0 rgb(0 0 0 / .5);
    border: 1px solid #dddddd42;
}

.icon-box {
    background-color: #2563eb; /* Royal blue */
    color: white;
    min-width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    
}
.icon-box i{
    font-size: 20px;
}
.content h3 {
       font-size: 18px;
    font-weight: 700;
        text-transform: capitalize;
    line-height: 1.2em;
    letter-spacing: .6px;
       color: #000;
}
.service-card:hover .content h3{
    color: #443F3F;
}
.content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
    margin-bottom: 0px;
}
.why-chooseus-right{
    display: flex;
    justify-content: center;
}
.why-chooseus-right img{
    max-width:407px ;
    width: 100%;
    border-radius: 14px 14px 14px 14px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / .5);

}
/* video */
.video-section{
    padding: 50px 0px;
}

.video-section h2{
    padding-bottom: 30px;
    text-align: center;
}
.video-section h2 span{
color: var(--color-primary);
}
 .yt-container{
  position: relative;
  width: 100%;
  max-width: 890px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.yt-container iframe{
  width: 100%;
  height: 100%;
  border: 0;
}
/* multiple-industries */
.multiple-industries{
    padding: 50px 0px;
}
.industry-card{
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.multiple-industries h2{
    padding-bottom: 30px;
    text-align: center;
}
.multiple-industries h2 span{
    color: var(--color-primary);
}
.industry-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.industry-list li{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
font-size: 18px;
  font-weight: 700;
    letter-spacing: .2px;
  color: #111;
  font-family: var(--font-primary);
}

/* SVG icon */
.check-icon{
  width: 16px;
  height: 16px;
  fill: #00a000;
  flex-shrink: 0;
}
.industry-image{
    display: flex;
    justify-content: center;
}
.industry-image img{
    max-width:407px ;
    width: 100%;
    border-radius: 14px 14px 14px 14px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / .5);

}
/* digital-product */
.digital-product{
background-color: #f3f3f3;
padding: 50px 0px;
}
.digital-product h2{
    padding-bottom: 30px;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    text-align: center;
    margin:0 auto ;
}
.digital-product h2 span{
color: var(--color-primary);
}
.digital-product p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
.core-services{
  padding: 80px 15px;
  background: #fff;
}
.core-services .container{
    max-width: 1113px;
}

.section-title{
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.section-title span{
  color: #2563eb; /* blue */
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.services-grid ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-grid li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
}

/* Arrow icon */
.services-grid li::before{
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}
/* tect */
.tech-partner-section{
  background: #f2f2f2;
  padding: 80px 108px;
}

.tech-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.subtitle{
  color: #2563eb;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.title{
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.description{
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 35px;
}

.feature-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-box{
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-box .icon{
  font-size: 26px;
  background: #2563eb;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.feature-box h4{
  margin: 0;
     font-size: 17px;
    font-weight: 700;
}

.feature-box p{
    font-size: 15px;
    font-weight: 400;
    color: #000000FA;
    margin-bottom: 0px;
    padding-top: 10px;
}

/* FORM */
.tech-content h2{
        font-size: 30px;
    font-weight: 700;
    line-height: 47px;
    color: #0B0B0B;
}
.tech-content h2 span{
color: var(--color-primary);
}
.contact-form{
  background: linear-gradient(180deg, #0a1dbd, #04139f);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contact-form h3{
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.form-row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 14px;
}

.contact-form textarea{
  min-height: 120px;
  resize: none;
  margin-bottom: 20px;
}

.contact-form button{
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin: auto;
  cursor: pointer;
}

.footer{
  background-image: linear-gradient(214deg, #013CE7 22%, #0B2054 83%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 30px;
}


.footer-top{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo{
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-col p{
  font-size: 14px;
  line-height: 1.7;
   font-family: var(--font-secondary);
   font-weight: 400;
}

.footer-col h4{
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
  font-weight: 700;
}
.footer-col h4 svg{
  fill: white;
  width: 20px;
  height: 20px;
}
.footer-col ul{
  list-style: none;
  padding: 0;
}

.footer-col ul li{
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a{
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 25px;
  font-family: var(--font-primary);
  font-weight: 400;
}
.footer-col ul li a i{
  padding-right: 10px;
}
.footer-col ul li a:hover{
  opacity: 1;
}

.footer-social{
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.footer-social a{
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 10%;
}
.footer-social a svg{
  width: 20px;
  height: 20px;
  fill: var(--color-secondary);

}

.footer-presence{
  padding: 40px 20px;
  text-align: center;
}

.footer-presence h3{
  margin-bottom: 20px;
}

.footer-presence ul{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
  margin: auto;
  padding: 0;
}
.footer-presence li{
  text-align: start;
}
.footer-presence li svg{
  fill: white;
  width: 20px;
  height: 20px;
  padding-right: 10px;
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 20px;
  text-align: center;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
.footer-bottom p{
  margin-bottom: 0px;
}


.footer-links a{
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
  opacity: 0.85;
}

.footer-links a:hover{
  opacity: 1;
}
.note{
      background-color: #0813244D;
      padding-top: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.note p{
  font-size: 13px;
  line-height: 17px;
  font-family: var(--font-secondary);
  line-height: 19px;
  font-weight: 400;
}
/* Responsive */

