@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');






* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

header {

color: #fff;
padding: 1rem 2rem;
position: absolute;
top: 0;
left: 0;
z-index: 99;
width: 100%;
}

.header {
display: flex;
justify-content: space-between;
align-items: center;
background: #00000094;
padding: 10px 20px;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
border-radius: 16px;
}
.logo-section img {
  height: 50px;
  width: 200px;
}

nav {
  display: flex;
}

.lists {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.list a {
color: white;
text-decoration: none;
font-size: 18px;
font-weight: 500;
transition: color 0.3s ease;
}

.list a:hover {
  color: #ef5a26;
}


.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px 0;
  transition: all 0.3s ease;
}



.main-slider {
position: relative;
width: 100%;
/* height: 100vh; */
overflow: hidden;
}

.slick-slide {
position: relative;
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
}

.slick-slide .slide-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.slick-slide::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
}

.slider-content {
    position: absolute;
    top: 90%;
    left: 10%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: #fff;
}
.slider-content h1 {
font-family: "Playfair Display", serif;
text-transform: capitalize;
font-size: 3rem;
margin-bottom: 1rem;
}

.slider-content p {
font-size: 1.3rem;
margin-bottom: 2rem;
}

.slider-content a {
padding: 10px 20px;
background: #ff6500;
color: #fff;
text-decoration: none;
font-size: 1.2rem;
border-radius: 5px;
transition: 0.3s ease;
}

.slider-content a:hover {
background: #ff4500;
}

.slick-dots {
position: absolute;
bottom: 30px;
top: 80vh;
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
gap: 1rem;
z-index: 3;
}

.slick-dots li button {
width: 20px; 
height: 20px;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 50%;
border: none;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
transition: transform 0.3s ease, background-color 0.3s ease;
}

.slick-dots li button:hover {
background-color: rgba(255, 255, 255, 1); 
transform: scale(1.2); 
}
.slick-dots li.slick-active button {
background-color: #ff6500;
color: #ffffff;
transform: scale(1.4);
}

@media (max-width: 768px) {
  nav {
    display: none;
    width: 100%;
  }

  nav.active {
    display: block;
    margin-top: 1rem;
  }

  .lists {
    flex-direction: column;
    gap: 1rem;
  }

  .hamburger {
    display: flex;
  }
}
.marketing {
display: flex;
justify-content: center;
align-items: center;
height: 75vh;
gap: 20px;
background: #fff;
overflow: hidden;
color: white;
font-family: "Poppins", sans-serif;
font-size: 1.2em;
margin-bottom: 100px;
}
.card {
position: relative;
width: 300px;
height: 460px;
padding: 40px;
border-radius: 20px;
border: 3px solid hsl(0deg 0% 100%);
background-image: linear-gradient(0deg, hsl(0deg 1.38% 87.84%), hsl(0deg 0% 90.64%));
box-shadow: 0 -6px 12px hsla(0, 0%, 100%, 0.2), 0 6px 24px hsl(0deg 0% 85.58% / 60%), inset 0 -12px 32px hsl(0deg 0% 80.67% / 60%), inset 0 12px 32px hsla(0, 0%, 100%, 0.3), inset 0 -8px 12px -5px hsla(0, 0%, 100%, 0.3);
transition: transform 0.3s ease;
overflow: hidden;
z-index: 1;
}

.card::after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 0;
height: 100%;
background: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
z-index: -1;
transition: width 0.3s ease;
}

.card:hover::after {
width: 100%;
right: unset;
left: 0;
}


.card-content {
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  inset: 0;
  text-align: center;
}

.card-content svg {
  margin-bottom: 24px;
}

.card-content h2 {
  font-size: 2em;
  line-height: normal;
}


/*  */
.box-any:hover:after {
width: 100%;
right: unset;
left: 0;
}
.box-any:after {
position: absolute;
content: "";
top: 0;
right: 0;
width: 0;
height: 100%;
background: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
z-index: -1;
transition: width 0.3s ease;
}
.box-any {
overflow: hidden;
}
.text-color{
color: #000;  
}

/*  */

a {
color: #fff;
text-decoration: none;
}
.pg-footer {
font-family: 'Roboto', sans-serif;
}


.footer {
background-color: #004658;
color: #fff;
}
.footer-wave-svg {
background-color: transparent;
display: block;
height: 30px;
position: relative;
top: -1px;
width: 100%;
}
.footer-wave-path {
fill: #fffff2;
}

.footer-content {
margin-left: auto;
margin-right: auto;
max-width: 1230px;
padding: 40px 15px 350px;
position: relative;
}

.footer-content-column {
box-sizing: border-box;
float: left;
padding-left: 15px;
padding-right: 15px;
width: 100%;
color: #fff;
}

.footer-content-column ul li a {
color: #fff;
text-decoration: none;
}

.footer-logo-link {
display: inline-block;
}
.footer-logo img {
  width: 211px;
}
.footer-menu {
margin-top: 30px;
}

.footer-menu-name {
color: #fffff2;
font-size: 18px;
font-weight: 900;
letter-spacing: .1em;
line-height: 18px;
margin-bottom: 0;
margin-top: 0;
text-transform: uppercase;
}
.footer-menu-list {
list-style: none;
margin-bottom: 0;
margin-top: 10px;
padding-left: 0;
}
.footer-menu-list li {
margin-top: 5px;
}

.footer-call-to-action-description {
color: #fffff2;
margin-top: 10px;
margin-bottom: 20px;
}
.footer-call-to-action-button:hover {
background-color: #fffff2;
color: #00bef0;
}
.button:last-of-type {
margin-right: 0;
}
.footer-call-to-action-button {
background-color: #027b9a;
border-radius: 21px;
color: #fffff2;
display: inline-block;
font-size: 11px;
font-weight: 900;
letter-spacing: .1em;
line-height: 18px;
padding: 12px 30px;
margin: 0 10px 10px 0;
text-decoration: none;
text-transform: uppercase;
transition: background-color .2s;
cursor: pointer;
position: relative;
}
.footer-call-to-action {
margin-top: 30px;
}
.footer-call-to-action-title {
color: #fffff2;
font-size: 14px;
font-weight: 900;
letter-spacing: .1em;
line-height: 18px;
margin-bottom: 0;
margin-top: 0;
text-transform: uppercase;
}
.footer-call-to-action-link-wrapper {
margin-bottom: 0;
margin-top: 10px;
color: #fff;
text-decoration: none;
}
.footer-call-to-action-link-wrapper a {
color: #fff;
text-decoration: none;
}





.footer-social-links {
bottom: 0;
height: 54px;
position: absolute;
right: 0;
width: 236px;
}

.footer-social-amoeba-svg {
height: 54px;
left: 0;
display: block;
position: absolute;
top: 0;
width: 236px;
}

.footer-social-amoeba-path {
fill: #027b9a;
}

.footer-social-link.linkedin {
height: 26px;
left: 3px;
top: 11px;
width: 45px;
}

.footer-social-link {
display: block;
padding: 10px;
position: absolute;
}

.hidden-link-text {
position: absolute;
clip: rect(1px 1px 1px 1px);
clip: rect(1px,1px,1px,1px);
-webkit-clip-path: inset(0px 0px 99.9% 99.9%);
clip-path: inset(0px 0px 99.9% 99.9%);
overflow: hidden;
height: 1px;
width: 1px;
padding: 0;
border: 0;
top: 50%;
}

.footer-social-icon-svg {
display: block;
}

.footer-social-icon-path {
fill: #fffff2;
transition: fill .2s;
}

.footer-social-link.twitter {
height: 28px;
left: 62px;
top: 3px;
width: 45px;
}

.footer-social-link.youtube {
height: 24px;
left: 123px;
top: 12px;
width: 45px;
}

.footer-social-link.github {
height: 34px;
left: 172px;
top: 7px;
width: 45px;
}

.footer-copyright {
background-color: #027b9a;
color: #fff;
padding: 15px 30px;
text-align: center;
}

.footer-copyright-wrapper {
margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

.footer-copyright-text {
color: #fff;
font-size: 13px;
font-weight: 400;
line-height: 18px;
margin-bottom: 0;
margin-top: 0;
}

.footer-copyright-link {
color: #fff;
text-decoration: none;
}







/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
.footer-content {
margin-left: auto;
margin-right: auto;
max-width: 1230px;
padding: 40px 15px 1050px;
position: relative;
}
}
@media (min-width:480px) and (max-width:599px)  { /* smartphones, Android phones, landscape iPhone */
.footer-content {
margin-left: auto;
margin-right: auto;
max-width: 1230px;
padding: 40px 15px 1050px;
position: relative;
}
}
@media (min-width:600px) and (max-width: 800px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
.footer-content {
margin-left: auto;
margin-right: auto;
max-width: 1230px;
padding: 40px 15px 1050px;
position: relative;
}
}
@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */

}
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */

}
@media (min-width:1281px) { /* hi-res laptops and desktops */

}




@media (min-width: 760px) {
.footer-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
  padding: 40px 15px 350px;
  position: relative;
}

.footer-wave-svg {
  height: 50px;
}

.footer-content-column {
  width: 24.99%;
}
}
@media (min-width: 568px) {
/* .footer-content-column {
  width: 49.99%;
} */
}

/* hero section start */

.hero_box-features {
    background-image:
        url("../images/1.webp"),
        url("../images/2.webp"),
        url("../images/3.webp"),
        url("../images/4.svg"),
        linear-gradient(180deg, #004cd3, #a8d0f3 76%, #a8d0f3);
    background-position: 0 0, 50% 100%, 50% 0, 50%, 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 2.5rem;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    /* min-height: 54rem; */
    position: relative;
    overflow: hidden;
}


.hero_features-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr minmax(33rem, 39.08%);
    /* grid-template-columns: 1fr minmax(31rem, 39.08%); */
    grid-template-columns: repeat(2, 1fr);
    place-items: center stretch;
    height: auto;
    padding: 3rem;
    padding: 4rem 3rem;
}

.hero-title {
    letter-spacing: -.04em;
    font-size: 4.5rem;
    font-size: 54px;
    line-height: 1.2;
    font-weight: 600;
    font-weight: 600;
}

.hero-right {
    position: relative;
    height: 100%;
}

.hero-right-content {
    z-index: 2;
    /* border: 1px solid #e0e7f5; */
    border-radius: 2rem;
    width: 64.7%;
    /* position: absolute; */
    inset: 25% auto auto 0%;
    overflow: clip;
}

.hero-right-img {
    /* padding-top: 138.636%; */
    /* position: relative; */
}

.hero-right-content {
    z-index: 2;
    /* border: 1px solid #e0e7f5; */
    border-radius: 2rem;
    width: 100%;
    /* position: absolute; */
    inset: 25% auto auto 0%;
    overflow: clip;
}

.hero-content {
    background-image: url(../images/login-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
}

.hero-content::before {
    content: "";
    position: absolute;
    background-color: rgb(0 120 249);
    opacity: 0.5;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/*  */

.hero-content .row {
    z-index: 99;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 55px;
}

.hero-content p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 25px;
}


/*  */
.hero-right-img {
    /* padding-top: 138.636%; */
    /* position: relative; */
}

.hero-right-img img {
    object-fit: cover;
    object-fit: contain;
    width: 100%;
    height: 100%;
    inset: 0%;
}

.search-box {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    margin-bottom: 8px;
}

.search {
    padding: 12px 20px;
    border-radius: 26px;
    border: none;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    width: 60%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;

}

.btn-1 {

    color: #fff;
    background-image: linear-gradient(180deg, #004cd3, #327afa);
    padding: 12px 25px;
    border-radius: 26px;
    width: fit-content;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-2 {

    color: #fff;
    background-image: linear-gradient(180deg, #004cd3, #327afa);
    padding: 12px 25px;
    border-radius: 26px;
    font-size: 16px;
    border: none;
    display: flex;
    width: fit-content;
    margin: 10px auto;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #aaaaaa;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-box {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-radius: 8px;
    color: white;
    z-index: 1;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0px 0px 6px #c3c3c3;
}

.box-any:hover:after {
    width: 100%;
    right: unset;
    left: 0;
}

.box-any {
    overflow: hidden;
}

.box-any:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
    z-index: -1;
    transition: width 0.3s ease;
}

.box-any:hover .service-title {
    color: #fff;
}

.box-any:hover .service-description {
    color: #fff;
}

.blue-box {
    background: linear-gradient(135deg, #4169e1 0%, #3050c0 100%);
}

.gray-box {
    background: linear-gradient(135deg, #5a5a5a 0%, #444444 100%);
}

.icon-container {
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon {
    width: 32px;
    height: 32px;
    color: #4169e1;
}

.img-align {
    display: flex;
    align-items: center;
}

.service-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    color: #000;
}



.marketing {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: none;
    /* background-color: hsl(0, 0%, 10%); */
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 1.2em;
}

.card {
    position: relative;
    width: 300px;
    height: 460px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid hsl(0, 0%, 25%);
    background-image: linear-gradient(0deg, hsl(0, 0%, 15%), hsl(0, 0%, 25%));
    box-shadow: 0 -6px 12px hsl(0, 0%, 100%, 0.2), 0 6px 24px hsl(0, 0%, 0%, 0.6), inset 0 -12px 32px hsl(0, 0%, 0%, 0.6), inset 0 12px 32px hsl(0, 0%, 100%, 0.3), inset 0 -8px 12px -5px hsl(0, 0%, 100%, 0.3);
    transition: transform 0.3s ease;
}

.card-content {
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    position: absolute;
    inset: 0;
    text-align: center;
}

.card-content svg {
    margin-bottom: 24px;
}

.card-content h2 {
    font-size: 2.2em;
    line-height: 2;
}



.hero{
    position: relative;
}
/* .hero::after {
    content: "";
    width: 400px;
    height: 80px;
    background: #FFF;
    border-radius: 10px 10px 0 0;
    position: absolute;
    display: flex;
    bottom: -2px;
    clip-path: polygon(12% 0%, 88% 0%, 100% 100%, 0% 100%);
    left: auto;
    right: 100px;
    z-index: 99;
} */
.arrow{
    width: 400px;
    height: 70px;
    background: #FFF;
    border-radius: 10px 10px 0 0;
    position: absolute;
    display: flex;
    bottom: -2px;
    clip-path: polygon(12% 0%, 88% 0%, 100% 100%, 0% 100%);
    left: auto;
    right: 100px;
    gap: 30px;
    z-index: 99;
    align-items: center;
    justify-content: center;
}
.right-arrow{
    rotate: 0deg;
}
.left-arrow{
    rotate: 180deg;
}
.next-arrow ,.prev-arrow{
background: none;
border: none;
}


/*  */
.box-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.box-section .box-header {
    text-align: center;
    margin-bottom: 50px;
}
.subheading {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.blue-text {
    color: #2196f3;
}

.underline {
    width: 80px;
    height: 3px;
    background-color: #2196f3;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0px 0px 6px #b7b7b7;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.icon {
    color: #2196f3;
    font-size: 28px;
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 3px #d1cccc;
}

h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #242424;
}

p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

.view-products {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.view-products:hover {
    background-color: #2196f3;
    border-color: #2196f3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}


/*  */
.main-testi{
    max-width: 1220px;
    margin: 0 auto;

}


.testimonial-container {
  width: 100%;
  max-width: 56rem;
  padding: 2rem;
  margin: auto;
}
.testimonial-grid {
  display: grid;
  gap: 5rem;
}
.image-container {
  position: relative;
  width: 100%;
  height: 24rem;
  perspective: 1000px;
}
.testimonial-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.25rem;
}
.designation {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2rem;
}
.quote {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.75;
}
.arrow-buttons {
  display: flex;
  gap: 1rem;
  padding-top: 3rem;
}
.arrow-button {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.arrow-button:hover {
  background-color: #00a6fb;
}
.arrow-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #f1f1f7;
  transition: transform 0.3s;
}
.arrow-button:hover svg {
  fill: #ffffff;
}
@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .arrow-buttons {
    padding-top: 0;
  }
}


/* / */

.banner-img {
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
  width: 50%;
  color: #fff;
}

.banner-padd{
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
}

.contant {
  z-index: 999;
  position: relative;
  height: 100%;
  padding: 0 80px;
  backdrop-filter: blur(2px);
  display: flex;
  /* filter: grayscale(100%); */
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}

.learn-more {
  color: #2b3f85;
  border-radius: 26px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


/*  */


 /* Section styles */
 .why-choose-us {
  padding: 80px 0;
  background-color: #fff;
}

/* Header styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #222;
}

.section-divider {
  width: 80px;
  height: 4px;
  background-color: #4f46e5; /* Primary color */
  margin: 0 auto;
}

/* Grid layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .features-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Feature card styles */
.feature-card {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.icon-container {
  background-color: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  padding: 12px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #4f46e5;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.feature-description {
  color: #64748b;
}

/* Alternative list layout */
.features-list {
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-item .icon-container {
  padding: 16px;
}

.feature-item .icon-container svg {
  width: 32px;
  height: 32px;
}

.feature-content {
  margin-left: 16px;
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.feature-content p {
  color: #64748b;
}

.emoji {
  font-size: 1.5rem;
}

/* Section toggle */
.section-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.toggle-btn {
  background-color: #f1f5f9;
  border: none;
  padding: 8px 16px;
  margin: 0 8px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.toggle-btn.active {
  background-color: #4f46e5;
  color: white;
}

/* Hide/show sections */
#grid-layout, #list-layout {
  display: none;
}

#grid-layout.active, #list-layout.active {
  display: block;
}



.prodect{
   height: 250px;
   border-radius: 10px;
  
   /* padding: 20px; */
   
   /* background-image: url('assest/images/gate_barrier_hero_image_editable\ \(1\)\ \(2\).jpg'); */
   background-size: cover;
   background-position: center;
   overflow: hidden;

}
.top-section{
  background: black;
  

}
.top-section h1{
color: #fff;
font-size: 22px;
text-align: center;



}
.pro-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
}
/* .content-section{
  background: #00000060;

height: 0;
visibility: hidden;

}
.prodect:hover .content-section {
  transition:  up  0.3s ease-in-out  ;
  visibility: visible;
}
@keyframes up {
  0% {
    transform: translateY(0);
    height: 0;
  }
  100% {
    transform: translateY(-10px);
    height: 100%;

  }

  
} */
/* 
.content-section::before {
  height: 40px;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
  top: 50%;
  transform-origin: center center;
  width: 40px;
  z-index: 1;
  animation: 1.6s linear 0s infinite normal none running spin;
  background: url("/assets/images/spinner.svg") 50% center / cover no-repeat;
} */



.content-section {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  height: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
  padding: 0 10px; /* initially zero height, so no vertical padding */
}

.prodect:hover .content-section {
  height: 100%;
  opacity: 1;
  transform: translateY(0);
  padding: 10px;
}
.content-section::-webkit-scrollbar {
  display: none; 
}
.prodect::-webkit-scrollbar {
  display: none; 
}
.product-section{
  max-width: 1200px;
  margin: auto;
}
.content-section p{
color: #fff;
}

.industries-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.industries-left {
  flex: 1;
  min-width: 300px;
}

.industries-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #2b2b2b;
}

.industry-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #444;
}

.industry-item i {
  font-size: 22px;
  color: #4a90e2;
  margin-right: 12px;
  min-width: 25px;
}

.industries-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.industries-right img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .industries-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .industries-left, .industries-right {
    text-align: center;
  }

  .industry-item {
    justify-content: center;
  }
}

.vont{
  max-width: 1200px;
  margin: auto;
}


/* General Styles */
.content {
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* List Styles */
.bot-list {
  list-style: none;
  padding-left: 0;
}

.bot-list li {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 10px;
}

/* Button Styles */
.pdf-button-container {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.pdf-button {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #e74c3c;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pdf-button svg {
  margin-right: 10px;
}

.pdf-button:hover {
  background-color: #c0392b;
}
.content-section::-webkit-scrollbar {
  width: 6px;
}
.content-section::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}
.content-section {
  max-height: 200px;
  overflow-y: scroll; /* instead of auto */
}
.prodect {
  overflow: visible;
}
.section-wrapper {
  background-color: #0a0a1a;
  color: white;
}

.hero-wrapper {
  position: relative;
  min-height: 40vh;
  overflow: hidden;
}

.canvas-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 0;
}

.glitch-overlay {
  position: absolute;
  z-index: 10;
}

.content-container {
  position: relative;
  z-index: 20;
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 6rem 1.5rem 4rem;*/
padding: 2rem 0rem 0rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
    padding: 6rem 3rem 4rem;
  }
}

.title-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.subheading {
  font-size: 1.25rem;
  font-family: monospace;
  text-transform: uppercase;
  color: #67e8f9;
  letter-spacing: 0.1em;
}

.main-heading {
  font-size: 3rem;
  background: linear-gradient(to right, #67e8f9, #c084fc);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
}

.description {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 40rem;
  line-height: 1.75rem;
  text-align: justify;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.whatsapp-float img {
  width: 25px;
  height: 25px;
}
/*home page bottom section*/
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.custom-section {
  background-color: #0a0a1a;
  color: white;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

.wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 0;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.text-content {
  flex: 1 1 100%;
  max-width: 600px;
  padding: 20px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #67e8f9;
  opacity: 0.8;
}

.gradient-heading {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(to right, #67e8f9, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.description {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.6;
  max-width: 90%;
}

.button-row {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  position: relative;
}

.primary-btn {
  position: relative;
  background: linear-gradient(to right, #06b6d4, #8b5cf6);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.primary-btn:hover {
  background: linear-gradient(to right, #0891b2, #7c3aed);
}

.btn-ping {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(34, 211, 238, 0.4);
  border-radius: 999px;
  animation: ping 1.5s infinite;
  z-index: -1;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  75%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.secondary-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.email-float {
  position: fixed;
  bottom: 90px; /* Just above WhatsApp button if both are used */
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.email-float:hover {
  transform: scale(1.1);
}
.main-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.item {
  width: 100%;
  height: 80vh; /* You can adjust based on design */
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Optional: Responsive height for mobile */
@media (max-width: 768px) {
  .item {
    height: 40vh; /* Shorter height for mobile */
  }
}
/* Base Grid - Desktop */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px;
}

/* Individual Product Styling */
.prodect {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 20px;
  padding-top:0px;
  padding-left:0px ;
  padding-right:0px;
  border-radius: 10px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Title Section */
.top-section h1 {
  font-size: 20px;
  margin-bottom: 15px;
  padding: 10px;
}

/* Responsive Adjustments for Tablets (768px and below) */
@media screen and (max-width: 768px) {
  .pro-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 15px;
  }

  .top-section h1 {
    font-size: 18px;
  }

  .prodect {
    min-height: 250px;
    padding: 15px;
  }
}

/* Responsive for Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .pro-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }

  .top-section h1 {
    font-size: 16px;
  }

  .prodect {
    min-height: 220px;
    padding: 10px;
  }
}
