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

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
        line-height: 1.6;
        background: #f8f9fa;
        color: #333;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .logo-img {
        width: 220px;
        height: auto;
        object-fit: contain;
    }

    .logo-text {
        font-size: 24px;
        font-weight: 600;
        font-style: italic;
    }

    .submit-btn {
        padding: 12px 24px;
        background: #CC0000;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
    }

    .try-btn {
        padding: 12px 24px;
        background: #CC0000;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
    }


    .try-btn:hover {
        background: #aa0000;
    }

    .hero-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 60px;
        flex-wrap: wrap;
    }

    .hero-text {
        max-width: 600px;
        flex: 1;
        text-align: left;
    }

    .hero-title {
        font-size: clamp(38px, 5vw, 48px);
        font-weight: bold;
        color: #333;
        margin-bottom: 20px;
        line-height: 1.2;
        text-align: left;
    }

    .hero-description {
        font-size: 16px;
        color: #666;
        text-align: left;
    }

    .hero-image {
        max-width: 480px;
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .icon-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        justify-content: center;
    }

    .main-content {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .form-section,
    .contact-section {
        background: white;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 600px;
    }

    .form-title,
    .section-title {
        font-size: 24px;
        font-weight: bold;
        color: #333;
        margin-bottom: 30px;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 14px;
    }

select, input[type='number'], input[type='text'] ,input[type='email'], input[type='password'],
    
    .form-textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 16px;
    }

    .form-textarea {
        resize: vertical;
        min-height: 100px;
        font-family: inherit;
    }

    .price-display {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        margin: 25px 0;
    }

    .price-label {
        font-size: 14px;
        color: #666;
        margin-bottom: 5px;
    }

    .price-amount {
        font-size: 24px;
        font-weight: bold;
        color: #333;
    }

    .form-row {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .form-row .form-group {
        flex: 1;
        min-width: 200px;
    }

    footer {
        background: #333;
        color: #fff;
        text-align: center;
        padding: 20px 0;
        font-size: 14px;
        margin-top: 60px;
    }

    @media (max-width: 768px) {

        .logo-img {
            width: 160px;
            height: auto;
        }

        .logo-text {
            font-size: 15px;
            font-weight: 600;
            font-style: italic;
        }

        .hero-wrapper {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero-text {
            text-align: center;
        }

        .hero-title,
        .hero-description {
            text-align: center;
        }

        .icon-grid {
            grid-template-columns: repeat(2, 1fr);
            /* 2 per row on mobile */
            gap: 20px;
        }

        .contact-section,
        .section-title {
            text-align: left;
        }

        .header {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .try-btn {
            display: none;
        }
    }

        .login-form {
            top: 25%;
    
            position: fixed;
            max-width: 420px;
            width: 100%;
            padding: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: fadeIn 1.5s ease-out;
        }
    
        @media (max-width: 480px) {
            .login-form {
                padding: 30px;
                width: 90%;
            }
        }
.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    font-size: 14px;
    color: #ff0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.message-box {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    opacity: 0;
    animation: slideFade 3s ease forwards;
}
 .btn-icon {
     font-size: 24px;
     padding: 0.1em 0.5em;
     cursor: pointer;
     border-radius: 10px;
     transition: all 0.2s;
     border: none;
     font-weight: 500;
     color: white;
     background-color: rgb(255, 0, 0);
     vertical-align: middle;
 }

 .btn-icon:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }



 .modal {
     display: none;
     /* Hidden by default */
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
 }

 .loader {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     border: 8px solid #f3f3f3;
     border-top: 8px solid #3498db;
     border-radius: 50%;
     width: 60px;
     height: 60px;
     animation: spin 1s linear infinite;
 }

 @keyframes spin {
     0% {
         transform: translate(-50%, -50%) rotate(0deg);
     }

     100% {
         transform: translate(-50%, -50%) rotate(360deg);
     }
 }

         .logo-slider {
             overflow: hidden;
             position: relative;
             width: 100%;
             max-width: 100%;
             margin: 0 auto;
         }
    
         .logo-mask {
             position: relative;
             overflow: hidden;
             width: calc((150px + 40px) * 5 - 40px);
             -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
             mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
             -webkit-mask-repeat: no-repeat;
             mask-repeat: no-repeat;
             -webkit-mask-size: 100% 100%;
             mask-size: 100% 100%;
             margin: 0 auto;
             background: transparent;
         }
    
         .logo-track {
             display: flex;
             gap: 40px;
             animation: scrollLogos 25s linear infinite;
             width: max-content;
         }
    
         .logo-track img {
             width: 150px;
             height: 150px;
             object-fit: contain;
             flex-shrink: 0;
             background: transparent;
             border: none;
             box-shadow: none;
         }
    
         @keyframes scrollLogos {
             0% {
                 transform: translateX(0);
             }
    
             100% {
                 transform: translateX(-50%);
             }
         }
    
         @media (max-width: 768px) {
             .logo-track {
                 gap: 20px;
                 animation-duration: 15s;
             }
    
             .logo-track img {
                 width: 120px;
                 height: 120px;
             }
    
             .logo-mask {
                 width: calc((120px + 20px) * 3 - 20px);
                 -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
                 mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
             }
         }
    
         .faq-section {
             padding: 60px 20px;
             max-width: 900px;
             margin: 0 auto;
         }
    
         .faq-title {
             color: #CC0000;
             font-size: 28px;
             font-weight: bold;
             text-align: center;
             margin-bottom: 40px;
         }
    
         .accordion-item {
             margin: 10px 10px;
             /* space between questions */
             border-bottom: 1px solid black;
             /* separator line */
         }
    
         .accordion-button {
             background: none;
             border: none;
             width: 100%;
             text-align: left;
             font-size: 16px;
             font-weight: 600;
             padding: 10px 10px;
             cursor: pointer;
             color: #333;
             position: relative;
         }
    
         .accordion-button:after {
             content: '+';
             position: absolute;
             right: 0;
             top: 50%;
             transform: translateY(-50%);
             font-size: 18px;
             color: #CC0000;
         }
    
         .accordion-button.active:after {
             content: '-';
         }
    
         .accordion-panel {
             max-height: 0;
             overflow: hidden;
             transition: max-height 0.3s ease, padding 0.3s ease;
             padding: 0 10px;
             margin-top: 10px;
             margin-bottom: 25px;
             /* space below answer */
             color: #555;
             font-size: 14px;
             line-height: 1.6;
         }
    
         .accordion-button.active+.accordion-panel {
             max-height: 500px;
             padding-bottom: 15px;
         }
    
         /* Lottie animation styles */
         .lottie-hero-animation {
             width: 500px;
             height: 500px;
             border-radius: 12px;
             margin: auto;
             background: transparent !important;
         }
    
         .lottie-player {
             background: transparent !important;
             position: relative;
             z-index: 1;
         }
    
         .hero-wrapper {
             background: none !important;
             position: relative;
         }
    
         @media (max-width: 768px) {
             .hero-wrapper {
                 display: block !important;
                 /* stack vertically */
    
                 box-sizing: border-box;
                 max-width: 100vw;
             }
    
             .lottie-hero-animation {
                 width: 105% !important;
                 /* a bit bigger than before */
                 max-width: 100vw !important;
                 height: auto !important;
    
    
             }
    
             .hero-text {
                 text-align: center;
             }
         }
    
    
    
    
         /* service styles */
    
    
         .services-section {
             padding: 60px 20px;
             text-align: center;
         }
    
         .services-title {
             color: #CC0000;
             font-size: 28px;
             font-weight: bold;
             margin-bottom: 40px;
         }
    
         .carousel-container {
             overflow: hidden;
             max-width: 1280px;
             margin: 0 auto;
             position: relative;
         }
    
         .carousel-track {
             display: flex;
             transition: transform 0.5s ease-in-out;
         }
    
         .service-card {
             flex: 0 0 25%;
             /* 4 cards visible */
             box-sizing: border-box;
             padding: 10px;
    
         }
    
         .service-card img {
             width: 100%;
             height: 300px;
             object-fit: cover;
             border-radius: 12px;
             box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
             /* soft shadow like form */
             border-radius: 8px;
             background: white;
         }
    
         .service-card h4 {
             margin-top: 12px;
             font-size: 18px;
             color: #000000;
             font-weight: 600;
         }
    
         /* Mobile: 2 per row */
         @media (max-width: 768px) {
             .service-card {
                 flex: 0 0 100%;
             }
         }
    
         .gradient-text {
             position: relative;
             background: linear-gradient(to right, #CC0000, #ff007f, #0077B6);
             -webkit-background-clip: text;
             -webkit-text-fill-color: transparent;
             font-weight: bold;
             cursor: pointer;
             display: inline-block;
         }
    
         .gradient-text::after {
             content: "";
             position: absolute;
             bottom: -4px;
             left: 0;
             height: 2px;
             width: 100%;
             background-color: #cc0000;
             transform: scaleX(0);
             transform-origin: left;
             transition: transform 0.2s ease-out;
         }
    
         .gradient-text:hover::after {
             transform: scaleX(1);
         }
         
         
         /* Testimonials */

		
		
		.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .testimonial-item h3 {
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
  }

  .testimonial-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
  }

  .stars {
    color: #fbbf24; /* Light orange/gold */
    font-size: 20px;
    margin-bottom: 16px;
  }

  /* Desktop: two columns */
  @media (min-width: 769px) {
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Mobile: add separator line between testimonials */
  @media (max-width: 768px) {
    .testimonial-item:not(:last-child) {
      border-bottom: 1px solid #ddd;
      padding-bottom: 20px;
      margin-bottom: 20px;
    }
  }
  
  
  
  
  
		
	/* Footer Base Styles */
.footer {
  background-color: #202020;
  color: #eee;
  padding: 40px 20px;
  font-family: sans-serif;
  font-size: 14px;
}

.footer a {
  color: #eee;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Layout */
.footer-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  text-align: left;
}

.footer-left {
  flex: 1;
  min-width: 280px;
  margin-right: 60px;
}

.footer-right {
  flex: 1;
  min-width: 280px;
}

/* Heading in red */
.footer-company {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #cc0000;
}

.footer-description {
  line-height: 1.6;
}

/* Contact */
.footer-contact p {
  margin: 6px 0;
}

/* Social */
.footer-social {
  margin-top: 30px;
}

.footer-social .social-label {
  font-weight: 600;
  margin-right: 15px;
}

.footer-social .social-icons {
  display: inline-flex;
  gap: 15px;
  align-items: center;
}

.footer-social i {
  font-size: 18px;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 13px;
}

/* Mobile view */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-left,
  .footer-right {
    min-width: 100%;
    margin: 0 auto;
  }

  .footer-contact p {
    text-align: center;
  }

  .footer-social {
    margin-top: 20px;
  }

  .footer-social .social-label,
  .footer-social .social-icons {
    display: inline-block;
    vertical-align: middle;
  }

  .footer-social .social-icons {
    margin-left: 10px;
  }
	
	.footer-social .social-icons {
  display: inline-flex !important;
  gap: 20px;  /* Increased gap between icons */
  margin-left: 10px; /* keep if you want space from label */
  vertical-align: middle;
}
}
