body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    padding-top: 80px;
}
html{
    scroll-behavior: smooth;
}
.brand{
    height: 42px;
    width: 147px;
    font-size: 30px;
    background-image: url(./img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.navbar {
    background-color: #ffffff;
    padding: 15px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}


.navbar a {
    color: black;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 400;
}
.navbar a:hover{
    color: #24262b;
}
.cont-id{
    width: 100%;
    margin-bottom: 10px;
    color: #bbbbbb;
    text-decoration: none;
}
.cont-id:hover{
    color: #ffffff;
}
.menu {
    display: flex;
    list-style: none;
    padding: 0;
}
.menu li {
    margin: 0 10px;
}
.main-container{
    height: 75vh;
    width: 100%;
    background-image: url(./img/main.jpg);
    background-size: cover;
    background-position-x: -20%;
    background-repeat: no-repeat;
    position: relative;
}
.main-container-decor {
    height: auto;
    width: auto;
    position: absolute;
    top: -20%;
    left: 15%;
    color: white;
    font-size: 3.5vw;
    border-radius: 15px;
    padding: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5vh;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: top 0.8s ease-in-out, opacity 0.8s ease-in-out;
}
.application-div-left{
    height: 62vh;
    width: 25%;
    display: flex;
    align-items: flex-start;
    justify-content: right;
    flex-wrap: wrap;
}
.application-div-right{
    height: 62vh;
    width: 25%;
    display: flex;
    align-items: flex-end;
    justify-content: left;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 50px;
        left: 0;
        text-align: center;
        padding: 10px 0;
    }
    .menu.active {
        display: flex;
    }
    .main-container{
        background-position-x: 0%;
    }
    .services-container{
        flex-wrap: wrap;
    }
    .main-container-decor{
        top: 0%;
        left: 0%;
        font-size: 1rem;
    }
    .decor-text{
        display: none;
    }
    .application-div-left{
        display: none;
    }
    .application-div-right{
        display: none;
    }
    .application-div-left{
        display: none;
    }
    .application-div-right{
        display: none;
    }
}


.main-container-decor.visible {
    top: 20%;
    opacity: 1;
}

.decor-text{
    color:white; 
    padding: 2vh; 
    font-size: 1vw; 
    letter-spacing: normal; 
    text-transform: none; 
    border: solid 1px white; 
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: .3s ease-in-out;
}

.decor-text:hover{
    color: #202020;
    border: solid 1px #202020;
}

.services-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.services-container {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}

.service-item {
    width: 30%;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.service-item h3 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: #333;
}

.service-item p {
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .service-item {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .service-item {
        width: 100%;
    }
}
.story-section {
    padding: 60px 20px;
    background-color: #f72d37;
    text-align: center;
    color: white;
    border-radius: 15px;
    margin: 40px 10px;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.2vw;
}

.story-text {
    font-size: 1.2rem;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.story-text-sec {
    font-size: 1.2rem;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
    transform: translateY(20px);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    margin-bottom: 10vh;
}

.story-text.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .story-section h2 {
        font-size: 2rem;
    }

    .story-text {
        font-size: 1rem;
    }
}

.map-section {
    width: 100%;
    height: 400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	justify-content: space-evenly;
    flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #202020;
    padding: 70px 0;
}
.footer-col{
   width: 20%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #f72d37;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}

.footer-text{
    padding: 4vh;
    font-size: 1rem;
    color: #bbbbbb;
    text-align: center;
    background-color: #202020;
    padding-bottom: 4vh;
}
body::-webkit-scrollbar {
    width: 4px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 10px;
    cursor: pointer;
}
.application-div{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    width: 100%;
}
.slider-container {
    height: 62vh;
    position: relative;
    width: 30vh;
    margin: auto;
    overflow: hidden;
    border-radius: 30px;
}
.slider {
    height: 62vh;
    width: 30vh;
    display: flex;
    transition: transform 0.5s ease-in-out;
    border-radius: 25px;
    position: relative;
}
.slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 25px;
    position: absolute;
}

.sl1{
    left: 0%;
    background-image: url(./img/app1.png);
}
.sl2{
    left: 100%;
    background-image: url(./img/app2.png);
}
.sl3{
    left: 200%;
    background-image: url(./img/app3.png);
}

.application-div-left-sec{
    height: 50%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.application-div-right-sec{
    height: 50%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.bubles{
    height: 8vh;
    width: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f72d37;
    color: white;
    position: relative;
}
.bubles i{
    font-size: 1.2rem;
}

.buble-text-left{
    width: 20vh;
    position: absolute;
    left: 150%;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    text-align: left;
}
.buble-text-right{
    width: 20vh;
    position: absolute;
    right: 150%;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    text-align: right;
}
.bubles, .slider-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}


  h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
  }

  .product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding-top: 10vh;
    padding-bottom: 10vh;
  }

  .product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 260px;
    transition: 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
  }

  .product-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .product-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
  }

  .product-description {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
  }

  .details-btn {
    background: #ff3b2f;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 12px;
    font-size: 14px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .details-btn:hover {
    background: #ae2821;
  }

  /* Responsive design */
  @media (max-width: 768px) {
    .product-card {
      width: 90%;
    }
  }

    .product-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  /* Left side (images) */
  .image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-image {
    width: 420px;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }

  .main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
  }

  .main-image img:hover {
    transform: scale(1.3);
  }

  .thumbnail-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }

  .thumbnail-list img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease, border 0.2s ease;
    border: 2px solid transparent;
  }

  .thumbnail-list img.active,
  .thumbnail-list img:hover {
    opacity: 1;
    border: 2px solid #ff3b2f;
  }

  /* Right side (description) */
  .product-info {
    padding-top: 10vh;
    padding-bottom: 10vh;
    max-width: 550px;
  }

  .product-info h2 {
    font-size: 26px;
    color: #222;
    margin-bottom: 15px;
  }

  .product-info p {
    color: #555;
    line-height: 1.6;
  }

  .product-info ul {
    list-style: none;
    padding-left: 0;
  }

  .product-info li {
    margin-bottom: 8px;
    color: #333;
  }

  .product-info strong {
    color: #000;
  }

  @media (max-width: 768px) {
    body {
      padding: 20px;
    }
    .product-page {
      flex-direction: column;
      align-items: center;
    }
    .main-image {
      width: 100%;
      height: auto;
    }
  }