.box{
    width: 100%;
    max-width: 100%;
    padding-top: 56.25%; 
    position: relative;
    /* margin: 15px auto; */
    height: 0;
}
.box-img img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover; 
}
.box-img{
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.box-img:nth-child(1){
    opacity: 1;
}
.left,.right{
    opacity: 0;
    position: absolute;
    transform: translateY(-50%);
    top: 50%; 
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    background-color: rgba(0,0,0,0.2);
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    display: flex;
}
.box:hover .left, .box:hover .right{
    opacity: 1;
}
.left{
    left: 10px;
}
.right{
    right: 10px;
}
.left::before, .right::before{
    content: '';
    width: 12px;
    height: 12px;

    border-top: 2px solid white;
    border-left: 2px solid white;
}
.left::before{
    transform: translateX(2px) rotate(-45deg);
}
.right::before{
    transform: translateX(-2px) rotate(135deg);
}
.left:hover, .right:hover{
    background-color: rgba(0,0,0,0.7);
    transform: translateY(-50%) scale(1.1);
    opacity: 1; 
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
    
}
.dot{
    position: absolute;
    bottom: 15px;
    right: 70px;
}
.dot ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.dot ul li{
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #737171;
    float: left;
    margin-right: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot ul li.active{
    background-color: #ffffff;
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

/* body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #f9f9f9;
    color: #333;
} */
.about-container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.about-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 300px; 
    box-sizing: border-box;
}
.about-title {
    font-size: 42px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: left;
    color: #1a73e8;
}
.about-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 30px;
}
.about-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #1a73e8;
    text-align: left;
    line-height: 1.8;
}

.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh; 
}


.mac-page-container {
    width: 80%; 
    max-width: 1000px;
    text-align: center;
    padding: 20px;
}
.mac-page-header{
    margin-bottom: 80px;
}
.mac-page-header h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.mac-page-header p {
    text-align: left;
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
}


.mac-page-form {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mac-page-form input {
    width: 60%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    transition: all 0.3s ease;
}

.mac-page-form input:focus {
    border: 1px solid #000;
    border-radius: 6px;
}
.mac-page-form button {
    padding: 10px 20px;
    font-size: 16px;
    color: #0c0c0c;

    background-color: #feffff;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    cursor: pointer;
}

.mac-page-form button:hover {
    background-color: #d8d8d8;
}

.mac-page-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.mac-page-subtitle {
  flex: 0 0 100%; 
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  color: #000000;
}

.mac-page-image-item {
  flex: 1 1 48%;  
  text-align: center;
}

.mac-page-image-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

.mac-page-image-item p {
  font-size: 14px;
  color: #000000;
  margin: 4px 0;
}

/* Prodct */
.Product_images{
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    /* gap: 20px; */
    /* margin-top: 20px; */
}

.Product_images img {
    width: 100%;   
    height: auto;  
    display: block; 
}

/* Modal Styles */

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 50%; 
    max-width: 400px; 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}


.close {
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}


.modal-content p {
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
}


.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

/* blog */

.s3pro-blog-card {
    width: 100%;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 6px;
    /* margin-top: 10px; */
    background: #fff;
}


.s3pro-blog-header {
    background: #f7f7f7;
    border-bottom: 1px solid #ddd;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    border-radius: 6px 6px 0 0;
}


.s3pro-blog-body {
    padding: 12px;
}


.s3pro-blog-body img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}
.s3pro-blog-body h1{
    color: #006ff9;
}
.s3pro-blog-body h2{
    font-size: 18px;
}

.s3pro-blog-header span,
.s3pro-blog-header a {
    color: #555;
    font-weight: 500;
    text-decoration: none;
}

.s3pro-blog-header i {
    margin-right: 6px;
    color: #006ff9;
}
