 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
    
     overflow-x: hidden;
 }


 /* Hero Section */
 .hero-section12 {
     background-color: var(--accent-color);
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding: 80px 0;
 }

 .hero-title12 {
     font-size: 4.5rem;
     font-weight: 800;
     color: #856619;
     line-height: 1.1;
     margin-bottom: 30px;
     letter-spacing: -2px;
 }

 .hero-subtitle12 {
     font-size: 1.5rem;
     color: var(--text-dark);
     margin-bottom: 40px;
     font-weight: 400;
     line-height: 1.6;
 }

 .learn-more-btn12 {
     background-color: #856619;
     color: white;
     padding: 18px 45px;
     font-size: 1.25rem;
     font-weight: 600;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(74, 111, 165, 0.3);
 }

 .learn-more-btn12:hover {
     background-color: #ad7d03;
     transform: translateY(-2px);
     box-shadow: 0 6px 25px rgba(74, 111, 165, 0.4);
 }

 /* Device Mockup */
 .device-mockup {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .desktop-mockup {
     width: 100%;
     max-width: 500px;
     background: linear-gradient(to bottom, #6b8cae 0%, #6b8cae 15%, #e8eef3 15%);
     border-radius: 12px;
     padding: 15px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
     position: relative;
     z-index: 1;
 }

 .desktop-screen {
     background: white;
     border-radius: 4px;
     overflow: hidden;
     margin-bottom: 20px;
 }

 .desktop-screen img {
     width: 100%;
     height: auto;
     display: block;
 }

 .desktop-stand {
     width: 60%;
     height: 8px;
     background: #6b8cae;
     margin: 0 auto;
     border-radius: 0 0 8px 8px;
 }

 .mobile-mockup {
     width: 180px;
     background: #2c3e50;
     border-radius: 25px;
     padding: 12px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
     position: absolute;
     right: -50px;
     bottom: -30px;
     z-index: 2;
     border: 3px solid #34495e;
 }

 .mobile-screen {
     background: white;
     border-radius: 15px;
     overflow: hidden;
 }

 .mobile-screen img {
     width: 100%;
     height: auto;
     display: block;
 }

 /* Our Work Section */
 .our-work-section {
     padding: 10px 0;
     background-color: var(--accent-color);
 }

 .section-title12 {
     font-size: 3.5rem;
     font-weight: 800;
     color: #856619;
     margin-bottom: 60px;
     letter-spacing: -1px;
 }

 .work-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 30px;
     margin-top: 50px;
 }

 .work-card {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     height: 350px;
     cursor: pointer;
     transition: all 0.4s ease;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .work-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
 }

 .work-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.4s ease;
 }

 .work-card:hover img {
     transform: scale(1.1);
 }

 .work-card-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     padding: 40px 30px;
     transition: all 0.4s ease;
 }

 .work-card:hover .work-card-overlay {
     background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
 }

 .work-card-title {
     color: white;
     font-size: 2rem;
     font-weight: 700;
     margin: 0;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 }

 /* Request Callback Section */
 .callback-section12 {
     background-color: var(--accent-color);
     padding: 100px 0;
 }

 .callback-container12 {
     background: white;
     border-radius: 20px;
     padding: 35px;
     box-shadow: 0 20px 60px #614705b9;
     text-align: center;
     transition: all 0.3s ease;
 }

 .callback-container12:hover {
     box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
     transform: translateY(-5px);
 }

 .callback-title12 {
     font-size: 3rem;
     font-weight: 800;
     color: var(--text-dark);
     margin-bottom: 20px;
     letter-spacing: -1px;
 }

 .callback-subtitle12 {
     font-size: 1.2rem;
     color: #666;
     margin-bottom: 40px;
 }

 .callback-btn12 {
     background-color: #856619;
     color: white;
     padding: 18px 50px;
     font-size: 1.2rem;
     font-weight: 600;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px #856619a8;
 }

 .callback-btn12:hover {
     background-color: #ce9300;
     transform: translateY(-2px);
     box-shadow: 0 6px 25px #856619c4;
 }

 /* Responsive Design */
 @media (max-width: 991px) {
     .hero-title12 {
         font-size: 3.5rem;
     }

     .hero-subtitle12 {
         font-size: 1.3rem;
     }

     .section-title12 {
         font-size: 3rem;
     }

     .mobile-mockup {
         width: 150px;
         right: -30px;
         bottom: -20px;
     }
 }

 @media (max-width: 767px) {
     .hero-section12 {
         padding: 60px 0;
     }

     .hero-title12 {
         font-size: 2.5rem;
         margin-bottom: 20px;
     }

     .hero-subtitle12 {
         font-size: 1.1rem;
         margin-bottom: 30px;
     }

     .learn-more-btn12 {
         padding: 15px 35px;
         font-size: 1.1rem;
     }

     .device-mockup {
         margin-top: 50px;
     }

     .desktop-mockup {
         max-width: 100%;
     }

     .mobile-mockup {
         width: 120px;
         right: 10px;
         bottom: -15px;
     }

     .section-title12 {
         font-size: 2.5rem;
         margin-bottom: 40px;
     }

     .work-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .work-card {
         height: 300px;
     }

     .work-card-title {
         font-size: 1.6rem;
     }

     .callback-container12 {
         padding: 40px 30px;
     }

     .callback-title12 {
         font-size: 2rem;
     }

     .callback-subtitle12 {
         font-size: 2rem;
     }

     .callback-btn12 {
         padding: 15px 40px;
         font-size: 2.1rem;
     }

     .our-work-section,
     .callback-section12 {
         padding: 30px 0;
     }
 }

 @media (max-width: 576px) {
     .hero-title12 {
         font-size: 5rem;
     }

     .hero-subtitle12 {
         font-size: 3rem;
     }

     .learn-more-btn12 {
         padding: 12px 30px;
         font-size: 2rem;
     }

     .mobile-mockup {
         width: 100px;
         right: 5px;
         bottom: -10px;
         padding: 8px;
     }

     .section-title12 {
         font-size: 4rem;
     }

     .work-card {
         height: 250px;
     }

     .work-card-title {
         font-size: 2.4rem;
     }

     .callback-title12 {
         font-size: 2.7rem;
     }
 }

 .head-imgs{
        width: 100%;
        max-width:800px;
        height: auto;
 }

 /* pop up form */

 /* Button */
.callback-btn12 {
    padding: 12px 22px;
    background: #856619a8;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s;
}

.callback-btn12:hover {
    transform: translateY(-3px);
}

/* Popup overlay */
.popup-overlay12 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup box */
.popup-box12 {
    background: #fff;
    width: 350px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: popIn12 0.3s ease;
}

/* Animation */
@keyframes popIn12 {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.popup-box12 h3 {
    text-align: center;
    margin-bottom: 18px;
    color: #333;
}

/* Inputs */
.popup-box12 input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

/* Submit Button */
.submit-btn12 {
    width: 100%;
    padding: 12px;
    background: #856619a8;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn12:hover {
    background: #6e5414;
}
