* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f8f8;
}

#nav-bar {
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar {
    background-image: linear-gradient(to right, #e13700, #0004ff);
    padding: 0 !important;
}
.companytitle{
    color: #f8f8f8;
    margin-top: 1%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 1500; 
}
.navbar-brand img {
    height: 40px;
    padding-left: 5px;
}

.navbar-nav li {
  margin-top: 1%;
    padding: 0 10px;
}

.navbar-nav li a {
  margin-top: 1%;
    color: #f8f8f8 !important;
    float: right;
    text-align: left;
    font-weight: bold;

    text-transform: uppercase;
}

.fa-bars {
    color: #f8f8f8;
    font-size: 30px !important;
}

.navbar-toggler {
    outline: none !important;
}
#nav-bar .bottom-img {
    width: 100%;
}
#nav-bar  .btn-primary {
    background-image: linear-gradient(to right, #e13700, #0004ff);
    background-size: 1000%;
    font-family: 'poppins', sans-serif;
    font-weight: 900;
  }
  
  .btn-primary:is(:hover, :focus) { 
    background-position: bottom right; 
  }
  

/* BANNER SECTION */
#banner {
    background-image: linear-gradient(to right, #0004ff, #0083B0);
    color: #f8f8f8;
    padding-top: 5%;
}
.companytag{
    color: #f8f8f8;

font-size: small;  }

.promo-title {
    font-size: 40px;
    font-weight: 600;
    margin-top: 100px;
    padding-bottom: 10px;
    color: #f8f8f8;
    font-family: 'Montserrat', sans-serif;
    font-weight: 1500; 
}

.bottom-img {
    width: 100%;
}
#banner  .btn-primary {
    background-color:#ea3700;
    background-size: 1000%;
    font-family: 'poppins', sans-serif;
    font-weight: 900;
  }
  
  .btn-primary:is(:hover, :focus) { 
    background-position: bottom right; 
  }
  
  
  .btn-secondary {
    background-color: var(--white-1);
    color: var(--eerie-black);
  }
  

/* SERVICES SECTION */

#services {
    padding: 80px 0;
}

.service-img {
    width: 100px;
    margin-top: 20px;
}

.services {
    padding: 20px;
}

.services h4 {
    padding: 5px;
    margin-top: 25px;
    font-weight: 600;
}

.title::before {
    content: '';
    background: #0004ff;
    height: 5px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(63px);
}

.title::after {
    content: '';
    background: #0004ff;
    height: 10px;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    display: block;
    transform: translateY(8px);
}

#services .btn-primary{
    background-image: linear-gradient(to right, #e13700, #0004ff);
    background-size: 1000%;
  }
  
  .btn-primary:is(:hover, :focus) { 
    background-position: bottom right; 
  }
  
  

/* ABOUT US SECTION */

#about-us {
    background: #f8f9fa;
    padding-bottom: 50px;
    padding-top: 50px;
    background: #f8f8f8;

}

#about-us img {
    width: 100%
}

.about-title {
    font-size: 30px;
    margin-top: 8%;
    font-weight: 600;
}

#about-us ul li {
    margin: 10px 0;
}

#about-us ul {
    margin-left: 20px;
}

/* TESTIMONIALS SECTION */

#testimonials {
    margin: 100px 0;
    background: #f8f8f8;
}

.testimonials {
    border-left: 4px solid #0004ff;
    margin-top: 50px;
    margin-bottom: 50px;
}
.testimonials img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin: 0 10px;
}

.user-details {
    display: inline-block;
    font-size: 12px;
}


/* FOOTER SECTION */

#footer {
    background-image: linear-gradient(to right, #0004ff, #0083B0);
    color: #f8f8f8;
}

.footer-box {
    padding: 20px;
}

.footer-box img {
    width: 120px;
    margin-bottom: 20px;
}

.footer-box .fa {
    margin-right: 8px;
    font-size: 25px;
    height: 40px;
    width: 40px;
    text-align: center;
    padding-top: 7px;
    border-radius: 2px;
    background-image: linear-gradient(to right, #0004ff, #0083B0);
}

.footer-box .form-control {
    box-shadow: none !important;
    border: none;
    border-radius: 0;
    margin-top: 25px;
    max-width: 250px;
}

.footer-box .btn-primary {
    box-shadow: none !important;
    border: none;
    border-radius: 0; 
    margin-top: 30px;
    background-image: linear-gradient(to right, #0004ff, #0083B0);
}

hr {
    background-color: white;

}

.copyright {
    margin-bottom: 0;
    padding-bottom: 20px;
    text-align: center;
}
/* WhatsApp FAB Styles */
.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background-color: #25D366; /* WhatsApp Green */
    border-radius: 30px; /* Rounded rectangle */
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-fab img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  
  .whatsapp-fab:hover {
    background-color: #1ebc5a;
  }
 
/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    padding: 20px;
    display: flex; /* Enable Flexbox */
  flex-direction: column; /* Stack items vertically */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  text-align: center; /* Center text alignment */
 
  }
  
  .cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom right, #e13700b3, #0004ffb3);
    opacity: 0.95;
    z-index: -1;
  }
  
  .cta-subtitle,
  .cta .section-title { 
    color: #f8f8f8; /* white */
    align-items: center;
    justify-content: center;
   
  }
  
  .cta-subtitle {
    justify-content: center;
 align-items: center;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    flex: auto;
  }
  
  .cta .section-title { 
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-block: 12px 18px; 
  }
  
  .cta .btn { 
    align-items: center;
    justify-content: center;
    margin-inline: auto; 
  }
  
  #cta .bottom-img {
    width: 100%;
}
.btn-secondary {
  display: inline-flex; /* Ensures Flexbox for centering */
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  text-decoration: none; /* Remove underline */
  background-color: #e13700; /* Background color */
  color: #ffffff; /* Text color */
  font-family: 'Poppins', sans-serif; /* Font family */
  font-weight: 900; /* Font weight */
  font-size: 16px; /* Font size */
  padding: 12px 24px; /* Button padding */
  border-radius: 8px; /* Rounded corners */
  background-size: 1000%; /* Background size for hover effect */
  transition: background-position 0.4s ease-in-out, transform 0.2s ease; /* Smooth transitions */
}

.btn-secondary:is(:hover, :focus) {
  background-position: bottom right; /* Change background on hover */
  background-color: #0004ff;
  transform: scale(1.05); /* Slightly enlarge on hover */
}
  
  /*-----------------------------------*\
    #BLOG
\*-----------------------------------*/
#blogs .blog-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-y: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.blog-slide {
  flex: 0 0 90%; /* Use percentage for responsive scaling */
  max-width: 400px; /* Prevent the card from becoming too large */
  background-color: #f8f8f8;
  border: 1px solid #0004ff;
  border-radius: 10px;
  padding: 15px;
  text-align: left;
  scroll-snap-align: start;
  height: auto; /* Remove fixed height to allow content to scale */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensure space between elements */
}

.blog-slide img {
  width: 100%; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensure the image fits the space without distortion */
  border-radius: 5px;
}

.blog-slide h3 {
  color: #0004ff;
  margin-top: 10px;
  font-size: 18px;
  margin-bottom: 10px; /* Space between title and description */
  word-wrap: break-word;
}

.blog-slide p {
  font-size: 14px;
  color: #000000;
  width: 100%; /* Ensure it takes the full width inside the parent */
  margin-bottom: 10px; /* Margin for spacing between text and link */
  word-wrap: break-word; /* Break long words to avoid overflow */
  line-height: 1.6; /* Increase line height for better readability */
}

.blog-slide a {
  margin-top: auto; /* Pushes the link to the bottom of the card */
  display: inline-block;

  text-decoration: none;
  border: 1px solid #e13700;
  padding: 5px 10px;
  border-radius: 5px;
}

.blog-slide a:hover {
  background-color: #e13700;
  color: #ffffff;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
 
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  margin: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.4s ease, transform 0.2s ease;
}

.btn-primary:is(:hover, :focus) {
  background-color: #0004ff;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-slide {
      flex: 0 0 100%; /* Adjust card width for smaller screens */
      padding: 10px;
  }

  .blog-slide img {
      height: auto; /* Allow the height to scale naturally */
  }

  .blog-slide h3 {
      font-size: 16px; /* Adjust font size for readability */
  }

  .blog-slide p {
      font-size: 12px; /* Adjust font size for readability */
  }

  .blog-slide a {
      font-size: 14px; /* Adjust button font size */
  }
}

@media (max-width: 480px) {
  .btn-primary {
      font-size: 14px;
      padding: 10px 20px;
  }
}


  
  
  \*-----------------------------------*/
/*-----------------------------------*\
    #Contact Us
    \*-----------------------------------*/

  #contact-us {
    padding: 50px 20px;
    background-color: #f9f9f9;
  }
  
  .title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .contact-form {
    margin: 30px auto;
    max-width: 800px;
  }
  
  .input-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .input-field {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .checkbox-wrapper {
    display: flex;
    align-items: center;
    margin: 20px 0;
  }
  
  .checkbox {
    margin-right: 10px;
  }
  
  #contact-us .btn {
    padding: 10px 20px;
    background-color: #E13700;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
  }
  
  .social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
  }
  
  .social-icons img:hover {
    transform: scale(1.1);
  }
  
  .contact-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  
  .contact-card {
    max-width: 300px;
    text-align: left;
    margin: 15px;
  }
  
  .card-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
  }
  
  .card-title {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 5px;
  }
  
  .card-link {
    color: #007bff;
    text-decoration: none;
  }
  
  .card-link:hover {
    text-decoration: underline;
  }
  
  .card-address {
    color: #666;
  }

 /*-----------------------------------*\
    #all-blogs.php
    \*-----------------------------------*/
    /* styles.css */



#all-blogs .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  border-radius: 10px;
  max-height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.card-text {
  color: #555;
}
.btn-primary {
  display: inline-flex; /* Enables Flexbox for centering */
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  text-decoration: none; /* Removes any default text underline */
  background-color: #e13700; /* Initial background color */
  color: #ffffff; /* Text color */
  font-family: 'Poppins', sans-serif; /* Font family */
  font-weight: 900; /* Font weight */
  font-size: 16px; /* Font size */
  padding: 12px 24px; /* Padding inside the button */
  border: none; /* Removes default border */
  margin: 15px;
  border-radius: 8px; /* Rounded corners */
  cursor: pointer; /* Changes cursor to pointer on hover */
  transition: background-color 0.4s ease, transform 0.2s ease; /* Smooth transition for hover effects */
}

.btn-primary:is(:hover, :focus) {
  background-color: #0004ff; /* Change background to blue on hover */
  transform: scale(1.05); /* Slightly enlarge the button on hover */
}


<!--#reading blogs-->
/* General Reset */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  color: #333;
}


/* Blog Post Section */
.blog-post {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #333;
}

.blog-header {
  text-align: center;
  margin-bottom: 20px;
}

.blog-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.blog-date {
  font-size: 0.9rem;
  color: #666;
}

.blog-image-container {
  text-align: center;
  margin: 20px 0;
  width: 100%; /* Ensure the container takes up full width */
  overflow: hidden; /* Prevent image overflow */
  padding: 20px; /* Add padding around the image container */
}

.blog-image {
  max-width: 100%; /* Allow the image to scale based on the container width */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  object-fit: cover; /* Ensure the image fills the container without distortion */
}


.no-image {
  text-align: center;
  font-style: italic;
  color: #999;
}

.blog-content {
  padding: 6px;
  margin-right: 8px;
 
  font-size: 1.1rem;
  color: #000000;
}

.blog-content p {
  margin:  0;  /* Adds consistent top and bottom spacing */
  /* Improves readability */

}

.blog-content ul,
.blog-content ol {
  margin:  0;  /* Consistent spacing above and below lists */
  padding-left: 1.5em;  /* Ensures proper indentation for list items */
  list-style-position: outside; /* Keeps bullet points outside the text block */
}

.blog-content li {
  margin-bottom: 0.5em;  /* Reduces spacing between individual list items */
  line-height: 1.5;      /* Improves readability within lists */
}





/* WhatsApp Floating Action Button */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.whatsapp-fab img {
  width: 25px;
  margin-right: 10px;
}

.whatsapp-fab:hover {
  background-color: #22c35e;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-post {
      padding: 15px;
  }

  .blog-title {
      font-size: 1.5rem;
  }

  .blog-content {
      font-size: 1rem;
  }

  #footer .footer-box {
      text-align: center;
  }

  .whatsapp-fab {
      font-size: 0.8rem;
      padding: 8px 10px;
  }
}


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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Section Styling */
.contact {
  padding: 50px 20px;
}

.contact .container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.contact .title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.contact p {
  margin-bottom: 30px;
  color: #555;
}

/* Form Styling */
.contact-form .input-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-form .input-field {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form .input-field:focus {
  border-color: #007bff;
}

textarea.input-field {
  resize: none;
  min-height: 100px;
}

/* Checkbox Wrapper */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-wrapper .checkbox {
  margin-right: 10px;
}

.checkbox-wrapper .label {
  font-size: 0.9rem;
}

.checkbox-wrapper .label-link {
  color: #0004ff;
  text-decoration: none;
}

.checkbox-wrapper .label-link:hover {
  text-decoration: underline;
}

/* Button Styling */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #e13700;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0004ff;
}

/* Social Media Section */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Contact List */

.contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-card .card-icon {
  font-size: 2rem;
  color: #007bff;
  margin-right: 15px;
}

.contact-card .card-title {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #333;
}

.contact-card .card-link {
  color: #007bff;
  text-decoration: none;
  font-size: 0.9rem;
}

.contact-card .card-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact .title {
    font-size: 2rem;
  }

  .contact-form .input-wrapper {
    flex-direction: column;
  }
}

/* Table styling */
.maintext {
  left: 50%; /* Move it halfway across the page */
 margin: 10px;
  color: #E13700;
  text-align: center; /* Optional: Center-align text within the element */
  font-size: 24px; /* Adjust size as needed */
  font-weight: bold;
}
table {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  border-color: #0004ff;
  mask-border-width: 1px;
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #0004ff;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #f1f1f1;
}

/* Make table responsive */
@media (max-width: 768px) {
  table {
      width: 100%;
      font-size: 0.9em;
  }

  th, td {
      padding: 10px;
  }
}

input[type="file"] {
  padding: 10px;
  font-size: 14px;
  border: #000000;
}

.upload-rules {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  text-align: left;
}


/* admin  */
h1 {
  color: #333;
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.admin-button {
  background-color: #E13700;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.admin-button:hover {
  background-color: #0004ff;
  text-decoration-color: #f8f8f8;
}

.admin-button:active {
  transform: scale(0.98);
}

@media only screen and (max-width: 476px) {
  .title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 10px;
  }
  .cta-title{
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}