/* ===== GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  flex-wrap: wrap;
}

body {
  overflow-x: hidden;
}

/* ===== HEADER ===== */
#header {
  width: 100%;
  max-width: 1440px;
  height: 80px;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 14px;
  background-color: rgba(232, 235, 247, 0.53);
  z-index: 10;
}

.logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-left: -140px;
}

#navbar {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-right: 150px;
  list-style: none;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: rgba(252, 252, 252, 1);
  margin: auto 10px;
  position: relative;
  z-index: 1;
  transition: 0.3s ease;
}

#navbar li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0px;
  height: 0px;
  background-color: rgba(232, 235, 247, 0.3);
  border-radius: 22px;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: width 0.3s ease, height 0.3s ease;
}

#navbar li a:hover::after,
#navbar li a.active::after {
  width: 130px;
  height: 38px;
}

#hamburger {
  display: none;
  width: 24px;
  height: 24px;
}

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  width: 100%;
  height: 552px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2)), url(assets/images/img.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: center;
  position: relative;
  z-index: 1;
}

#h-text {
  text-align: left;
  margin-left: 50px;
  color: rgba(252, 252, 252, 1);
}

#h-text h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 24px;
  color: rgba(252, 252, 252, 1);
}

#h-text p {
  font-size: 24px;
  font-style: normal;
  line-height: 40px;
  letter-spacing: 0.06em;
  color: rgba(252, 252, 252, 1);
}

.h-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 191px;
  height: 54px;
  padding: 2px 20px;
  margin-top: 40px;
  border-radius: 54px;
  background: rgba(170, 180, 225, 0.27);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  line-height: 1;
}

.h-button:hover {
  background: rgba(170, 180, 225, 0.4);
}

.arrow-icon {
  width: 24px;
  height: 24px;
}

/* ===== LOGO ROW ===== */
#logo-raw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1320px;
  height: 110px;
  margin: 0 auto;
  margin-top: -50px;
  background-color: rgba(252, 252, 252, 1);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  z-index: 2;
  position: relative;
}

.l-container {
  width: max-content;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.l-container img {
  width: 170px;
  height: 100px;
  object-fit: contain;
  align-items: center;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

.raw-scroll {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.raw-scroll::-webkit-scrollbar {
  display: none;
}

.raw-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.auto-scroll {
  display: flex;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}

.raw-scroll:hover .auto-scroll {
  animation-play-state: paused;
}

/* ===== SOLUTIONS SECTION ===== */
#solutions {
  padding: 16px;
}

#solutions h2 {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  color: rgba(50, 86, 114, 1);
  margin: 48px auto 20.8px;
}

.scroll-wrapper {
  overflow-x: auto;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

#s-scroll {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 50%;
  padding: 16px 0;
  scroll-padding: 0 32px;
}

#s-scroll::-webkit-scrollbar {
  display: none;
}

#s-scroll .s-card:first-child {
  margin-left: 32px;
}

#s-scroll .s-card:last-child {
  margin-right: 32px;
}

.s-card {
  flex: 0 0 auto;
  width: 320px;
  padding: 24px 20px;
  border-radius: 8px;
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
  background: #fff;
  border: 1px solid #d6d9db;
  z-index: 0;
}

.s-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(to top right, rgba(38, 95, 203, 1), rgba(42, 128, 208, 0.38));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.s-card:hover {
  transform: translateY(-8px);
}

.s-card:hover::before {
  opacity: 1;
}

.circle-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(42, 128, 208, 0.38);
  border-radius: 50%;
  background: #fcfcfc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.circle-icon img {
  width: 24px;
  height: 24px;
}

.s-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 137%;
  color: rgba(76, 143, 205, 1);
  margin-bottom: 10px;
}

.s-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(113, 128, 150, 1);
  margin-bottom: 10px;
}

.s-card a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(76, 143, 205, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.s-card a img {
  width: 20px;
  height: 20px;
}

/* ===== ABOUT SECTION ===== */

#about {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 108px;
  width: 100%;
}

#about h2 {
  font-weight: 500;
  font-size: 24px;
  padding-bottom: 4px;
  color: rgba(50, 86, 114, 1);
}

.gradient-line {
  width: 146px;
  height: 4px;
  background: linear-gradient(to right, rgba(38, 95, 203, 1), rgba(42, 128, 208, 0.38));
  border-radius: 3px;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
  padding-left: 10px;
}

.about-text {
  display: flex;
  gap: 30px;
  flex: 1;
}

.left-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.l-icons {
  height: 51px;
}

#about .about-content .content {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  margin-top: 15px;
  margin-left: 10px;
  color: rgba(113, 128, 150, 1);
}
#about .about-content .content p{
  padding-bottom: 40px;
}
.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
}

/* ===== PARTNER SECTION ===== */
.partner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0 60px 0;
}

.partner-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  padding: 0 108px 60px 108px;
  gap: 60px;
}

.p-photo {
  width: 304px;
  height: auto;
}

.p-content {
  margin-left: 140px;
  margin-top: 50px;
  flex: 1;
}

.p-content h2 {
  font-weight: 500;
  font-size: 24px;
  padding-bottom: 4px;
  color: rgba(50, 86, 114, 1);
}

.p-content-p {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: rgba(113, 128, 150, 1);
}

.p-content-p p {
  margin: 0;
  line-height: 1.6;
}

.p-photo-re {
  display: none;
}

/* ===== BANNER SECTION ===== */
.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  left: 0;
  height: auto;
  padding: 60px 20px;
  background-color: rgba(244, 244, 247, 0.41);
}

.banner-content {
  display: flex;
  text-align: center;
  z-index: 1;
}

.banner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-card img {
  width: 347px;
  height: 60px;
}

.banner-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 12px;
}

.banner-card p {
  font-size: 16px;
  color: rgba(113, 128, 150, 1);
}

.wave {
  position: absolute;
  max-width: 108px;
  max-height: 125px;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}

.wave-left {
  left: 0;
  bottom: 0;
  object-fit: cover;
}

.wave-right {
  right: 0;
  top: 0;
  object-fit: cover;
}

/* ===== TEAM SECTION ===== */
#team {
  max-width: 1300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px auto 0 auto;
  padding: 0 20px;
}

.team-intro {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 12px;
}

.team-intro h2 {
  font-weight: 500;
  font-size: 24px;
  color: rgba(50, 86, 114, 1);
}

.team-intro p {
  max-width: 874px;
  font-size: 18px;
  color: rgba(113, 128, 150, 1);
}

.team-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
  padding-top: 40px;
}

.team-card {
  width: 200px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.team-card img {
  width: 200px;
  border-radius: 105px;
}

.name {
  padding-top: 12px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  color: rgba(50, 86, 114, 1);
}

.job {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: rgba(113, 128, 150, 1);
}

/* ===== OUR PARTNER SECTION ===== */
#our-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.ourpartner-intro {
  padding-bottom: 25px;
  max-width: 800px;
}

.ourpartner-intro h2 {
  padding: 12px;
  font-weight: 500;
  font-size: 24px;
  color: rgba(50, 86, 114, 1);
}

.ourpartner-intro p {
  font-size: 18px;
  color: rgba(50, 86, 114, 1);
}

.ourpartner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  justify-items: center;
  gap: 20px;
  padding: 20px 16px;
  max-width: 1176px;
  margin: 0 auto;
}

.ourpartner img {
  width: 100px;
  height: 110px;
  object-fit: contain;
  margin: auto 10px auto 10px;
}

/* ===== FOOTER ===== */
#footer {
  position: relative;
  width: 100%;
  background-color: rgba(244, 244, 247, 0.41);
  padding: 40px 0;
  overflow: hidden;
}

.f-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.logo-col {
  margin-right: 260px;
}

.logo-col img {
  width: 104px;
  height: auto;
  margin-bottom: 16px;
}

.logo-col p {
  font-size: 14px;
  color: rgba(113, 128, 150, 1);
  line-height: 1.5;
  text-align: left;
}

.links-col,
.contact-col {
  align-items: flex-start;
}

.col h4 {
  color: rgba(50, 86, 114, 1);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.col a {
  padding: 4px 0;
  text-decoration: none;
  font-size: 16px;
  color: rgba(113, 128, 150, 1);
  transition: color 0.3s ease;
}

.col a:hover {
  color: rgba(50, 86, 114, 1);
}

.wave3 {
  position: absolute;
  top: 0;
  max-height: 246px;
  height: 50%;
  right: 0;
  z-index: 0;
  object-fit: cover;
}




/* Start about us page */

.a-content{
  width: 850px;
}

.about-container{
  display: flex;
  gap: 100px;
  padding: 100px;
}
.right-column{
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 769px) {
  #about-us .right-column .a-photo {
    height: 211px;
    position: relative;
    left: 50px;
  }
  .idea-icon{
    position: relative;
    top: -150px;
    right: -500px;
    
   
  }
  #about-us .right-column .Our-Vision-photo img{
    position: relative;
    right: 10px !important;
    
  }
  .Our-Vision-idea-icon {
    right: 800px !important;
}
}

.a-photo img{
  height: 100%;
}

.frame{
  position: absolute;
  
  height: 60%;
  z-index: -1;
  right: 40px;

}




.Our-Vision{
  flex-direction: row-reverse;  
}

.Our-Vision-frame{
  left: 64px;
}
.Our-Vision-idea-icon{
  right: 280px;
}
.Our-Vision-photo{
  right: -90px;
}
/* About Page Responsive Styles */
@media screen and (max-width: 1200px) {
  .about-container {
    padding: 40px 60px;
    gap: 30px;
  }
  

  .content {
    width: 100%;
    max-width: 500px;
  }
  .a-photo{
    
    width: 100%;
    right: -13px;

  }
  .frame{
    top: -92px !important;
    height: 400px !important;
    right: -7px !important;

  }
  

  .a-photo img {
    max-width: 100%;
    height: auto;
  }
  .about-container P{
    text-align: left;

  }
  #about-us{
    padding: 0px;
  }

}

@media screen and (max-width: 992px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    /* text-align: center; */
    padding: 30px 40px;
  }
  
  .left-column, .right-column {
    width: 100%;
    max-width: 800px;
  }
  
  .right-column {
    margin-top: 40px;
    position: relative;
  }
  
  .gradient-line {
    /* margin: 0 auto; */
  }
  
  .a-photo {
    margin: 0 auto;
    max-width: 500px;
  }
  .a-photo img{
    height: 100%;

  }
  
  .frame, .idea-icon {
    /* display: none; */
  }
  .frame{
    position: absolute;
    height: 350px;
    z-index: -1;
    right: 20px;
    top: -77px;
  }
  
   /* .Our-Vision-photo{
    right: 0px !important;
  }*/
  .Our-Vision-frame{
    left: -43px !important;
  } 
  .Our-Vision-idea-icon {
    right: 8px;
    transform: rotate(76deg);
}
}

@media screen and (max-width: 768px) {
  #header {
    padding: 0 20px;
    justify-content: space-between;
  }
  
  .logo {
    margin-left: 0;
  }
  
  #navbar {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: rgba(232, 235, 247, 0.9);
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
    margin: 0;
  }
  
  #navbar.active {
    display: flex;
  }
  
  #h-text {
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
  }
  
  #h-text h1 {
    font-size: 28px;
  }
  
  #h-text p {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .about-container {
    padding: 30px 20px;
  }
  
  .content {
    font-size: 16px;
    margin-top: 30px;
  }
  
  .menu-toggle {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  #h-text {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  #h-text h1 {
    font-size: 24px;
  }
  
  #h-text p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .a-line {
    margin-bottom: 30px;
  }
  
  #about-us h2 {
    font-size: 20px;
  }
  
  .gradient-line {
    width: 100px;
  }
  
  .content {
    gap: 20px;
  }
  
  .f-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .f-content .col {
    width: 100%;
    text-align: left;
  }
}

/* Mobile Menu Toggle */
/* .menu-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  #navbar {
    display: none;
    padding: 20px 0;
  }
  
  #navbar.active {
    display: flex;
  }
} */

/* Footer Responsive Styles */
@media screen and (max-width: 1200px) {
  #footer{
    padding: 10px;
    margin-top: 100px;
    
  }
  .f-content{
    flex-direction: column;
    margin: 0;
  }
  .f-content .col img{
    margin: 0;
  }
 
}

@media screen and (max-width: 992px) {
  #footer{
    padding: 10px;
    
  }
  .f-content{
    flex-direction: column;
    margin: 0;
  }
  .f-content .col img{
    margin: 0;
  }

}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 576px) {

}






/* Start services page */

.service{
  display: flex;
  flex-direction: column;   
  margin-bottom: 100px;

}

.title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 800px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  text-align: center;
}
.title h1{
  color: rgba(50, 86, 114, 1);
  font-weight: 500;
  font-size: 24px;
}
.title p{
  width: 100%;
  color: rgba(113, 128, 150, 1);
  font-size: 18px;
}
.service-container{
  padding: 0px 80px;
  display:flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.service-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 30%;
  background-color: #F9F9FA;
  height: 445px;
  border-radius: 12px;
  overflow: hidden;
}
.card-content{
  padding: 14px;
  height: 50%;
}
.card-content h3{
  font-weight: 500;
  font-size: 16px;
  color: #325672;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  
}
.card-content h3 a{
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: #325672;
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-content h3 a img{
  color: #325672;
}
.card-content p{
  font-size: 14px;
  color: rgba(113, 128, 150, 1)
}
.card-image{
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  
}
.card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.card-image img:hover{
  transform: scale(1.1);
  
}

/* service responsive styles */

@media screen and (max-width: 1200px) {
  .title {
    width: 100%;
  }
  .service-container{
    padding: 0px;
    
  }
  .service-container .service-card{
    width: 90%;
  }
}









/* contact  */

.contact{
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding: 45px 45px;


}
.contact-form{
  display: flex;
  flex-direction: column;
  height: 700px;
  width: 700px;
  border: 1px solid #D6D9DB;
  border-radius: 12px;
  padding: 40px 80px 40px 40px;

}
.contact-form h1{
  font-weight: 500;
  font-size: 32px;
  color: #325672;
  margin-bottom: 20px;
}
.contact-form label{
  font-size: 16px;
  font-weight: 400;
  color: #325672;
}
.contact-form input{
  color: #718096;
  /* height: 70px; */
  border-radius: 6px;
  padding: 5px;
  text-decoration: none;
  outline: none;
  border: 1px solid #D6D9DB;

}
.contact-form textarea{
  padding: 7px;
  outline: none;
  border: 1px solid #D6D9DB;
}
.contact-form input[type="submit"]{
  background-color: #4C8FCD;
  border-radius: 150px;
  color: #fff;
  width: 300px;
  margin: auto;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 40px;
  text-align: center;

}
.contact-form form{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
}
.contact-form form input{
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(113, 128, 150, 1);
}

.map{
  width: 700px;
}
.map iframe{
  width: 100%;
  height: 100%;
}


/* contact responsive styles */
@media screen and (max-width: 1200px) {
  .contact {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }
  
  .contact-form,
  .map {
    width: 100%;
    max-width: 800px;
  }
  
  .contact-form {
    padding: 30px;
    height: auto;
  }
  
  .contact-details {
    margin: 40px 20px 100px;
    padding: 20px;
    height: auto;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .details-icon {
    flex: 1 1 300px;
    ;
  }
  .contact-details{
    height: 100% !important;
    margin: 20px !important;
  }
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 30px 15px;
    gap: 30px;
  }
  
  .contact-form {
    padding: 25px 20px;
  }
  
  .contact-form h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .contact-form input[type="submit"] {
    width: 100%;
    max-width: 300px;
  }
  
  .map {
    height: 400px;
  }
  
  .contact-details {
    margin: 30px 15px 80px;
    padding: 20px 15px;
  }
  
  .details-icon {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }
  
  .details-icon:last-child {
    margin-bottom: 0;
  }
  .contact-details{
    height: 100%;
    margin: 0px;
  }
}

@media screen and (max-width: 576px) {
  .contact {
    padding: 20px 10px;
    gap: 25px;
  }
  
  .contact-form {
    padding: 20px 15px;
  }
  
  .contact-form h1 {
    font-size: 24px;
  }
  
  .contact-form label {
    font-size: 14px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    font-size: 14px;
  }
  
  .map {
    height: 300px;
  }
  
  .details-icon p {
    font-size: 16px;
  }
  
  .details-icon span {
    font-size: 14px;
  }
  .contact-details{
    height: 100%;
    margin: 0px;
  }
}






/* contact-details */

.contact-details{
  margin: 16px 104px;
  border: 1px solid #D6D9DB;
  background-color: #FCFCFC;
  border-radius: 8px;
  height: 150px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 200px;
}
.details-icon{
 display: flex;
 align-items: center;
 gap: 15px;
}
.details-icon p{
  color: #325672;
  font-size: 18px;
  font-weight: 500;
}
.details-icon span{
 color: #718096;
 font-size: 16px;
 font-weight: 400;
}

/* start network solutions  */

.solutions{
  background-color: #F9F9FA;
  border: 1px solid #D6D9DB;
  border-radius: 5px;
  margin: 70px 70px 200px 70px;
  height: 650px;
  
  padding: 50px 150px 50px 50px;

  display: flex;
  justify-content: space-between;
  position: relative;
  
  
}

.solutions .solutions-content{
  width: 60%;
  
  
}
.solutions .solutions-content h1{
  font-size: 24px;
  font-weight: 500;
  color: #325672;
  margin-bottom: 20px;
}
.solutions .solutions-content p{
  color: #718096;
  font-size: 18px;

}
.solutions .solutions-content p span{
  font-weight: 500;
  font-size: 20px;
  color: #325672;
}
.solutions .solutions-content span{
  font-weight: 500;
  font-size: 20px;
  color: #325672;
}
.solutions .solutions-content .benefit{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.solutions .solutions-content .benefit img{
  align-self: self-start;
}
.solutions-content .rectangle{
  position: absolute;
  top: 0;
  right: 0;
}



.solutions .solutions-photo{
  height: 420px;
  width: 400px;
  align-self: center;
  
}
.solutions .solutions-photo img{
  height: 100%;
  width: 100%;
  
}
.footer-active{
  font-weight: bold;
  color: rgb(50 86 114) !important;
}

/* edited classes  */

footer .f-content .col img{
  width: 100px !important;
}
.solutions .solutions-content img.net-infra,
.solutions .solutions-content img.billing-system,
.solutions .solutions-content img.camera-surveillance,
.solutions .solutions-content img.cloud-solutions,
.solutions .solutions-content img.collaboration-system,
.solutions .solutions-content img.data-center,
.solutions .solutions-content img.hospitality-app,
.solutions .solutions-content img.mail-system,
.solutions .solutions-content img.mobile-app,
.solutions .solutions-content img.network-security,
.solutions .solutions-content img.pbx-system,
.solutions .solutions-content img.pos-system,
.solutions .solutions-content img.smart-home,
.solutions .solutions-content img.websites,
.solutions .solutions-content img.wifi-system{
  display: none;
}

@media screen and (max-width: 767px) {
  .solutions .solutions-content img.net-infra,
  .solutions .solutions-content img.billing-system,
  .solutions .solutions-content img.camera-surveillance,
  .solutions .solutions-content img.cloud-solutions,
  .solutions .solutions-content img.collaboration-system,
  .solutions .solutions-content img.data-center,
  .solutions .solutions-content img.hospitality-app,
  .solutions .solutions-content img.mail-system,
  .solutions .solutions-content img.mobile-app,
  .solutions .solutions-content img.network-security,
  .solutions .solutions-content img.pbx-system,
  .solutions .solutions-content img.pos-system,
  .solutions .solutions-content img.smart-home,
  .solutions .solutions-content img.websites,
  .solutions .solutions-content img.wifi-system{
    display: block;
    width: 100%;
  }
}
#h-text {
  margin-left: 100px;
  margin-top: 90px;

}
#h-text p{

  width: 900px;
      line-height: 36px;
      font-weight: 400;
}
 .about-container{
    justify-content: center;
    align-items: center;
  }
 
#about-us p{
  font-size: 18px;
  font-weight: 400;
  color: #718096;
}
#about-us .a-content > p{
  margin-bottom: 20px;
}

/**/







/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (min-width: 1024px) and (max-width: 1440px) {
  #navbar {
    gap: 40px;
    margin-right: 50px;
  }
  #about .about-content .content p{
  padding-bottom: 40px;
}

  
}
@media (max-width: 1200px) {
  #h-text {
    text-align: left;
    margin-left: 5px;
  }

  #h-text h1 {
    font-size: 28px;
  }

  #h-text p {
    font-size: 20px;
    line-height: 36px;
  }

  .h-button {
    width: 180px;
    height: 50px;
    font-size: 18px;
  }
  #logo-raw {
    width: 90%;
  }

  .l-container {
    gap: 40px;
  }
  .solutions {
    flex-direction: column;
    padding: 40px;
    height: auto;
  }

  .solutions .solutions-content {
    width: 100%;
  }

  .solutions .solutions-photo {
    width: 100%;
    height: auto;
    margin-top: 30px;
  }
}
/* For small devices */

@media (max-width: 768px) {
 #about-us .a-content > p,
  .service .title p{
    font-size: 12px;
  }
  #header {
    width: 343px;
    height: 38px;
    top: 8px;
    padding: 0 16px;
    border-radius: 12px;
    justify-content: space-between;
  }

  .logo {
    width: 32px;
    height: 32px;
    margin-left: 0;
    margin-top: 7px;
  }

  #hamburger {
    display: block;
    margin-left: 260px;
  }

  #navbar {
    position: absolute;
    top: 45px;
    right: 1px;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgb(208, 211, 221);
    width: 343px;
    height: 176px;
    border-radius: 6px;
    padding: 16px;
    gap: 5px;
    display: none;
    margin: 0;
  }

  #navbar li a {
    font-size: 12px;
    color: rgba(50, 86, 114, 1);
  }

  #navbar.open {
    display: flex;
  }

  #navbar li a::after {
    display: none;
  }

  #hero {
    height: 268px;
  }

  #h-text {
    padding: 80px 24px 41px;
	margin-top: 0px;
  }

  #h-text h1 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  #h-text p {
    font-size: 12px;
    line-height: 18px;
    width: 100%;
    max-width: 310px;
    height: 80px;
  }

  .h-button {
    width: 100%;
    max-width: 150px;
    height: 35px;
    gap: 4px;
    font-size: 12px;
    margin: 40px auto 0;
  }

  .arrow-icon {
    width: 20px;
    height: 20px;
  }

  #logo-raw {
    flex-wrap: nowrap;
    height: 70px;
    padding: 10px 12px;
    margin-top: -20px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .l-container {
    width: auto;
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }

  .l-container img {
    width: 120px;
    height: 70px;
    flex-shrink: 0;
  }

  .s-card {
    width: 270px;
    height: 300px;
  }

  #solutions h2 {
    margin-top: 24px;
    font-size: 14px;
  }

  #solutions p {
    font-size: 12px;
  }

  #solutions a {
    font-size: 12px;
  }

  #about {
    max-width: 768px;
    padding: 30px 16px;
  }

  .header-container {
    width: auto;
    height: auto;
    margin-bottom: 30px;
  }

  #about h2 {
    font-size: 14px;
  }

  #about .gradient-line {
    width: 94px;
    margin: 2px auto 5px 0;
    height: 3px;
  }

  .about-content {
    width: 350px;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }

  .about-text {
    gap: 5px;
    padding: 0;
  }

  .left-icons {
    gap: 20px;
    margin-top: 30px;
  }

  .left-icons img {
    width: 32px;
    height: 32px;
  }
  .content{
    padding-top: 20px;

  }
  #about .about-content .content p{
    font-size: 12px;
    width: 100%;
    padding-bottom: 20px;
}
  .about-image {
    width: 200px;
    height: 200px;
  }
	.a-photo img{
    width: 100%;
    
    height: 200px;
  }

  .p-photo img {
    width: 100%;
    max-width: 200px;
    height: 200px;
  }
  .partner {
    width: 340px;
    display: flex;
    flex-direction: column;
    padding: 20px 0 40px 0;
    margin-bottom: 0;
  }
  .partner-container {
    flex-direction: column;
    align-items: center;
    padding: 0 0px 40px 20px;
  }

  .p-photo {
    display: none;
  }

  .p-photo-re {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px auto;
  }

  .p-photo-re img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .p-content {
    font-size: 12px;
    margin: 0;
    width: 100%;
  }

  .p-content h2 {
    font-size: 14px;
    font-weight: 500;
  }

  .gradient-line {
    margin: 2px auto 20px 0;
  }

  .p-content-p {
    width: 340px;
    font-size: 12px;
    text-align: start;
    padding-top: 20px;
  }

  .banner {
    height: 455px;
    left: 0;
    right: 0;
  }

  .wave {
    width: 82px;
    height: 89px;
  }

  .wave-left {
    left: 0;
    bottom: 0;
  }

  .wave-right {
    right: 0;
    top: 0;
  }

  .banner-card {
    width: 90px;
    height: 110px;
    margin-top: 20px;
  }

  .banner-card img {
    width: 40px;
    height: 40px;
  }

  .banner-content {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .banner-card h3 {
    font-size: 16px;
  }

  .banner-card p {
    font-size: 16px;
  }

  .team-intro h2 {
    font-size: 16px;
  }

  .team-intro p {
    font-size: 12px;
    width: 340px;
  }

  .team-row {
    width: 329px;
    gap: 20px;
    padding-top: 30px;
  }

  .team-card {
    text-align: center;
    width: 150px;
    height: 128px;
  }

  .team-card img {
    margin-left: 40px;
    width: 70px;
    height: 70px;
  }

  .name {
    font-size: 14px;
    padding-top: 6px;
  }

  .job {
    font-size: 12px;
  }

  .ourpartner-intro h2 {
    padding-top: 24px;
    font-size: 18px;
  }

  .ourpartner-intro p {
    font-size: 14px;
  }

  .ourpartner {
    grid-template-columns: repeat(3, 1fr);
  }

  .ourpartner img {
    width: 60px;
    height: 60px;
    padding: 0px;
  }

  .f-content {
    padding: 0 40px;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
  }

  .col {
    align-items: flex-start;
    text-align: start;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .logo-col img {
    width: 69px;
    height: 69px;
  }

  .logo-col p {
    text-align: start;
    width: 318px;
    font-size: 12px;
  }

  .col h4 {
    font-size: 14px;
  }

  .col a {
    font-size: 12px;
  }

  .wave3 {
    width: 82px;
    height: 89px;
  }
  .solutions {
    height: auto;
    padding: 30px 12px;
    margin: 50px 20px 100px 20px;
  }

  .solutions .solutions-content {
    width: 100%;
  }

  .net-infra,
  .billing-system,
  .camera-surveillance,
  .cloud-solutions,
  .collaboration-system,
  .data-center,
  .hospitality-app,
  .mail-system,
  .mobile-app,
  .network-security,
  .pbx-system,
  .pos-system,
  .smart-home,
  .websites,
  .wifi-system{
    display: block;
    width: 100%;
    max-width: 175px;
    height: 209px;
    object-fit: contain;
    margin: 0 auto 30px;
  }
  .solutions .solutions-content h1 {
    font-size: 16px;
  }

  .solutions .solutions-content .fs{
    font-size: 14px;
  }

  .solutions .solutions-content p{
    font-size: 12px;
  }

  .solutions .solutions-photo img {
    display: none;
  }

  .solutions-content .rectangle {
    width: 82px;
    height: 89px;
  }
	#about-us .right-column{
    right: -29px;
  }
  #about-us .right-column .frame{
    
    left: -60px !important;
  }
  #about-us .right-column .Our-Vision-frame {
    left: -60px !important;
  }
  
  #about-us .right-column .idea-icon{
    position: relative;
      right: 60px;
      top: -130px;
    
  }
}

/* Tablet specific styles (768px-1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  #header {
    height: 70px;
    padding: 0 24px;
    justify-content: space-between;
  }

  .logo {
    width: 44px;
    height: 44px;
    margin-left: 0;
  }

  #navbar {
    gap: 50px;
    margin-right: 40px;
  }

  #navbar li a {
    font-size: 14px;
  }

  #h-text h1 {
    font-size: 24px;
    margin-top: 100px;
  }

  #h-text p {
    font-size: 16px;
    line-height: 28px;
  }

  .h-button {
    width: 160px;
    height: 45px;
    font-size: 16px;
  }

  #logo-raw {
    flex-wrap: nowrap;
    height: 90px;
    padding: 10px 12px;
    margin-top: -30px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .l-container {
    width: auto;
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }

  .l-container img {
    width: 150px;
    height: 100px;
    flex-shrink: 0;
  }

  #hero {
    height: auto;
    padding: 60px 40px;
    background-position: center;
    background-size: cover;
  }

  #h-text {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 800px;
    margin: 0 auto;
  }

  #h-text h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  #h-text p {
    font-size: 18px;
    line-height: 30px;
  }

  .h-button {
    width: 170px;
    height: 48px;
    font-size: 16px;
    margin-top: 30px;
    gap: 8px;
  }

  .arrow-icon {
    width: 22px;
    height: 22px;
  }

  #about {
    padding: 40px 40px;
  }

  .about-content {
    flex-direction: column;
    gap: 32px;
    padding: 0;
    align-items: flex-start;
  }

  .about-text {
    flex-direction: row;
    gap: 20px;
  }

  .left-icons {
    gap: 14px;
  }

  .content {
    font-size: 16px;
  }

  .content p {
    font-size: 16px;
    line-height: 28px;
  }

  .about-image {
    width: 100%;
    text-align: center;
  }

  .about-image img {
    width: 45%;
    max-width: 400px;
    height: auto;
  }

  .partner {
    flex-direction: column;
    align-items: center;
  }

  .partner-container {
    flex-direction: column;
    padding: 0 40px;
    gap: 30px;
  }

  .p-photo img {
    display: none;
  }

  .p-content {
    margin: 0 auto;
    text-align: left;
    width: 100%;
  }

  .p-content h2 {
    font-size: 20px;
    text-align: left;
  }

  .gradient-line {
    margin-left: 0;
  }

  .p-content-p {
    font-size: 16px;
    gap: 16px;
  }

  .p-photo-re {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 300px;
    object-fit: contain;
  }

  .banner {
    height: 150px;
    padding: 40px 40px;
    flex-direction: column;
  }

  .banner-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .banner-card {
    width: 200px;
  }

  .banner-card img {
    width: 100%;
    height: auto;
    max-width: 50px;
  }

  .banner-card h3 {
    font-size: 20px;
    margin-top: 10px;
  }

  .banner-card p {
    font-size: 16px;
  }

  .wave {
    max-width: 80px;
    max-height: 100px;
  }

  .team-intro p {
    max-width: 800px;
    font-size: 16px;
  }

  .team-row {
    width: 700px;
  }

  .ourpartner {
    max-width: 800px;
  }

  .ourpartner img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: auto 10px auto 10px;
  }

  .f-content {
    padding: 0 20px;
    flex-direction: row;
    align-items: flex-start;
    text-align: start;
  }

  .col {
    align-items: flex-start;
    text-align: start;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .logo-col img {
    width: 69px;
    height: 69px;
  }

  .logo-col p {
    text-align: start;
    width: 200px;
    font-size: 12px;
  }

  .col h4 {
    font-size: 14px;
  }

  .col a {
    font-size: 12px;
  }

  .wave3 {
    width: 82px;
    height: 89px;
  }
}




/* Extra large desktop */
@media (min-width: 1601px) and (max-width: 1920px) { 
  .contact{
    justify-content: center;
    align-self: center;
  }
	/*
  h1,
  h2,
  h3,
  h4,
  h5,
  h6{
    font-size: 1.8rem !important;
  }
  p{
    font-size: 1.2rem !important;
  }
	*/
  #header{
    width: 100%;
  }
  #h-text{
    width: 1440px;
  
  }
  #hero{
    justify-content: center;
    align-items: center;
  }
	  .frame{
    height: 50%;
    right: 220px;
  }
  .Our-Vision-frame{
    left: 250px;
  }
  .idea-icon{
    right: 0px;
  }
  .Our-Vision-idea-icon
{
  right: 320px !important;
}
}


/* Ultra-wide monitors */
@media (min-width: 1921px) { 
  .contact{
    justify-content: center;
    align-self: center;
  }
 /* 
    h1,
    h2,
    h3,
    h4,
    h5,
    h6{
      font-size: 1.8rem !important;
    }
  p{
    font-size: 1.2rem !important;
  }
	*/
  #header{
    width: 100%;
  }
  #h-text{
    width: 1440px;
    
  }
  #hero{
    justify-content: center;
    align-items: center;
  }
}
