 .slider {
     width: 90%;
     margin: auto;
 }

 .slider .s img {
     margin: auto;
     display: block;
 }

 .slider .s {
     text-align: center;
 }

 /* ===== RESET & BASE STYLES ===== */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     color: #2c3e50;
     line-height: 1.6;
     overflow-x: hidden;
     background: #ffffff;
 }

 /* ===== SCROLL ANIMATIONS ===== */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-40px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes fadeInRight {
     from {
         opacity: 0;
         transform: translateX(40px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes scaleIn {
     from {
         opacity: 0;
         transform: scale(0.9);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }
 }

 @keyframes shimmer {
     0% {
         background-position: -1000px 0;
     }

     100% {
         background-position: 1000px 0;
     }
 }

 .animate-on-scroll {
     opacity: 0;
     animation: fadeInUp 0.8s ease forwards;
 }

 /* ===== HEADER STYLES ===== */
 header {
     position: sticky;
     top: 0;
     background: #ffffff;
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .header-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 20px 40px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-size: 28px;
     font-weight: 700;
     color: #1a1a1a;
     letter-spacing: -0.5px;
 }

 .logo span {
     color: #000;
 }

 nav ul {
     display: flex;
     list-style: none;
     gap: 40px;
 }

 nav ul li a {
     text-decoration: none;
     color: #2c3e50;
     font-weight: 500;
     font-size: 15px;
     transition: color 0.3s ease;
     position: relative;
 }

 nav ul li a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: #000;
     transition: width 0.3s ease;
 }

 nav ul li a:hover::after {
     width: 100%;
 }

 nav ul li a:hover {
     color: #000;
 }

 .btn-primary {
     background: #000;
     color: white;
     padding: 12px 32px;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
     font-size: 15px;
 }

 .btn-primary:hover {
     background: #2980b9;
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
 }

 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
     gap: 5px;
 }

 .hamburger span {
     width: 25px;
     height: 3px;
     background: #2c3e50;
     transition: all 0.3s ease;
     border-radius: 2px;
 }

 /* ===== HERO SECTION ===== */
 .hero {
     max-width: 1400px;
     align-items: center;
     margin: 60px auto;
     padding: 0 40px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     /* align-items: center; */
 }

 .hero-left h1 {
     font-size: 45px;
     font-weight: 800;
     color: #1a1a1a;
     line-height: 50px;
     /* margin-bottom: 40px; */
     letter-spacing: -1px;
 }

 .hero-left h1 span {
     color: #000;
 }

 .image-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     height: 500px;
 }

 .image-grid-left {
     height: 100%;
 }

 .image-grid-left img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 16px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
 }

 .image-grid-right {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .image-grid-right img {
     width: 100%;
     height: calc(50% - 10px);
     object-fit: cover;
     border-radius: 16px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
 }

 .image-grid img:hover {
     transform: scale(1.02);
 }

 .hero-right img {
     width: 100%;
     height: 100% !important;
     object-fit: cover;
     border-radius: 16px;
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
 }

 /* ===== SERVICES SECTION ===== */
 .services {
     background: #f8f9fa;
     padding: 100px 40px;
 }

 .services-container {
     max-width: 1400px;
     margin: 0 auto;
 }

 .section-title {
     text-align: center;
     font-size: 42px;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 20px;
 }

 .section-subtitle {
     text-align: center;
     font-size: 18px;
     color: #7f8c8d;
     margin-bottom: 60px;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
 }

 .service-card {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     /* box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08); */
     transition: all 0.3s ease;
 }

 /* .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        } */

 .service-card img {
     width: 15%;
     height: 60px;
     object-fit: cover;
 }

 /* .service-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        } */

 .service-content {
     padding: 30px;
 }

 .service-content h3 {
     font-size: 24px;
     font-weight: 700;
     color: #1a1a1a;
     /* margin-bottom: 15px; */
 }

 .service-content p {
     color: #7f8c8d;
     font-size: 15px;
     margin-bottom: 25px;
     line-height: 1.7;
 }

 .service-buttons {
     display: flex;
     gap: 15px;
     align-items: center;
     margin-bottom: 10px;
 }

 /* Default styles for desktop */
 .service-card>div:last-child {
     width: 100%;
     text-align: left;
 }

 .service-card .btn {
     display: block;
     width: 100%;
     padding: 10px 20px;
     box-sizing: border-box;
 }

 /* Mobile styles */
 @media (max-width: 768px) {
     .service-card>div:last-child {
         display: inline-block;
         width: auto;
         float: right;
         margin-top: -40px;
         /* Adjust this value to align properly with the View Details button */
     }

     .service-card .btn {
         display: inline-block;
         width: auto;
     }

     .service-card::after {
         content: "";
         display: table;
         clear: both;
     }
 }

 .btn-contact {
     background: #000;
     color: white;
     padding: 10px 24px;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     font-size: 14px;
 }

 .btn-contact:hover {
     background: #2980b9;
 }

 .btn-details {
     color: #000;
     text-decoration: none;
     font-weight: 600;
     font-size: 14px;
     transition: color 0.3s ease;
 }

 .btn-details:hover {
     color: #2980b9;
     text-decoration: underline;
 }

 /* ===== MODAL STYLES ===== */
 .modal {
     display: none;
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 0;
     background: white;
     z-index: 2000;
     border-radius: 24px 24px 0 0;
     overflow-y: auto;
     box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.3);
     transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     width: 44%;
     margin: auto;
     right: 0;
 }

 .modal.active {
     display: block;
     height: 85vh;
     animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 @keyframes slideUp {
     from {
         height: 0;
     }

     to {
         height: 85vh;
     }
 }

 .modal-overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 1999;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .modal-overlay.active {
     display: block;
     opacity: 1;
 }

 .modal-content {
     /* max-width: 1000px; */
     margin: 0 auto;
     padding: 40px;
 }

 .modal-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     /* margin-bottom: 30px; */
 }

 .modal-header h2 {
     font-size: 32px;
     font-weight: 700;
     color: #1a1a1a;
 }

 .close-modal {
     background: #f8f9fa;
     border: none;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     font-size: 24px;
     cursor: pointer;
     transition: all 0.3s ease;
     color: #2c3e50;
 }

 .close-modal:hover {
     background: #e9ecef;
     transform: rotate(90deg);
 }

 .modal-images {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-bottom: 30px;
 }

 .modal-images img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     border-radius: 12px;
 }

 .modal-features {
     margin-top: 30px;
 }

 .modal-features h3 {
     font-size: 24px;
     font-weight: 600;
     color: #1a1a1a;
     margin-bottom: 20px;
 }

 .modal-features ul {
     list-style: none;
     padding-left: 0;
 }

 .modal-features ul li {
     padding: 12px 0;
     border-bottom: 1px solid #f0f0f0;
     color: #2c3e50;
     font-size: 15px;
     position: relative;
     padding-left: 30px;
 }

 .modal-features ul li:before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #000;
     font-weight: bold;
     font-size: 18px;
 }

 .info-cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-bottom: 30px;
 }

 .info-card {
     background: #f8f9fa;
     padding: 25px;
     border-radius: 12px;
     text-align: center;
 }

 .info-card h4 {
     font-size: 18px;
     font-weight: 600;
     color: #1a1a1a;
     margin-bottom: 10px;
 }

 .info-card p {
     color: #7f8c8d;
     font-size: 14px;
 }

 /* ===== CTA SECTION ===== */
 .cta {
     background: linear-gradient(135deg, #000 0%, #2c3e50 100%);
     padding: 80px 40px;
     text-align: center;
     color: white;
 }

 .cta h2 {
     font-size: 42px;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .cta p {
     font-size: 18px;
     margin-bottom: 30px;
     opacity: 0.9;
 }

 .btn-cta {
     background: white;
     color: #000;
     padding: 16px 40px;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 700;
     font-size: 16px;
     display: inline-block;
     transition: all 0.3s ease;
 }

 .btn-cta:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
 }

 /* ===== FAQ SECTION ===== */
 .faq {
     max-width: 1000px;
     margin: 100px auto;
     padding: 0 40px;
 }

 .faq-item {
     background: white;
     margin-bottom: 20px;
     border-radius: 12px;
     box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
     overflow: hidden;
 }

 .faq-question {
     padding: 25px 30px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
     font-size: 17px;
     color: #1a1a1a;
     transition: all 0.3s ease;
 }

 .faq-question:hover {
     background: #f8f9fa;
 }

 .faq-icon {
     font-size: 24px;
     transition: transform 0.3s ease;
     color: #000;
 }

 .faq-item.active .faq-icon {
     transform: rotate(45deg);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
     padding: 0 30px;
     color: #7f8c8d;
     font-size: 15px;
     line-height: 1.8;
 }

 .faq-item.active .faq-answer {
     max-height: 500px;
     padding: 0 30px 25px 30px;
 }

 /* ===== FOOTER ===== */
 footer {
     background: #f8f9fa;
     padding: 60px 40px 30px;
 }

 .footer-container {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 60px;
     margin-bottom: 40px;
 }

 .footer-about h3 {
     font-size: 28px;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 20px;
 }

 .footer-about p {
     color: #3e4243;
     font-size: 15px;
     line-height: 1.8;
 }

 .footer-section h4 {
     font-size: 18px;
     font-weight: 600;
     color: #1a1a1a;
     margin-bottom: 20px;
 }

 .footer-section ul {
     list-style: none;
 }

 .footer-section ul li {
     margin-bottom: 12px;
 }

 .footer-section ul li a {
     color: #3e4243;
     text-decoration: none;
     font-size: 15px;
     transition: color 0.3s ease;
 }

 .footer-section ul li a:hover {
     color: #000;
 }

 .footer-bottom {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid #e0e0e0;
     color: #3e4243;
     font-size: 14px;
 }

 /* ===== RESPONSIVE DESIGN ===== */
 @media (max-width: 1024px) {
     .hero {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .footer-container {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .logo-img {
         height: 35px !important;
     }

     .logo {
         font-size: 20px;

     }

     .service-content {
         position: relative;
     }

     .service-content .btn-contact {
         position: absolute;
         bottom: 10px;
         right: 10px;
     }

     .header-container {
         padding: 15px 20px;
     }

     nav {
         position: fixed;
         top: 70px;
         left: -100%;
         width: 100%;
         background: white;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
         transition: left 0.3s ease;
     }

     nav.active {
         left: 0;
     }

     nav ul {
         flex-direction: column;
         padding: 20px;
         gap: 0;
     }

     nav ul li {
         padding: 15px 0;
         border-bottom: 1px solid #f0f0f0;
     }

     .hamburger {
         display: flex;
     }

     .hero {
         padding: 0 20px;
         margin: 30px auto;
     }

     .hero-left h1 {
         font-size: 36px;
     }

     .image-grid {
         height: 162px;
     }

     .hero-right img {
         height: 400px;
     }

     .services-grid {
         grid-template-columns: 1fr;
     }

     .section-title {
         font-size: 32px;
     }

     .modal-images {
         grid-template-columns: 1fr;
     }

     .info-cards {
         grid-template-columns: 1fr;
     }

     .footer-container {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .cta h2 {
         font-size: 32px;
     }
 }

 .logo-img {
     height: 50px;
 }



 .mt-4 {
     margin-top: 1.5rem;
     /* Bootstrap 4/5 default spacing */
 }

 .mb-4 {
     margin-bottom: 1.5rem;
 }

 /* .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: space-between;


        } */

 .service-card {
     border-radius: 12px;
     padding: 12px;
     border: 1px solid #bfb8b8;
     transition: 0.3s ease;
 }

 /* Remove box shadow */
 .service-card:hover {
     transform: translateY(-3px);
 }

 /* Icon + Heading row */
 .title-row {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 15px;
 }

 .service-icon {
     width: 42px;
     height: 42px;
     border-radius: 50%;
 }

 .ro-service-section h3 {
     margin: 0;
     font-size: 20px;
     font-weight: 700;
     color: #000000;
 }

 /* Subtext */
 .sub-text {
     color: #777;
     font-size: 14px;
     margin-top: 2px;
 }

 /* Rating */
 .rating {
     font-size: 15px;
     margin-bottom: 10px;
 }

 .rating span {
     color: #777;
 }

 /* Price */
 .price {
     font-size: 15px;
     font-weight: 600;
     margin-bottom: 12px;
 }

 /* Check list */
 .checked-list {
     list-style: none;
     padding: 0;
     margin: 0 0 20px;
 }

 .checked-list li {
     margin-bottom: 8px;
     font-size: 15px;
     padding-left: 26px;
     position: relative;
 }

 .checked-list li::before {
     content: "✔";
     position: absolute;
     left: 0;
     top: 2px;
     font-size: 16px;
     color: #000;
     font-weight: bold;
 }

 /* CTA Button */
 .btn {
     display: block;
     text-align: center;
     padding: 12px 0;
     background: #000;
     color: #fff;
     text-decoration: none;
     border-radius: 8px;
     font-weight: bold;
     transition: 0.3s ease;
 }

 .btn:hover {
     background: #000;
 }

 /* Responsive */
 .service-container {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 25px;
     max-width: 1200px;
     margin: auto;
 }

 @media (max-width: 900px) {

     .service-container {

         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {

     .modal {

         width: 100%;

     }



     .modal-header h2 {
         font-size: 20px;

     }



     .modal-images img {
         /* width: 100%; */
         height: 150px !important;

     }


     .owl-carousel .owl-item img {
         display: block;
         width: 100%;
         margin: 0 auto;
         /* centers the image */
     }


     .faq {

         padding: 0 18px;
     }

     .rating {
         font-size: 15px;
         margin-bottom: 0px;
     }

     .title-row {
         display: flex;
         align-items: center;
         gap: 12px;
         margin-bottom: 3px;
     }

     .bold-text {
         color: #000000 !important;
         font-weight: 600 !important;
     }

     .checked-list li {
         margin-bottom: 0px;

     }

     .service-container {
         padding: 10px;
         grid-template-columns: 1fr;
     }

     .service-card img {
         display: none;
     }

     .service-card {
         position: relative;
         padding-top: 20px;
     }

     .price {
         position: absolute;
         top: 20px;
         right: 20px;
         margin: 0;
         font-weight: 600;
         font-size: 16px;
         color: #000;
     }
 }


 .section-title1 {
     text-align: left;
     /* Changed from center to left */

     /* Added padding for better alignment */
 }


 .logo-slider .item {
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
 }

 .logo-slider img {
     max-width: 150px;
     width: auto;
     /* IMPORTANT FIX */
     height: auto;
     filter: grayscale(100%);
     transition: 0.3s ease;
 }

 .logo-slider img:hover {
     filter: grayscale(0%);
 }

 .owl-dots {
     margin-top: 20px;
     text-align: center;
 }

 .owl-dots .owl-dot span {
     width: 10px;
     height: 10px;
     background: #ccc;
     display: block;
     border-radius: 50%;
     margin: 5px 4px;
     transition: 0.3s;
 }

 .owl-dots .owl-dot.active span {
     background: #000;
 }

 .hero-right .image-grid img {
     width: 100%;
     height: 100% !important;
     object-fit: cover;
 }



 .logo-slider img {
     height: auto !important;
     /* override bad rule */
     width: auto !important;
     max-width: 150px !important;
     object-fit: contain !important;
     display: block;
 }

 /* Default desktop spacing */
 .pt-120 {
     padding-top: 120px;
 }

 .pb-120 {
     padding-bottom: 120px;
 }

 /* Tablet (medium screens) */
 @media (max-width: 992px) {
     .pt-120 {
         padding-top: 80px;
     }

     .pb-120 {
         padding-bottom: 80px;
     }
 }

 /* Mobile (small screens) */
 @media (max-width: 576px) {
     .pt-120 {
         padding-top: 60px;
     }

     .pb-120 {
         padding-bottom: 60px;
     }
 }


 .service-points {
     padding-left: 20px;
     margin: 10px 0;
 }

 .service-points li {
     margin-bottom: 6px;
     font-size: 16px;
     line-height: 1.5;
 }

 .service-rating {
     font-size: 16px;
     margin: 10px 0 15px;
     color: #f7b500;
     font-weight: bold;
 }

 .service-rating span {
     color: #333;
     font-weight: normal;
     margin-left: 5px;
 }

 .service-title-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .call-icon-btn {
     background: #28a745;
     color: #fff;
     padding: 6px 10px;
     border-radius: 50px;
     font-size: 16px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: 0.3s ease;
 }

 .call-icon-btn:hover {
     background: #218838;
 }


 .testimonial-card {
     background: #fff;
     padding: 25px;
     border-radius: 12px;
     box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
     border: 1px solid #eee;
     margin: 10px;
 }

 .testimonial-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .testimonial-header h3 {
     margin: 0;
     font-size: 20px;
     font-weight: 600;
 }

 .t-date {
     font-size: 14px;
     color: #777;
 }

 .rating-badge {
     background: #0b8f4f;
     color: #fff;
     padding: 6px 12px;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 600;
 }

 .testimonial-text {
     margin-top: 15px;
     line-height: 1.6;
     color: #444;
 }

 .testimonials .owl-dots {
     margin-top: 20px;
 }

 /* Container max width */
 .container {
     width: 100%;
     max-width: 1200px;
     margin: auto;
 }

 /* Flex row for 2 columns */
 .why-row {
     display: flex;
     align-items: center;
     gap: 40px;
 }

 /* Two equal columns */
 .why-col {
     flex: 1;
 }

 .section-title {
     font-size: 32px;
     margin-bottom: 15px;
 }

 .section-desc {
     color: #555;
     margin-bottom: 25px;
     line-height: 1.6;
 }

 .why-item {
     margin-bottom: 18px;
 }

 .why-item h3 {
     font-size: 18px;
     margin-bottom: 5px;
 }

 .why-item p {
     color: #666;
 }

 /* Image styling */
 .why-image img {
     width: 100%;
     border-radius: 12px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

 /* RESPONSIVE */
 @media (max-width: 768px) {
     .why-row {
         flex-direction: column;
     }

     .why-col {
         width: 100%;
     }
 }


 .service-card-popup {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     padding: 20px;
     border-radius: 10px;
     border: 1px solid #eee;
     background: #fff;
     max-width: 880px;
     /* margin: 20px auto; */
 }

 .service-info h3 {
     font-size: 20px;
     margin: 0 0 6px;
     color: #222;
 }

 .rating {
     font-size: 14px;
     color: #555;
     margin-bottom: 8px;
 }

 .price-row {
     display: flex;
     align-items: center;
     font-size: 16px;
     margin-bottom: 8px;
 }

 .final-price {
     font-weight: bold;
     color: #000;
 }

 .old-price {
     text-decoration: line-through;
     margin-left: 6px;
     color: #777;
 }

 .dot {
     width: 6px;
     height: 6px;
     background: #888;
     border-radius: 50%;
     margin: 0 8px;
 }

 .time {
     color: #444;
     font-size: 14px;
 }

 .per-ac {
     color: #0a8f32;
     font-weight: 600;
     font-size: 15px;
 }

 .tag {
     width: 10px;
     height: 10px;
     background: #0a8f32;
     display: inline-block;
     border-radius: 2px;
     margin-right: 5px;
 }

 .add-btn {
     background: #000000;
     border: none;
     padding: 8px 20px;
     color: #fff;
     border-radius: 20px;
     cursor: pointer;
     font-size: 15px;
     height: fit-content;
 }

 /* ---- RESPONSIVE ---- */
 @media (max-width: 600px) {
     .section-title {
         font-size: 26px;
         margin-bottom: 15px;
         padding: 0px 12px 0px 12px;
     }

     .section-desc {
         padding: 0px 12px 0px 12px;
     }

     .need-title {
         font-size: 26px !important;

     }

     .close-modal {

top: 10% !important;
        right: 8px !important;
     }


     .service-card-popup {
         flex-direction: column;
         gap: 15px;
         text-align: left;
     }

     .add-btn {
         width: 100%;
         text-align: center;
         padding: 10px 0;
         border-radius: 10px;
     }

     .service-info h3 {
         font-size: 18px;
     }
 }

 .owl-carousel .owl-item img {
     display: block;
     width: 100%;
     margin: 0 auto;
     /* centers the image */
 }

 .modal-content {
     position: relative;
     /* padding-top: 50px; */
     /* space for fixed close button */
 }


 .hero {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
 }

 /* Mobile View */
 @media (max-width: 768px) {
     .hero {
         display: flex;
         flex-direction: column-reverse;
         gap: 40px;
     }
 }


 /* The white modal box */
 .modal-content {
     position: relative;
     border-radius: 20px;
     overflow-y: auto;
 }

 /* Close button OUTSIDE */
 .close-modal {
        position: fixed;
     /* IMPORTANT */
     top: 8%;
    right: 28%;
     /* aligns to right edge of popup */
     width: 38px;
     height: 38px;
     border-radius: 50%;
     background: #fff;
     border: 1px solid #ddd;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
     cursor: pointer;
     z-index: 999999;
 }


 .process-section {
     /* font-family: 'Segoe UI', sans-serif;
                    max-width: 700px; */
     margin: auto;
     padding: 30px 20px;
 }

 .process-section h2 {
     font-size: 32px;
     margin-bottom: 30px;
     font-weight: 700;
 }

 .process-wrapper {
     border-left: 2px solid #ddd;
     padding-left: 30px;
     position: relative;
 }

 .process-step {
     display: flex;
     gap: 16px;
     position: relative;
     margin-bottom: 30px;
 }

 .step-number {
     position: absolute;
     left: -45px;
     background: #f2f2f2;
     width: 30px;
     height: 30px;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     font-weight: 600;
     color: #333;
     border: 1px solid #e0e0e0;
 }

 .step-content h4 {
     margin: 0;
     font-size: 18px;
     font-weight: 700;
 }

 .step-content p {
     margin: 4px 0 0;
     font-size: 15px;
     color: #555;
 }

 /* ----------- RESPONSIVE ----------- */

 @media (max-width: 480px) {
     .process-section h2 {
         font-size: 26px;
     }

     .step-content h4 {
         font-size: 17px;
     }

     .step-content p {
         font-size: 14px;
     }
 }


 .rating-badge {
     background: #07794C;
     /* Green color from screenshot */
     color: #fff;
     padding: 4px 10px;
     border-radius: 6px;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 14px;
     font-weight: 600;
 }

 .rating-badge i {
     color: #ffffff;
     /* White star */
     font-size: 14px;
 }


 .review-card {
     border-bottom: 1px solid #ddd;
     padding: 20px 0;
     max-width: 700px;
     margin: auto;
     font-family: 'Segoe UI', sans-serif;
 }

 .review-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .review-header h3 {
     font-size: 22px;
     margin: 0;
     font-weight: 700;
 }

 .rating-badge {
     background: rgba(7, 121, 76, 1.00);
     color: #fff;
     padding: 6px 14px;
     border-radius: 6px;
     display: flex;
     align-items: center;
     font-weight: 600;
     gap: 6px;
     font-size: 16px;
 }

 .rating-badge img {
     width: 18px;
     height: 18px;
 }

 .review-meta {
     color: #777;
     font-size: 14px;
     margin: 6px 0 15px;
 }

 .review-text {
     font-size: 16px;
     line-height: 1.6;
     margin: 0;
 }

 /* Responsive */
 @media (max-width: 480px) {
     .review-header h3 {
         font-size: 18px;
     }

     .rating-badge {
         padding: 5px 10px;
         font-size: 14px;
     }

     .review-text {
         font-size: 15px;
     }
 }

 .tech-section {
     display: flex;
     align-items: center;
     justify-content: space-between;
     /* gap: 40px; */
     /* padding: 40px 20px; */
     max-width: 779px;
     margin: auto;
     font-family: 'Segoe UI', sans-serif;
 }

 .tech-content h2 {
     font-size: 32px;
     font-weight: 700;
     margin-bottom: 25px;
 }

 .tech-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .tech-list li {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 18px;
     margin-bottom: 15px;
 }

 .icon svg {
     display: block;
 }

 .tech-image img {
     width: 330px;
     max-width: 100%;
     height: auto;
 }

 /* ----------- RESPONSIVE DESIGN ----------- */

 @media (max-width: 900px) {
     .tech-section {
         flex-direction: column;
         text-align: left;
     }

     .tech-image {
         text-align: center;
     }

     .tech-image img {
         width: 260px;
     }
 }

 @media (max-width: 480px) {
     .tech-content h2 {
         font-size: 26px;
     }

     .tech-list li {
         font-size: 16px;
     }
 }

 .icon img {
     height: 30px;
 }

 .need-section {
     /* padding: 50px 20px; */
     padding: 50px 0px;
     font-family: "Poppins", sans-serif;
 }

 .need-title {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 30px;
     text-align: left;
 }

 .need-items {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }

 .need-box {
     flex: 1;
     min-width: 200px;
     background: #f5f5f5;
     padding: 25px;
     border-radius: 15px;
     text-align: center;
     transition: 0.3s;
 }

 .need-box img {
     width: 40px;
     height: auto;
     margin-bottom: 15px;
 }

 .need-box p {
     margin: 0;
     font-size: 18px;
     font-weight: 600;
     color: black;
 }

 /* Hover effect */
 .need-box:hover {
     background: #ebebeb;
 }

 /* Responsive for mobile */
 @media (max-width: 768px) {
     .need-items {
         flex-direction: column;
     }

     .need-box {
         width: 100%;
     }
 }

 /* Default: distribute items normally */
 .need-items {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
     justify-content: flex-start;
 }

 /* Center items if only one need-box exists */
 .need-items.single-box {
     justify-content: center;
 }

 .need-items.single-box .need-box {
     max-width: 320px;
     margin: 0 auto;
 }

 .uccover-section {
     /* font-family: 'Segoe UI', sans-serif; */
     max-width: 500px;
 }

 .uccover-title {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .uccover-brand {
     color: #008c8c;
     font-weight: 700;
 }

 .uccover-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .uccover-list li {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 16px;
 }

 .uccover-list p {
     font-size: 16px;
     margin: 0;
 }

 /* Responsiveness */
 @media (max-width: 480px) {
     .uccover-title {
         font-size: 26px;
     }

     .uccover-list p {
         font-size: 15px;
     }
 }





 /* Desktop – keep default left/right arrows */
 .testimonial-carousel .owl-nav button {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: #ffffff !important;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: 1px solid #e0e0e0 !important;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
     padding: 0 !important;
     margin: 0 !important;
     transition: all 0.3s ease-in-out;
     z-index: 50;
 }

 .testimonial-carousel .owl-nav button span {
     font-size: 22px !important;
     line-height: 1 !important;
 }

 /* Desktop position */
 .testimonial-carousel .owl-nav .owl-prev {
     left: -37px;
 }

 .testimonial-carousel .owl-nav .owl-next {
     right: -37px;
 }


 /* --------------------------------------------- */
 /*  📱 Mobile: nav centered & placed ABOVE slider */
 /* --------------------------------------------- */

 @media (max-width: 768px) {

     /* Move nav above */
     .testimonial-carousel .owl-nav {
         position: relative !important;
         top: 10px;
         /* Move slightly above */
         display: flex !important;
         justify-content: center !important;
         width: 100%;
         margin-bottom: 10px;
     }

     /* Reset button positioning (remove left/right) */
     .testimonial-carousel .owl-nav button {
         position: static !important;
         transform: none !important;
         margin: 0 8px !important;
         /* spacing between arrows */
     }
 }



 /* Default desktop arrows left/right */
 .logo-slider .owl-nav button {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: #ffffff !important;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: 1px solid #e0e0e0 !important;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
     padding: 0 !important;
     font-size: 20px !important;
     transition: all 0.3s ease-in-out;
     z-index: 20;
 }

 /* Arrow text */
 .logo-slider .owl-nav button span {
     font-size: 22px !important;
     line-height: 1 !important;
 }

 /* Desktop left & right positions */
 .logo-slider .owl-nav .owl-prev {
     left: -5px;
 }

 .logo-slider .owl-nav .owl-next {
     right: -5px;
 }

 /* Hover effect */
 .logo-slider .owl-nav button:hover {
     background: #0f8644 !important;
     border-color: #0f8644 !important;
     color: #fff !important;
 }


 /* --------------------------------------------- */
 /* 📱 Mobile view → center nav ABOVE slider */
 /* --------------------------------------------- */
 @media (max-width: 768px) {

     .logo-slider .owl-nav {
         position: relative !important;
         top: 30px;
         display: flex !important;
         justify-content: center !important;
         margin-bottom: 10px;
     }

     .logo-slider .owl-nav button {
         position: static !important;
         transform: none !important;
         margin: 0 8px !important;
     }
 }