:root {
  --primary-bg-color: #F2FCFF;
  --primary-color: #01232B;
  --secondary-color:#00AAD3;
  --navy-color: #04828E;
  --white-color: #FFFFFF;
  --light-white-color: #F5F5F5;
  --black-color: #000000;
  --gray-color:#747474;
  --bg-color: #C2F3FF;
  --light-primary-color: #05303B;
  --mark-main-color:#04828E;
}

a{text-decoration: none !important;}
a:hover{color: inherit !important;}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Geologica", sans-serif !important;
}

.page-wrapper {
    display: flex;
    justify-content: center;
    height: 100%;
}

.page-content {
    max-width: 1500px; 
    width: 100%;
}

.primary-btn,.secondary-btn, .outline-btn{
    color: var(--white-color);
    background-color: var(--primary-color);
    outline: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    border: none;
    border-radius: 3px;
    padding: 10px 15px;
    min-width: 220px
}
.secondary-btn{
    background-color: var(--secondary-color);
}

.outline-btn{
  background-color: var(--white-color);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.title{
    display: flex;
    align-items: center;
    gap: 10px;
}

/* /////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////  Header  //////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */

header{
  position: fixed;
  top: 30px;
  z-index: 9999;
  width: 100%;
  height: auto;
}

.polygon {
  position: relative;
  align-content: center;
  width: 945px;
  height: 80px; 
  margin: auto;
  padding: 4px 60px;
  overflow: hidden; 
  background: rgba(255, 255, 255, 0.6); 
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  clip-path: polygon(5.75% 2%, 94.75% 3%, 100% 46%, 94.75% 88%, 5.75% 90%, 0% 46%);
}

.polygon::before {
  content: "";
  position: absolute;
  inset: 0; 
  background-image: url(../assets/bg/Union.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}


.hamburger{
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
    width: 180px;
    height: 55px;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #525252;
    font-size: 16px;
    font-weight: 100;
    line-height: 34px;
}
.nav-links a.active{
    color: var(--primary-color);
    font-weight: 600;
}

.content-wrap{
  width: 80%;
  margin: auto;
}

/* /////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////  BREADCRUMB  //////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 40px 0 0;
}

.breadcrumb a {
  color: var(--gray-color);
  text-decoration: none;
  font-weight: 300;
  font-size: 16px;
}

.breadcrumb a:hover {
  text-decoration: none !important;
  color: var(--gray-color) !important;
}

.separator {
  color: var(--gray-color);
  font-size: 25px;
  font-weight: 300;
}

.current {
  font-weight: 500;
  color: var(--gray-color);
}

/* ////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////// HEADER  ////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////// */
.header-bg,.top-angeld-bg{
    width: 100%;
    background: var(--primary-bg-color);
    height: auto; 
    padding: 120px 0 60px;
    position: relative;
    box-sizing: border-box;
}
.header-bg::after {
  content: "";
  position: absolute;
  bottom: -79px; 
  left: 0;
  width: 100%;
  height: 80px; 
  background: inherit; 
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.top-angeld-bg{padding: 0 0 60px;}
.top-angeld-bg::before {
  content: "";
  position: absolute;
  top: -79px; 
  left: 0;
  width: 100%;
  height: 80px; 
  background: inherit; 
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}



.left-cell-bg{
    background-image: url(../assets/bg/left-cells.png);
    background-repeat: no-repeat;
}
.right-cell-bg{
    background-image: url(../assets/bg/right-cells.png);
    background-repeat: no-repeat;
    background-position: right top  ;
    height: 100%;
    position: relative;
    top: -350px;
}

/* /////////////////////////////////////////////////////////////////////////// */
/* /////////////////////// Home Page /////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////// */

/* Hero */
.hero {
  
  position: relative;
  
  padding-bottom: 100px;
  overflow: hidden;
}

.hero::before, .hero::after{
  content: "";
  position: absolute;
  left: 0;
  top: 120px;
  background-image: url(../assets/bg/hero-cells.png);
  background-repeat: no-repeat;
  width: 285px;
  height: 100%;
  z-index: -1;
}
.hero::after{
  background-image: url(../assets/bg/orange-cell.png);
  width: 135px;
  height: 158px;
  left: 300px;
  top: 0;
  z-index: -1;
}

.hero-container{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto 100px;
}
.hero-text{
  padding-inline-start: 150px;
}
.hero h2 {
  font-size: 44px;
  line-height: 60px;
  font-weight: 500;
  color: var(--primary-color);
  max-width: 575px;
  position: relative;
}
.hero h2 span{ color: var(--secondary-color);}

.animate-hex{
  --hex-scale: 0;       /* initial state */
  --hex-opacity: 1;
}
.animate-hex::before{
  content: "";
  position: absolute;
  bottom: 35px;
  right: 0;
  background-image: url(../assets/bg/animate-cell.png);
  background-repeat: no-repeat;
  width: 90px;
  height: 105px;
  z-index: 1;
  transform-origin:center;
  transform: scale(var(--hex-scale));
  opacity: var(--hex-opacity);
}
.hero p {
  font-weight: 100;
  font-size: 21px;
  line-height: 34px;
  color: #121212;
  width: 85%;
  max-width: 525px;
  margin-bottom: 40px;
}

.hero-buttons{ position: relative;}
.hero-buttons .btn-bee {
  position: absolute;
  left: -35px;
  bottom: 20px;
  background: url(../assets/images/left-angle-bee.png) no-repeat;
  width: 65px;
  height: 60px;
}

.hero-buttons .btn-cell {
  position: absolute;
  left: 43%;
  bottom: -100px;
  background: url(../assets/bg/orange-cell.png) no-repeat;
  width: 135px;
  height: 158px;
  z-index: -1;
}

.hero-buttons a{
  font-weight: 400;
  border-radius: 2px;
  padding: 10px 25px;
}
.hero-buttons a.primary-btn:hover{ color: var(--white-color) !important;}
.hero-buttons a.outline-btn:hover{ color: var(--secondary-color) !important;}

.hero-image {
  max-width: 100%;
  overflow: hidden;
}

.hero-image::after{
  content: "";
  position: absolute;
  bottom: -280px;
  right: 0;
  background-image: url(../assets/bg/left-cells.png);
  background-repeat: no-repeat;
  width: 184px;
  height: 510px;
  transform: rotateZ(180deg);
  z-index: -1;
}


/* ///////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Services section*/

.our-service{
  margin-bottom: 120px;
  padding-bottom: 120px;
  position: relative;
}

.our-service::before{
  position: absolute;
  content: "";
  bottom: -18%;
  left: 5px;
  background-image: url(../assets/bg/our-services/bottom-cells.png);
  background-repeat: no-repeat;
  width: 195px;
  height: 360px;
}

.services-grid {
 max-width: 1200px;
 margin: auto;
} 

.hexaon-card,.hexaon-card-second{
  position: relative;
  width: 325px;

}
.card-wrap, .card-wrap-center{
  width: 80%;
  display: flex;
  margin: 0 auto;
}

.decor {
  position: absolute;
  background-repeat: no-repeat;
  display: block;
}

/* Default line */
.hexaon-card .hex-line {
  left: 315px;
  top: 70px;
  transform: rotateZ(-4deg);
  background-image: url(../assets/bg/our-services/line.png);
  width: 343px;
  height: 38px;
}

/* Default bee */
.hex-bee {
  background-image: url(../assets/images/right-title-bee.png);
  width: 72px;
  height: 72px;
  transform: rotateZ(-15deg);
  left: 249px;
  top: 30px;
  z-index: 1;
}

/* Adjustments for second card */
.hexaon-card-second .hex-bee {
  left: -15px;
  top: 35px;
  transform: rotateZ(97deg);
}
.hexaon-card-second .hex-line {
  background-image: url(../assets/bg/our-services/angle-line.png);
  top: 90px;
  left: -92%;
  width: 285px;
  height: 267px;
  transform: rotateZ(2deg);
}

/* Adjustments for center cards */
.card-wrap-center .hexaon-card:not(:last-child) .hex-bee {
  left: 120px;
  top: -40px;
}

.card-wrap-center .hexaon-card:last-child .hex-bee {
  left: 210px;
  top: 76%;
  transform: rotateZ(100deg);
}


/* .card-wrap>.hexaon-card::after, .card-wrap>.hexaon-card::before,
.card-wrap .hexaon-card-second::before, .card-wrap .hexaon-card-second::after,
.card-wrap-center .hexaon-card::before{
  content: "";
  position: absolute;
  left: 315px;
  top: 70px;
  transform: rotateZ(-4deg);
  background-image: url(../assets/bg/our-services/line.png);
  background-repeat: no-repeat;
  width: 343px;
  height: 38px;
}
.card-wrap>.hexaon-card::before, .card-wrap .hexaon-card-second::before,
.card-wrap-center>.hexaon-card::before {
  background-image: url(../assets/images/right-title-bee.png);
  width: 72px;
  height: 72px;
  transform: rotateZ(-15deg);
  left: 249px;
  top: 30px;
  z-index: 1;
  
}
.card-wrap .hexaon-card-second::before{
  left: -15px;
  top: 35px;
  transform: rotateZ(97deg);
}
.card-wrap .hexaon-card-second::after{
  background-image: url(../assets/bg/our-services/angle-line.png);
  top: 90px;
  left: -92%;
  width: 285px;
  height: 267px;
  transform: rotateZ(2deg);
}

.card-wrap-center .hexaon-card:not(:last-child)::before{
  left: 120px;
  top: -40px;
}

.card-wrap-center .hexaon-card:last-child::before{
  left: 210px;
  top: 76%;
  transform: rotateZ(100deg);
} */

.hexaon {
  position: relative;
  width: 320px;
  aspect-ratio: 1 / 1.1;
  background: var(--secondary-color);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hexaon-inner {
  width: 99%;   
  height: 99.5%;
  background: var(--white-color); 
  clip-path: inherit; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-hex-content h3 {
  font-weight: 400;
  font-size: 22px;
  line-height: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.service-hex-content p {
  font-weight: 100;
  font-size: 16px;
  line-height: 26px;
  color: #525252;
  max-width: 200px;
  margin: 0 auto 16px;
}

.service-hex-content img {
  width: 45px;
  height: 45px;
}
.service-hex-content>img {
  width: 35px;
  height: 35px;
  margin-bottom: 20px;
}

/* /////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////// */
/* Clients Section */

.client-section-wrapp {
  width: 100%;
  height: 885px;
  position: relative;
}

.client-section-wrapp::before,
.client-section-wrapp::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 110px;
  background-image: url(../assets/bg/client-cells.png);
  background-repeat: no-repeat;
  width: 90px;
  height: 204px;
  z-index: 1;
}
.client-section-wrapp::after{
  background-image: url(../assets/bg/client-right-cells.png);
  left: unset;
  bottom: 30%;
  right: 0;
  width: 265px;
  height: 521px;
}

.client-section {
  position: relative;
  background: #EFFCFF;
  text-align: center;
  min-height: 625px;
}

.client-section::before, .client-section::after {
  content: "";
  position: absolute;
  top: -129px; 
  left: 0;
  width: 100%;
  height: 130px; 
  background: inherit; 
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.client-section::after{
  top: unset;
  bottom: -129px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.client-section h2, .our-products-section h2, .our-service h2{
  font-weight: 500;
  font-size: 30px;
  line-height: 34px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.client-section p{
  font-weight: 200;
  font-size: 20px;
  line-height: 30px;
  color: #525252;
  width: 75%;
  max-width: 900px;
  margin: 0 auto 40px;
}
.client-section p strong{ 
  font-weight: 600;
  color: var(--secondary-color);
}

.clients-image{
  display: flex;
  flex-direction: column;
  width: 550px;
  margin: auto;
}
.clients-image img{
  width: 140px;
  height: 95px;
}
/* /////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////// */
/* Our Products section */
.our-products-section{
  position: relative;
  margin-bottom: 100px;
  padding-bottom: 50px;
}
.our-products-section p{
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: var(--secondary-color);
  text-align: center;
}
.our-products-section p strong{
  font-weight: 500;
  font-size: 26px;
  text-decoration: underline;
}

.product-img{
  width: 50%;
  height: 555px;
}
.product-img img{
  width: 100%;
  height: 100%;
  object-fit: none;
}

.product-feature{
  width: 50%;
  position: relative;
}
.product-feature::after, .our-products-section::after{
  content: "";
  position: absolute;
  bottom: -116px;
  right: -95px;
  background-image: url(../assets/bg/cases-cells.png);
  background-repeat: no-repeat;
  transform: rotateZ(138deg);
  width: 210px;
  height: 190px;
}
.our-products-section::after{
  left: -35px;
  bottom: -80px;
  transform: rotateZ(90deg);
  height: 135px;


}
.product-feature h4{
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--primary-color);
  width: 86%;
  margin: 0 auto 20px;
}
.product-feature .features-container{
  flex-direction: column;
  flex-wrap: unset;
  gap: 20px;
  max-width: 80%;
  margin: auto;
}
.product-feature .feature-card{
  flex: none;
  justify-content: start;
  padding: 10px 20px 10px 35px;
  border-radius: 3px;
}
.product-feature .feature-card img{
  left: 0;
  top: unset;
  margin-bottom: 0;
}
.feature-card p {
  max-width: 90%;
  font-weight: 100;
  font-size: 17px;
  text-align: start;
  color: #000000;
}

.button-wrap{
  width: 68%;
  text-align: end;
  position: relative;
}
.button-wrap::after{
  content: "";
  position: absolute;
  right: -30px;
  bottom: 8px;
  background-image: url(../assets/images/right-title-bee.png);
  background-repeat: no-repeat;
  width: 72px;
  height: 72px;
  transform: rotateZ(5deg);
}
.button-wrap .secondary-btn{
  font-size: 16px;
  padding: 10px 30px;
}
.button-wrap .secondary-btn:hover{ color: var(--white-color) !important;}
/* /////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////// */
/* Case Study section */
.case-studies-wrapp{
  padding-top: 135px;
}
.case-studies {
  position: relative;
  background: radial-gradient(50% 41.74% at 50% 41.74%, #66E1FF 0%, var(--secondary-color) 100%);
  text-align: center;
  margin-bottom: 250px;
  min-height: 875px;
}
.case-studies::before, .case-studies::after {
  content: "";
  position: absolute;
  top: -129px; 
  left: 0;
  width: 100%;
  height: 130px; 
  background: var(--secondary-color); 
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.case-studies::after{
  top: unset;
  bottom: -129px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.case-studies h2{
  font-weight: 500;
  font-size: 30px;
  line-height: 34px;
  color: var(--white-color);
  margin-bottom: 60px;
}

.cases {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  position: relative;
  margin: auto;
  width: 1170px;
}

.hex-card {
  width: 550px;
  aspect-ratio: 1 / 1.1;
  background: var(--white-color);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hex-case-content {
  padding: 30px;
  text-align: center;
}

.hex-case-content img {
  max-width: 220px;
  margin-bottom: 20px;
}

.hex-case-content h3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  width: 70%;
  margin: auto;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.hex-case-content p {
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #525252;
  width: 70%;
  margin: 0 auto 20px;
}
.hex-case-content p strong{ font-weight: 500; }


.hex-case-content .btn, .hex-case-content a:hover{
  padding: 10px 30px;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color) !important;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 400;
  font-size: 14px;
}

.hex-card-wrap {position: relative; width: 550px;}
.hex-card-wrap:last-child{ top: 200px; z-index: 2;}

.bee {
  position: absolute;
  width: 72px;
  height: 72px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.bee-right {
  top: 65px;
  right: 50px;
  background-image: url(../assets/images/right-title-bee.png);
}

.bee-left {
  top: -40px;
  left: 45%;
  background-image: url(../assets/images/left-title-bee.png);
}


.hex-card-wrap:last-child::after{
  content: "";
  position: absolute;
  top: -60px;
  right: -120px;
  background-image: url(../assets/bg/cases-cells.png);
  background-repeat: no-repeat;
  transform: rotateZ(5deg);
  width: 210px;
  height: 190px;
  z-index: 1;
}

.hex-card-wrap:first-child:after{
  content: "";
  position: absolute;
  top: 35px;
  right: -60%;
  background-image: url(../assets/bg/cases-dashes.png);
  background-repeat: no-repeat;
  transform: rotateZ(5deg);
  width: 395px;
  height: 150px;
  z-index: 1;
}

.case-studies .content-wrap{ position: relative;}

.cases::before,
.case-studies .content-wrap::after{
  content: "";
  position: absolute;
  top: 13%;
  left: -60px;
  background-image: url(../assets/bg/cases-left-cells.png);
  background-repeat: no-repeat;
  width: 116px;
  height: 124px;
}
.case-studies .content-wrap::after{
  top: unset;
  bottom: -32%;
  left: 50%;
  z-index: 1;
  background-image: url(../assets/bg/cases-cells.png);
  transform: rotateZ(195deg);
  width: 210px;
  height: 150px;
}
/* Connector curve (dashed line between hexagons) */
.connector {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 100px;
  border-top: 3px dashed white;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  z-index: 0;
}




/* /////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////// */
/* About section */

.sticky-section {
  position: relative;
  display: flex;
  justify-content: center;
  background: var(--primary-color);
  color: var(--light-white-color);
  padding: 0;
  border-bottom: 1px solid #D9D9D9;
}

.left-section::before{
  content: "";
  position: absolute;
  left: 0;
  top: -45px;
  background-image: url(../assets/bg/about-cells.png);
  background-repeat: no-repeat;
  width: 215px;
  height: 100%;
  z-index: -1;
}

.left-section {
  flex: 1;
  padding: 40px 70px;
  position: sticky;
  top: 0;            /* makes it stay fixed while scrolling */
  height: 100vh;     /* full screen height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--light-primary-color);
}

.left-section h2{
  font-weight: 500;
  font-size: 30px;
  line-height: 34px;
  color: var(--white-color);
  margin-bottom: 30px;
  margin-top: 20%;
}
.left-section p{
  font-weight: 100;
  font-size: 16px;
  line-height: 28px;
  color: var(--light-white-color);
  text-align: center;
  width: 460px;
  margin: 0 auto;
}

.right-section {
  flex: 1;
  padding: 200px 50px 0 80px;
  
  
}

.scroll-block {
  min-height: 200vh; 
  width: 460px;
  /* width: 85%; */
  margin: auto;
}

.right-section h3{
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 26px;
}
.right-section h3 img{
  margin-inline-end: 10px;
  width: 34px;
  height: 34px;
}
.right-section p{
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.vision,.mission{
  padding: 30px 20px;
  margin-bottom: 140px;
}

.edge, .industries{
  margin-bottom: 100px;
}
.edge h3{
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 53px;
  line-height: 56px;
  text-align: center;
  margin-bottom: 50px;
}


.hex-badge {
  width: 30px;
  height: 30px;
  background: var(--secondary-color);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%,75% 93.3%, 25% 93.3%, 0% 50% );
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}

.hex-badge span {
  color: var(--light-white-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  transform: rotate(-90deg);
}

.edge p{
  color: var(--light-white-color);
  font-weight: 200;
  font-size: 28px;
  line-height: 36px;
  text-align: center;
  /* width: 90%; */
  margin-bottom: 0;
}

.industries h3{
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: var(--secondary-color);
  text-align: center;
  width: 90%;
  margin: 0 auto 40px;
}

.industries .indust-hex{
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--light-primary-color);
  width: 150px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  
}

.indust-hex img{
  width: 40px;
  height: 40px;
}

.indust-hex span{
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  width: 90%;
}

.left-indust-hex, .right-indust-hex{
  position: relative;
}
.left-indust-hex::after, .right-indust-hex::after{
  content: "";
  position: absolute;
  right: 95px;
  top: 118px;
  background-image: url(../assets/bg/left-line.png); 
  background-repeat: no-repeat;
  height: 100%;
  width: 215px;
}

.right-indust-hex::after{
  left: 95px;
  transform: rotateZ(108deg);
  top: 115px;
}
/* ////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////// Services Page /////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////// */

.bee-wrap{
    position: relative;
    width: 1500px;
    margin: auto;
}

.right-bee,.left-bee{
    background-image: url(../assets/bg/right-dashes.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    width: 605px;
    right: 0;
    top: -10px;
    height: 80px;
}
.right-bee img,.left-bee img{
    position: absolute;
    left: -30px;
    top: 0; 
    width: 70px;
    height: 70px;
}

.left-bee{
    background-image: url(../assets/bg/left-dashes.png);
    background-position: left bottom;
    right: unset;
    left: 0;
    top: -50px;
    transform: rotate(8deg);
}
.left-bee img{
    left: unset;
    right: 0;   

}

.serv-container{ padding-top: 150px; }
.service-content{
    text-align: center;
}

.service-content span{
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 15px;
}
.service-content h3{
    font-size: 36px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 50px;
    margin-bottom: 25px;
}
.service-content p{
    color: var(--black-color);
    font-size: 18px;
    font-weight: 200;
    line-height: 32px;
    width: 70% ;
    margin: 0 auto 60px;
}
.service-content p strong{ font-weight: 500;}

.hex-wrap{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap:25px;
}

.hexagon {
  flex: 1 1 300px;
  max-width: 360px;
  aspect-ratio: 1 / 1.2;
  background: var(--secondary-color);
  color: var(--white-color);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  text-align: center;
  
}
.hexagon.secondary{ 
    background: var(--bg-color);
    color: var(--primary-color);
}

.hex-content img {
  width: 50px;
  margin-bottom: 15px;
}

.hexagon .hex-content h4 {
  font-size: 26px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 18px;
}
.hexagon .hex-content p{
  width: 80%;
  margin: 0 auto;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
}

.hexagon ul {
  list-style: none;
  padding-left: 0;
}

.hexagon li {
  display: flex;
  justify-content: center;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 5px;
}

.hexagon li::before {
  content: "•";
  font-size: 24px;
  color: inherit;
  margin-inline-end: 10px;
}

.mobile-service, .design-service,.cta-section{position: relative;}
.mobile-service::before{
    content: "";
    position: absolute;
    bottom: 20%;
    left: 0;
    background-image: url(../assets/bg/medium-left-cell.png);
    background-repeat: no-repeat;
    width: 110px;
    height: 320px;

}
.mobile-service::after{
    content: "";
    position: absolute;
    top: -35%;
    right: 0;
    background-image: url(../assets/bg/right-cells.png);
    background-repeat: no-repeat;
    width: 190px;
    height: 510px;

}

.mobile-service .bee-wrap{top: 15%;}

.design-service::before{
    content: "";
    position: absolute;
    bottom: 15..\%;
    left: 0;
    background-image: url(../assets/bg/small-left-cell.png);
    background-repeat: no-repeat;
    width: 100px;
    height: 205px;

}
.design-service::after{
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    background-image: url(../assets/bg/medium-right-cell.png);
    background-repeat: no-repeat;
    width: 185px;
    height: 370px;

}

.design-service .hexagon-bg{ margin: -100px auto 0;}
.hex-bg-wrap{
  width: 100%;
  height: 1020px;
  max-height: 1500px; 
  position: relative;
}

.hexagon-bg {
  width: 75%;
  height: 100%;
  background: var(--primary-bg-color);
  
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  align-content: center;
  text-align: center;
  margin: 0 auto ;
  position: absolute;
  left: 50%;
  translate: -50%;
  
}

.hex-icon, .mark-hex-icon,
.black-hex-icon{
    width: 24px;
    height: 24px;
    transform: rotateZ(90deg);
    background: var(--secondary-color);
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
}
.mark-hex-icon{
  background: var(--mark-main-color);
}
.black-hex-icon{
  width: 18px;
  height: 18px;
  background: var(--primary-color);
}


.cta-section{
    padding: 80px 0;
    text-align: center;
}
.cta-section::after{
    content: "";
    position: absolute;
    bottom: -5%;
    right: 0;
    background-image: url(../assets/bg/right-cells.png);
    background-repeat: no-repeat;
    width: 190px;
    height: 320px;
}

.cta-section h2{
    font-size: 28px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 30px;
    margin-bottom: 25px;
}
.cta-section p{
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--primary-color);
    width: 90%;
    margin: 0 auto 16px;
}
.cta-section p strong{ font-weight: 700; }
.cta-section .cta-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}



/* ////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////// Products Page /////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////// */
.product.header-bg{
  margin-bottom: 80px;
  padding: 120px 0 0;
}
.product .content-wrap::before{
    content: "";
    position: absolute;
    top: 12%;
    left: 0;
    background-image: url(../assets/bg/left-cells.png);
    background-repeat: no-repeat;
    width: 185px;
    height: 510px;
    z-index: 1;

}
 
.info-container{
  position: relative;
  z-index: 2;
}

.product h2{
  color: var(--mark-main-color);
  font-weight: 600;
  font-size: 61px;
  line-height: 64px;
}
.product p{
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--primary-color);
  width: 90%;
}
.product .breif{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--primary-color);
  margin-top: 60px;
  width: 90%;
}

.product .breif span{
  color: var(--mark-main-color);
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  text-decoration: underline;
  display: block;
  margin-bottom: 10px;
}
.prod-image{
  width: 100%;
  height: 550px;
}
.prod-image img{
  width: 100%;
  height: 100%;
  object-fit: none;
}

.benefit-section{
  margin-bottom: 60px;
}

.benefit {
  position: relative;
  width: 100%;
  min-height: 730px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 0 50px;
  z-index: 1; /* keep content above the ::before */
}

.benefit::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary-bg-color);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  z-index: -1; /* send background behind content */
}
.benefit h2,
.feature-section h2,
.target-section h2,
.technology-section h2{
  color: var(--mark-main-color);
  font-weight: 600;
  font-size: 34px;
  line-height: 30px;
  margin-bottom: 40px;
}
.benefit-content div{
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.benefit-content img{
  width: 30px;
  height: 30px;
}
.benefit-content p{
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--primary-color);
  margin-bottom: 0;
}
.benfit-img{
  width: 500px;
  height: auto;
}
.benfit-img img{
  width: 100%;
  height: 100%;
}
.feature-section {margin-bottom: 150px;}
.feature-section h2{ margin-bottom: 80px;}
.features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.feature-card {
  flex: 0 0 calc(25% - 40px);
  background: var(--white-color);
  border-radius: 12px;
  padding: 35px 20px 20px;
  box-shadow: 0px 0px 4px 0px #74747466;
  text-align: center;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;    
  justify-content: center;
}
.feature-card img {
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
  position: absolute;
  top: -20px; 
  left: 50%;
  transform: translateX(-50%);
}
.feature-card p {
  max-width: 90%;
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
}

.target-section h2{
  padding-top: 10px;
  margin-bottom: 60px;
}
.target-section p{
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}
.target-image{ width: 100%;}
.target-image img{ 
  width: 100%;
  height: 100%;
}

.technology-section .header-bg{
  padding: 80px 0 0;
  margin-bottom: 80px;
  height: 820px;
}
.technology-section .header-bg::after{ z-index: -1;}

.technology-section .cards-container, .cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.technology-section .carda {
  /* flex: 0 0 calc(25% - 20px); */
  background: var(--white-color);
  box-shadow: 0px 1px 4px 0px #00000040;
  padding: 20px;
  min-height: 190px;
  text-align: start;
  border-radius: 10px;
}
.technology-section .carda h3{
  color: var(--mark-main-color);
  text-decoration: underline;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
}
.technology-section .carda span,
.technology-section .carda p{
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: var(--primary-color);
}
.tech-images{
  gap: 40px;
  text-align: center;
  align-items: baseline;
  margin-top: 30px;
}
.app-images{
  width: 100%;
  height: 700px;
  margin-top: -75px;
}
.app-images img{
  width: 100%;
  height: 100%;
}

/* /////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////  Case Studies  ////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */
.vechiel-section.header-bg{ padding: 120px 0 0;}
.case-info h2{
  font-weight: 600;
  font-size: 70px;
  line-height: 75px;
  color: var(--secondary-color);
  margin-bottom: 25px;
}
.case-info p{
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--primary-color);
}
.case-info .case-image{
  width: 100%;
  height: 500px;
  text-align: end;
}
.case-info .case-image img{
  width: 100%;
  height: 100%;
}

.vechiel.mobile-service{ padding: 80px 0; }
.vechiel.mobile-service::before{ display: none; }
.about-case{
  background: var(--primary-bg-color);
  text-align: center;
  padding: 40px;
}
.about-case h2{
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.about-case p{
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
  width: 80%;
  margin: auto;
}

.case-challenge-section .top-angeld-bg,
.supp-case-challenge .top-angeld-bg{
  margin-bottom: 10px;
  padding-bottom: 40px;
}


.case-challenge, .case-issues, .supp-case-challenge{
  position: relative;
  text-align: center;
  margin-bottom: 90px;
}
.case-issues{ margin-bottom: 60px;}

.case-challenge::before{
  content: "";
  position: absolute;
  background-image: url(../assets/bg/left-curve.png);
  background-repeat: no-repeat;
  left: 20%;
  top: 100px;
  width: 50%;
  height: 290px;
}
.case-challenge>img, .supp-case-challenge>img{margin-bottom: 20px;}
.case-challenge h3,.supp-case-challenge h3{
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.case-challenge h3 img, .supp-case-challenge h3 img{ margin-inline-end: 8px;}
.case-challenge p,
.supp-case-challenge p,
.supp-case-challenge li{
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
  width: 55%;
  margin: auto;
}

.supp-case-challenge li{ line-height: 30px;}

.case-lamp{
  padding: 25px 0 30px;
  text-align: center;
  width: 100%;
  height: 140px;
}
.case-lamp img{ width: 100%; height: 100%;}

.case-issues h3{
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.case-issues h3 img{
  width: 25px;
  height: 25px;
}

.case-issues ul {
  list-style: none;
  padding-left: 0;
}

.case-issues li {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.case-issues li::before {
  content: "•";
  font-size: 14px;
  color: inherit;
}
.case-issues::after{
  content: "";
  position: absolute;
  background-image: url(../assets/bg/right-curve.png);
  background-repeat: no-repeat;
  right: 0;
  top: 15px;
  width: 65%;
  height: 345px;
}

.case-solution{
  text-align: center;
  padding-top: 100px;
}
.case-solution h3, .case-feature h3{
  font-weight: 600;
  font-size: 28px;
  line-height: 30px;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.case-solution h3 img{
  width: 25px;
  height: 35px;
  margin-inline-end: 5px;
}
.case-solution p{
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  color: var(--primary-color);
  width: 90%;
  margin: auto;
}
.case-solution p strong{ font-weight: 600; } 

.case-feature{
  text-align: center;
  padding: 100px 0;
}
.case-feature h3 img{
  width: 25px;
  height: 25px;
  margin-inline-end: 5px;
}

.case-card-container{
  display: flex;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.case-feature-card {
  min-height: 140px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 4px 0px #D9D9D9CC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  gap: 10px;
}

.case-feature-card .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.case-feature-card img {
  width: 30px; 
  height: auto;
}

.case-feature-card p {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 29px;
  color: var(--primary-color);
  margin: 0;
}

.case-feature-section .case-feature-card p{
  line-height: 24px;
  font-size: 14px;
}
.case-feature-section .case-card-container{ gap: 20px;}

.vechiel-tech,.supplier-tech{margin: 30px 0;}
.case-tech{
  text-align: center;
}
.case-tech h2{
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  color: var(--primary-color); 
}
.case-tech span{
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: var(--primary-color);
}

.case-tech .cards-container{ margin-top: 15px;}

.case-tech .carda {
  flex: 0 0 calc(25% - 20px);
  background: var(--white-color);
  box-shadow: 0px 1px 4px 0px #00000040;
  padding: 20px;
  min-height: 190px;
  text-align: center;
  border-radius: 10px;
}
.case-tech .carda h3{
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}
.case-tech .carda span, .case-tech .carda p{
  font-weight: 500;
  font-size: 12px;
  line-height: 30px;
  color: var(--primary-color);
}
.case-tech .carda p{
  font-size: 16px;
  line-height: 23px;
  padding-top: 20px;
}

.supp-case-challenge::before{
  content: "";
  position: absolute;
  background-image: url(../assets/bg/left-big-curve.png);
  background-repeat: no-repeat;
  left: 10%;
  top: 120px;
  width: 80%;
  height: 490px;
}

.supp-case-challenge ul{
  list-style: none;
  padding-left: 0;
  margin-top: 35px;
}
.supp.case-solution{ padding-top: 60px;}

.case-result h2{
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: var(--primary-color);
  margin-bottom: 40px;
}
.result-card-container{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 70px;
}
.res-card{
  text-align: center;

}
.res-card p{
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
}
.res-card p strong{ font-weight: 600;}
.res-card img{
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
/* ///////////////////////////////////////////////////////////////// */
/* //////////////////////// JOBS ////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */

.jobs-section{
  background: var(--white-color);
  padding-top: 15%;
  position: relative;
}
.jobs-section::before{
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  background-image: url(../assets/bg/left-grey-cells.png);
  background-repeat: no-repeat;
  width: 185px;
  height: 510px;
  z-index: 0;
}
.job-form::after{
  content: "";
  position: absolute;
  right: 0;
  top: 5%;
  background-image: url(../assets/bg/right-cells.png);
  background-repeat: no-repeat;
  width: 180px;
  height: 510px;
  z-index: 0;
}
.jobs-section h2,.job-form h2{
  font-weight: 600;
  font-size: 30px;
  line-height: 34px;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.jobs-section p, .job-form p{
  font-weight:300;
  font-size: 20px;
  line-height: 32px;
  color: #525252;
  width: 90%;
  position: relative;
}
.team-image{ width: 100%; margin-top: -50px;}
.jobs-section img{
  width: 100%;
  height: 100%;
}

.job-form{position: relative;}
.job-form .content-wrap{position: relative; z-index: 2;}
.job-form h2{
  font-size: 23px;
  margin-bottom: 16px;
}
.job-form p{
  font-size: 18px;
  line-height: 26px;
  width: 70%;
}
.job-form .contact-form{
  background: var(--white-color);
  border: 1px solid #D9D9D9;
}
.job-form label{
  color: var(--gray-color);
}
.job-form input, .job-form textarea{
  border: 1px solid #D9D9D9 !important;
  color: var(--primary-color) !important;
}
.job-form input::placeholder, .job-form textarea::placeholder{
  color: var(--gray-color);
  opacity: 0.5;
}
.upload-container {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
  margin-bottom: 1.5rem;
}

.upload-btn {
  display: flex !important;
  gap: 5px;
  padding: 10px 20px;
  background-color: var(--white-color);
  color: var(--gray-color);
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  align-items: center;
}
.upload-btn img{
  width: 22px;
  height: 22px;
}

.file-input {
  display: none;
}

.file-name {
  font-size: 14px;
  color: var(--text-color);
}

/* ///////////////////////////////////////////////////////////////// */
/* //////////////////////// Footer //////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */

footer {
  padding-top: 50px;
}

.main-footer{
  position: relative;
  background: var(--primary-color);
  
}

.main-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 150px;
  height: 485px;
  background-image: url(../assets/bg/footer-cell.png); 
  background-repeat: no-repeat;
  z-index: 1;
}

.contact-container {
  width: 90%; 
  margin: auto; 
  text-align: center;
  color: var(--white-color);
  /* position: relative; */
}

.contact-container::after{
    content: "";
    position: absolute;
    right: 70px;
    top: 0;
    background-image: url(../assets/bg/footer-bee.png);
    background-repeat: no-repeat;
    width: 300px;
    height: 320px;
}
.contact-container h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 20px;
    color: var(--light-white-color);
}

.contact-subtext {
  color: var(--light-white-color);
  width: 50%;
  margin: 0 auto 30px;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
}

.contact-subhead{
    text-align: start;
    padding-top: 40px;
}
.contact-subhead h3 {
  font-size: 25px;
  font-weight: 500;
  color: var(--light-white-color);
  line-height: 34px;
}
.contact-subhead p {
  font-weight: 400; 
  font-size: 16px;
  line-height: 34px; 
  color: #D9D9D9;
}


.contact-form {
  background: var(--light-primary-color);
  border-radius: 10px;
  padding: 20px 25px;
  position: relative;
  z-index: 1;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.form-row div {
    flex: 1;
}

label{
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: var(--light-white-color);
    display: block !important;
    text-align: start;
    margin-bottom: 5px;
}
label span { color: darkred; }

.form-row input, textarea{
    padding: 10px 20px;
    border: 0.5px solid #747474;
    border-radius: 10px;
    background: transparent;
    color: white;
    width: 100%;
    font-weight: 300;
    font-size: 16px;
    outline: none;
}
input::placeholder, textarea::placeholder {
    color: var(--light-white-color);
    font-weight: 300;
    font-size: 14px;
    opacity: 0.7;
}
.contact-form-button{ text-align: start; margin-bottom: 25px;}
.contact-form-button button{width: 300px;}


.contact-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 25px 0;
  margin-top: 80px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 34px;
}
.footer-item img {
  width: 24px;
}

.dropdown {display: none;}

.desktop-only{ display: block;}
.mobile-only{ display: none;}
/* ///////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////// MEDIA QUERIES FOR SMALL,MEdUIM SCREENS /////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////////////////////////// */

@media (max-width: 768px){
  main{overflow: hidden;}
  .desktop-only{ display: none;}
  .mobile-only{ display: block;}
  .content-wrap{ width: 90%;}
  .breadcrumb{ gap: 0 6px}
  .breadcrumb a{
    font-size: 13px;
    line-height: 34px;
  }
  .secondary-btn, .primary-btn{ font-size: 16px;}

  /* /////////////////////////////////////////////////////////////////////////////// */
  /* /////////////////////////////////////////////////////////////////////////////// */
  /* NavBar */

  header{top: 0;}
  .polygon {
    width: 100%;
    height: 80px; 
    clip-path: none; 
    border-radius: 0; 
    padding: 0 20px;
    background: var(--white-color); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    overflow: unset;
    box-shadow: 0px 4px 4px 0px #01232B1C;

  }
  .polygon::before{display: none;}
  .main-nav{width: 100%;}

  .nav-links {
    position: absolute;
    top: 80px; /* below navbar */
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white-color);
    flex-direction: column;
    align-items: start;
    gap: 0;
    padding: 20px;
    display: none; 
    z-index: 2000;
    /* box-shadow: 0px 4px 5px rgba(0,0,0,0.1); */
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }
  .has-dropdown {
    position: relative;
    width: 100%;
  }

  .has-dropdown a {
    display: inline;
    width: calc(100% - 30px); /* leave space for arrow */
  }

  .arrow {
    display: inline;
    width: 10px;
    text-align: center;
    cursor: pointer;
  }

  .arrow::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1px solid #525252;  
    border-bottom: 1px solid #525252;
    transform: rotate(45deg);
    margin-bottom: 2px;
    margin-inline-start: 8px;
  }


  .dropdown {
    display: none;
    flex-direction: column;
    padding: 8px 20px;
    gap: 0;
    box-shadow: 0px 2px 5px 0px #00000040;
    list-style: none;

  }

    
  .dropdown a{ font-size: 14px;}

  .has-dropdown.open > .dropdown {
    display: flex;
  }

  /* ////////////////////////////////////////////////////////////////////////////// */
  /* ////////////////////////////////////////////////////////////////////////////// */
  /* Home */

  .hero::before, .hero::after, .hero-buttons a:last-child::after,
  .client-section-wrapp::after,.client-section-wrapp::before,
  .our-products-section::after, .hex-card-wrap:last-child::after ,
  .hex-card-wrap:first-child:after, .case-studies .content-wrap::after,
  .left-section::before, .our-service::before,.hero-image::after,.animate-hex::before{ display: none;}

  .hero-container{ max-width: unset;align-items: start;}
  .hero-text{ padding-inline-start: 20px;}
  .hero-image img{ width: 100%; height: 100%;}
  .hero h2 {
    font-size: 27px;
    line-height: 36px;
    max-width: unset;
  }
  .hero p {
    font-size: 14px;
    line-height: 22px;
    width: 100%;
    max-width: unset;
  }
  .hero{padding: 120px 0 20px;}
  .hero-buttons{min-width: 330px; top: 25px;}
  .hero-buttons a{ font-size: 14px; padding: 10px 20px;}

  /* services section */
  .our-service h2{margin-bottom: 50px;}
  .card-wrap, .card-wrap-center{flex-direction: column; width: 100%;}
  .hexaon-card, .hexaon-card-second{width: 100%;}
  .card-wrap-center{gap: unset !important;}
  .hexaon-card-second, .card-wrap-center .hexaon-card:last-child{display: flex; justify-content: end;}
  .hexaon {width: 230px;}
  .service-hex-content h3{font-size: 16px;}
  .service-hex-content p{font-size: 14px;line-height: 20px;max-width: 175px;}
  .service-hex-content img{width: 35px; height: 35px;}
  .service-hex-content>img{width: 24px; height: 24px;margin-bottom: 10px;}
  .services-grid{max-width: 100%;}

  .card-wrap>.hexaon-card .hex-bee{
    left: 173px;
    top: 15px;
  }
  .card-wrap>.hexaon-card .hex-line{
    left: 120px;
    top: 155px;
    transform: rotateZ(-110deg);
    width: 260px;
  }

  .card-wrap .hexaon-card-second .hex-bee {
    left: 235px;
    top: -29px;
    transform: rotateZ(-10deg);
  }
  .card-wrap .hexaon-card-second .hex-line {
    top: 180px;
    left: 35px;
    width: 200px;
    transform: rotateZ(145deg);
  }
  .card-wrap-center .hexaon-card:not(:last-child) .hex-bee {
    left: 60px;
    top: -27px;
    transform: rotateZ(95deg);
  }
  .card-wrap-center .hexaon-card:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 80px;
    top: 25px;
    width: 200px;
    height: 267px;
    background-image: url(../assets/bg/our-services/angle-line.png);
    transform: rotateZ(285deg);
    z-index: -1;
  }

  .card-wrap-center .hexaon-card:last-child .hex-bee {
    left: 240px;
    top: -10%;
    transform: rotateZ(-15deg);
  }

  /* client section */
  .client-section-wrapp{height: 820px;}
  .client-section h2,.our-products-section h2, .our-service h2, .case-studies h2,
  .left-section h2{ font-size: 18px; margin-bottom: 25px;}

  .client-section h2 img, .our-products-section h2 img, .our-service h2 img, .case-studies h2 img,
  .left-section h2 img{ width: 18px;}

  .client-section p{
    line-height: 24px;
    font-size: 16px;
    width: 90%;
  }
  .clients-image{width:85%;}
  .clients-image img {
    width: 82px;
    height: 55px;
  }

  /* product section */
  .our-products-section{ overflow: hidden;margin-bottom: 20px;}
  .our-products-section p {
    font-size: 14px;
    line-height: 24px;
  }
  .our-products-section p strong { font-size: 16px; }
  .our-products-section .d-flex{ flex-direction: column;}
  .product-img, .product-feature{width: 100%; height: 100%;}
  .product-img img{object-fit: contain;}
  .product-feature .features-container{max-width: 90%;}
  .product-feature h4 {font-size: 14px; line-height: 28px; margin: 0 auto 10px}
  .button-wrap{ margin-top: 60px;}


  /* case study section */

  .cases{ flex-direction: column;width: 90%;gap: 30px;margin-top: 50px;}
  .cases::before{top:0;}
  .hex-card-wrap,.hex-card{width: 320px;}
  .hex-card-wrap{position: unset;}
  .hex-card{aspect-ratio: 1/1.4;}
  .hex-case-content img{ max-width: 116px;}
  .hex-case-content h3{font-size: 14px; line-height: 21px; width: 95%;}
  .hex-case-content p{font-size: 12px; line-height: 18px; width: 75%;}

  .bee.bee-right{top: -8px; right: 88px;}
  .bee.bee-left{
    transform: rotateZ(245deg);
    top: 52%;
    left: 57%;
  }

  
  /* about section  */
  .sticky-section>.d-flex{ flex-direction: column;background: var(--light-primary-color);padding-bottom: 40px;}
  .left-section{padding: 20px;background: none;position: unset;}
  .left-section p{width: 80%;font-size: 14px;line-height: 20px;}
  .left-section h2{margin-top: 4%;}
  .right-section{padding: 10px;background: var(--primary-color);width: 90%;margin: auto; border-radius: 10px;}
  .scroll-block {width: 100%;}
  .vision, .mission {margin-bottom: 0;}
  .right-section p {
    font-size: 14px;
    line-height: 22px;
    width: 90%;
  }
  .right-section h3 img{width: 30px; height: 30px;}
  .right-section h3 {font-size: 18px;margin-bottom: 15px;}
  .left-indust-hex, .right-indust-hex{z-index: 2;}
  .left-indust-hex::after, .right-indust-hex::after{z-index: -1;}

  .edge h3{font-size: 30px;margin-bottom: 30px;}
  .edge,.industries{width: 90%;margin: 0 auto 50px;}
  .edge img{width: 100px;}
  .edge p {font-size: 16px;line-height:26px; width: 80%;}

  .industries h3{font-size: 30px;line-height: 40px;width: 210px; margin-bottom: 40px;}
  .indust-hex span{font-size: 14px;}
  .indust-hex img{width: 30px; height: 30px;}
  .industries .indust-hex{width: 130px;height: 130px;}
  .left-indust-hex::after{right: 10px;top: 95px;}
  .right-indust-hex::after{left: 40px;top: 75px;}
   .industries>div>div div:last-child{position: relative;z-index: 2;}
  /* ////////////////////////////////////////////////////////////////////////////// */
  /* ////////////////////////////////////////////////////////////////////////////// */
  /* SERVICES */
  .header-bg{padding: 80px 0 0;}
  .bee-wrap{width: 100%;}
  .right-bee, .left-bee{width:  110px;background-image: none;}
  .right-bee img, .left-bee img{top: -5px;}
  .left-bee img {
    right: -30px;
    top: 25px;
  }

  .design-service .right-bee img{ left: 0;}
  .top-angeld-bg .left-bee img{right: 0; top: 30px;}

  .left-cell-bg { background-image: none;}
  .hex-wrap{ flex-direction: column;width: 95%;margin: auto;}
  .hex-content img{ width: 30px;}
  .hexagon .hex-content h4{ font-size: 18px; margin-bottom: 10px;}
  .hexagon li, .hexagon .hex-content p{ font-size: 14px; line-height: 26px;}
  .service-content span{font-size: 14px;}
  .service-content h3{
    font-size: 20px; 
    line-height: 30px;
    margin-bottom: 10px;
  }
  .service-content p{
    font-size: 14px;
    line-height: 24px;
    width: 85%;
  }
  .serv-container{ padding-top: 60px;}
  .mobile-service::after,.mobile-service::before,
  .design-service::after,.design-service::before{ display: none;}

  .mobile-service, .design-service,.top-angeld-bg {width: 90%; margin: auto;}
  .hexagon-bg{
    clip-path: polygon(50% 0%, 100% 10%, 100% 90%, 50% 100%, 0% 90%, 0% 10%);
    width: 100%;

  }

  .hex-bg-wrap{height: 1265px;}
  .mobile-service .bee-wrap{top: 8%;}
  .mobile-service .hexagon{max-width: 340px;}
  .design-service .hexagon-bg{ margin: -60px auto 0;}


  .cta-section::after{display: none;}
  .cta-section .hex-icon{width: 24px; height: 24px;}
  .cta-section h2{
    font-size: 18px; 
    line-height: 24px;
    margin: 0 auto 25px;
    width: 90%;
  }
  .cta-section p{font-size: 12px; line-height: 20px;}
  .cta-buttons{
    flex-direction: column;
    gap: 10px !important;
    width: 80%;
    margin: auto;
  }

  /* ////////////////////////////////////////////////////////////////////////////// */
  /* ////////////////////////////////////////////////////////////////////////////// */
  /* Products */
  .product .content-wrap::before{display: none;}
  .product h2{
    font-size: 36px;
    line-height: 45px;
  }
  .product p{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
    width: 85%;
  }
  .prod-image{height: unset;}
  .prod-image img{
    object-fit: contain;
  }
  .product .breif{
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 23px;
    font-weight: 300;
    width: 100%;
  }
  .benefit-section.mobile-service{width: 100%;}
  .benefit{
    padding: 75px 0 50px;
    margin-bottom: 35px;
  }
  .benefit::before{
    clip-path: polygon(50% 0%, 100% 10%, 100% 90%, 50% 100%, 0% 90%, 0% 10%);
  }
  .benefit-section .m-auto .d-flex{ 
    flex-direction: column; 
    gap: 10px !important;
    margin-bottom: 30px;
  }
  .benefit h2, .feature-section h2, 
  .target-section h2, .technology-section h2{ font-size: 18px; margin-bottom: 0;}
  .mark-hex-icon{
    width: 18px;
    height: 18px;
  }
  .benfit-img{ width: 95%;}
  .benefit-content div{align-items: center;}
  .benefit-content img{
    width: 22px;
    height: 22px;
  }
  .benefit-content p{font-size: 14px;}
  .feature-section h2{margin-bottom: 50px !important;}
  .features-container{ gap: 40px 20px;}
  .feature-card {
    flex: 0 0 calc(52% - 20px);
  }
  .feature-card img{
    width: 40px;
    height: 40px;
  }
  .feature-card p {
    font-size: 14px;
    line-height: 22px;
    max-width: 100%;
  }
  .feature-section.design-service{margin: 0 auto 150px;}
  .target-section .content-wrap,
  .feature-section.design-service,
  .target-section .top-angeld-bg,
  .case-challenge-section .top-angeld-bg,
  .case-challenge-section .content-wrap,
  .supp-case-challenge .top-angeld-bg,
  .supp-case-challenge .content-wrap{ width: 100%; }

  .target-section .top-angeld-bg{
    padding: 0 0 30px;
  }
  .target-section h2{ 
    padding-top: 0;
    margin-bottom: 20px;
  }
  .target-section .top-angeld-bg .container{display: flex;flex-direction: column;}
  .target-section .top-angeld-bg .container .d-flex{
    order: 3;
    align-items: start !important;
    flex-direction: column;
    margin-bottom: 0 !important;
    margin: 30px auto 0;
    width: 90%;
  }
  .target-section p{font-size: 15px;}
  .technology-section .header-bg{
    padding: 60px 0 0;
    height: 940px;
  }
  .technology-section h2{margin-bottom: 20px;}
  .technology-section .carda{width: 95%;}
  .technology-section .carda:nth-child(2) .d-flex,
  .tech-images{ justify-content: center;}

  .app-images{ height: unset; margin-top: 0;}

  /* ////////////////////////////////////////////////////////////////////////////// */
  /* ////////////////////////////////////////////////////////////////////////////// */
  /* Case Studies */
  .case-info h2{
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 10px;
  }
  .case-info p{
    font-size: 14px;
    line-height: 24px;
  }
  .case-info .case-image{
    height: 300px;
    text-align: center;
  }
  .vechiel.mobile-service{width: 100%;}
  .about-case h2, .case-challenge h3, .supp-case-challenge h3{ font-size: 16px; }
  .about-case p{
    font-size: 16px;
    width: 100%;
  }
  .case-challenge, .supp-case-challenge{margin-bottom: 50px;}
  .case-challenge>img, .supp-case-challenge>img{
    width: 130px;
    height: 90px;
  }
  .case-challenge h3 img, .supp-case-challenge h3 img{ width: 25px;}
  .case-challenge p, .supp-case-challenge p{
    font-size: 14px;
    line-height: 22px;
    width: 80%;
  }
  .case-challenge::before{
    background-image: url(../assets/bg/small-curve.png);
    left: 0;
    top: 75px;
    width: 100%;
  }

  .supp-case-challenge::before{
    background-image: url(../assets/bg/sup-small-curv.png);
    left: 0;
    top: 110px;
    height: 520px;
  }
  .supp-case-challenge ul{ margin-top: 0;}
  .supp-case-challenge li{
    width: 90%;
  }
  .supp.case-solution { padding-top: 30px; }
  .result-card-container{
    flex-wrap: wrap;
  }
  .res-card{
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 0 0 calc(50% - 20px);
    padding-inline: 10px;
  }
  .res-card p{
    font-size: 12px;
    line-height: 20px;
  }
  .case-result-section{ margin:30px 0 ;}
  .case-lamp{ height: 110px;}

  .case-issues { margin-bottom: 40px;}
  .case-issues::after {
    background-image: url(../assets/bg/small-curve-left.png);
    left: 0;
    top: 20px;
    width: 100%;
    height: 295px;
  }
  .case-issues ul{width: 90%; margin: auto;}

  .case-issues li{
    font-size: 14px;
    line-height: 14px;
  }
  .case-issues li::before{ font-size: 12px;}


  
  .case-solution{padding-top: 50px;}
  .case-solution h3 img {
    width: 22px;
    height: 30px;
  }
  .case-solution p{
    font-size: 16px;
    line-height: 26px;
  }
  .case-card-container{
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .case-feature{ padding: 50px 0;}
  .case-feature-card { flex: 0 0 calc(50% - 10px); }
  .case-feature h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 41px;
    margin-bottom: 0;
  }

  .case-tech .carda { flex: 0 0 calc(45% - 20px); }
  .case-tech .carda p {
    font-size: 14px;
    padding-top: 0px;
  }
  .case-tech .carda span{ font-size: 14px;}
  .case-tech .carda img{padding-bottom: 10px;}
  .case-tech h2 {
    font-weight: 500;
    font-size: 18px;
  }
  .case-issues h3,.case-solution h3{ font-size: 16px; }
  .case-issues h3 img {
    width: 22px;
    height: 22px;
  }
  /* ////////////////////////////////////////////////////////////////////////////// */
  /* ////////////////////////////////////////////////////////////////////////////// */
  /* Jobs */
  .jobs-section{padding-top: 120px}
  .jobs-section::before{display: none;}
  .job-form::after{ 
    top: -20%;
    background-image: url(../assets/bg/right-grey-cell.png);
    width: 130px;

  }
  .jobs-section .w-50{ width: 100% !important;}
  .jobs-section .d-flex{ flex-direction: column; margin-bottom: 30px;}
  .jobs-section h2 { font-size: 18px; }
  .jobs-section p{
    font-size: 16px;
    line-height: 22px;
    width: 95%;
  }
  .job-form h2{ font-size: 16px;}
  .job-form p {
    font-size: 12px;
    line-height: 18px;
    width: 95%;
  }

  .team-image{ width: 75%; margin:10px auto 30px;}
  .jobs-section .d-flex .w-50:nth-child(1){order: 2;}
  
  /* ////////////////////////////////////////////////////////////////////////////// */
  /* ////////////////////////////////////////////////////////////////////////////// */
  /* FOOTER */

  footer{ padding-top: 40px;}
  footer::before{ display: none; }
  .contact-container h2, 
  .contact-subhead H3{ 
    font-size: 16px;
    line-height: 26px;
  }
  .contact-subhead P{
    font-size: 12px;
    line-height: 18px;
  }
  .contact-subhead{ padding-top: 0;}
  .hex-icon{ 
    width: 20px; 
    height: 20px;
  }
  .contact-subtext{
    font-size: 12px;
    line-height: 18px;
    width: 95%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
  }
  .form-row{ 
    flex-direction: column; 
  }
  .contact-container::after{
    background-image: url(../assets/bg/mobile-footer-bee.png);
    height: 165px;
    width: 110px;
    top: 5px;
    right: 10%;
    z-index: 0;
  }
  .contact-footer{
    flex-direction: column;
    gap: 15px;
  }

}


@media (min-width: 768px) and (max-width: 1024px){
  main{overflow: hidden;}
  .content-wrap{width: 90%;}
  .hero-text{padding-inline-start: 40px;}
  .cases{width: 100%;gap: 40px;}
  .hex-card {width: 400px;}
  .hex-case-content img{max-width: 100px;}
  

  .bee-right{top: 25px;}
  .case-studies::before{top: -127px;}
  .case-studies::after {bottom: -127px;}

  .bee-wrap{width: 100%;}
  .case-card-container{flex-wrap: wrap;}
  .result-card-container{flex-wrap: wrap; gap:30px}
  .technology-section .cards-container{flex-wrap: nowrap  !important;}
  .prod-image img{object-fit: cover;}
  .right-bee, .left-bee{width: 410px;}
  .left-bee img{top: 20px;}
  .hexagon{aspect-ratio: 1/1.3;}
  .hex-content img { width: 30px;}
  .hexagon .hex-content h4{font-size: 20px; line-height: 24px; margin-bottom: 12px;}
  .hexagon li{font-size: 16px; line-height: 24px;}

  /* about section  */
  .sticky-section>.d-flex{ flex-direction: column;background: var(--light-primary-color);padding-bottom: 40px;}
  .left-section{padding: 20px;background: none;position: unset;}
  .left-section p{width: 80%;font-size: 14px;line-height: 20px;}
  .left-section h2{margin-top: 4%;}
  .right-section{padding: 10px;background: var(--primary-color);width: 90%;margin: auto; border-radius: 10px;}
  .vision, .mission {margin-bottom: 0;}
  .right-section p {
    font-size: 14px;
    line-height: 22px;
    width: 90%;
  }
  .right-section h3 img{width: 30px; height: 30px;}
  .right-section h3 {font-size: 18px;margin-bottom: 15px;}
  .left-indust-hex, .right-indust-hex{z-index: 2;}
  .left-indust-hex::after, .right-indust-hex::after{z-index: -1;}

  .edge h3{font-size: 30px;margin-bottom: 30px;}
  .edge,.industries{width: 90%;margin: 0 auto 50px;}
  .edge img{width: 100px;}
  .edge p {font-size: 16px;line-height:26px; width: 80%;}

  .industries h3{font-size: 30px;line-height: 40px;width: 210px; margin-bottom: 40px;}
  .indust-hex span{font-size: 14px;}
  .indust-hex img{width: 30px; height: 30px;}
  .left-indust-hex::after{top: 95px;}
  .right-indust-hex::after{top: 75px;}
   .industries>div>div div:last-child{position: relative;z-index: 2;}

   .card-wrap, .card-wrap-center{width: 100%;}
   .product-img img{object-fit: cover;}
   .button-wrap {top: 30px;}
}

@media (min-width: 1024px) and (max-width: 1455px){
  main{overflow: hidden;}
  .content-wrap{width: 90%;}
  .cases{width: 100%;gap: 40px;}
  .hex-card {width: 470px;}
  .hex-case-content img{max-width: 190px;}
  .left-section {padding: 40px;}
  .right-section {padding: 200px 40px 0 40px;}

  .bee-wrap{width: 100%;}
  .case-card-container{flex-wrap: wrap;}
  .result-card-container{flex-wrap: wrap; gap:30px}
  .prod-image img{object-fit: cover;}
  .right-bee, .left-bee{width: 410px;}
  .left-bee img{top: 20px;}
  .hexagon{aspect-ratio: 1/1.3;}
  .hex-content img { width: 30px;}
  .hexagon .hex-content h4{font-size: 20px; line-height: 24px; margin-bottom: 12px;}
  .hexagon li{font-size: 16px; line-height: 24px;}
}