
#scroll-Top  .return-to-top:hover {
    background:#008080;
   border:1px solid #008080;
}


/* new classes add for color start   */
  .text-left{
    text-align:left;
  }


/* Navbar logo styling */
.navbar-brand img {
  max-height: 60px;
  height: auto;
  padding-bottom: 5px;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Tablet devices */
@media (max-width: 768px) {
  .navbar-brand img {
    max-height: 50px;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  .navbar-brand img {
    max-height: 40px;
    margin-right: 5px;
  }
}


@media screen and (max-width: 992px) {
    nav.navbar.bootsnav .navbar-brand {
        padding: 11px;

    }
}

.navbar-header a.navbar-brand, .navbar-header a.navbar-brand:hover, .navbar-header a.navbar-brand:focus {
    display: inline-block;
    color: #1b1e20;
    font-size: 20px;
    font-weight: 700;
    padding: 19px 0px;
    text-transform: capitalize;
}

/*navbar log end*/


/* Make the navbar fixed at the top */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff; /* Change as needed */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar-header a.navbar-brand span {
    display: inline-block;
    color: #008080;
    text-transform: capitalize;
}
  

/*new classes add for color end*/
   .navbar-header a.span {
    display: inline-block;
    color: #008080;
    text-transform: capitalize;
    }

  /*Logo Color  Start*/
  .logoColorGreen{
    color: #008080;
  }
  .logoColorBlack{
     color: black;
  }
  /*Logo Color  end*/
  .logocolorgreenlabel{
    color: #008080;
  }
  .logocolorblacklabel{
     color: black;
  }

  /*About Styleing*/
  .section-about {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }

  .section-about h2 {
    color: #505866;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
  }

  .section-about h3 {
    font-size: 1.9rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .section-about p {
    font-size: 1.6rem;
    /* Increased font size */
    color: #666;
    line-height: 1.9;
    /* Slightly improved line spacing */
    max-width: 800px;
    margin: 0 auto 15px;
    text-align: justify;
  }

  .section-about strong {
    color: #d35400;
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .section-about {
      padding: 30px 15px;
    }

    .section-about h2 {
      font-size: 2rem;
    }

    .section-about h3 {
      font-size: 1.5rem;
    }

    .section-about p {
      font-size: 1.1rem;
      /* Slightly smaller for mobile */
    }
  }

  .works-content .row {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    /* Adjust based on preference */
  }

  .single-how-works {
    padding: 20px;
    text-align: center;
  }

  .about-padding {
    padding-bottom: 80px;
  }


  /*Expertise Styleing*/
  .expertise-padding {
    padding-top: 70px;
  }

  #about {
    padding-bottom: 10px;
  }

  #ratecard {
    padding-bottom: 30px;
    padding-top: 60px;
  }

  #reviews {
    padding-top: 30px;
  }

  /* General Styling */
  .expertise-section {
    padding: 50px 20px 0 0;
    text-align: center;
    background-color: #f9f9f9;
  }

  .section-header h2 {
    font-family: "Poppins", sans-serif;
    /* Match About section */
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
  }

  /* Grid Layout */
  .articles-container {
    display: grid;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;

  }



  /* Article Styling */
  .article-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 4px 12px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
  }

  .article-wrapper:hover {
    transform: translateY(-5px);
  }

  /* Image Styling */
  figure {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 16px 0;
  }

  figure img {
    width: 100px;
    /* Slightly larger but still rounded */
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
  }

  /* Typography */
  .article-body h2 {
    font-family: "Poppins", sans-serif;
    /* Match About section */
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    transition: color 0.3s ease-out;
    padding: 10px 0;
    text-align: center;
  }

  .article-body ul {
    list-style-type: none;
    padding: 0;
    font-family: "Poppins", sans-serif;
    /* Match About section */
    font-size: 1.5rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;

  }

  .article-body ul li {
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    text-align: center;
  }

  .article-body ul li::before {
    content: "->";
    color: #28666e;
    position: absolute;
    left: 0;
    font-weight: bold;
  }

  /* Hover Effects */
  .article-wrapper:hover h2 {
    color: #28666e;
  }

  /* Responsive Design */
  @media screen and (max-width: 960px) {
    .articles-container {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
  }

  .single-how-works-icon i {
    font-size: 24px;
    color: #008080;
  }


  .single-blog-item-txt {
    padding: 30px;
    /* Increase padding */
    background: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 4px 12px;
    text-align: center;
    width: 350px;
    /* Increase width */
    min-height: 450px;
    /* Set minimum height */
  }

  .single-blog-item-txt h2 a {
    font-size: 2rem;
    /* Increase title size */
    font-weight: 700;
    color: #333;
    text-decoration: none;
  }

  /*Rate Card Styling*/

  .price {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    /* Increase font size */
    font-weight: 500;
    color: #222;
    line-height: 1.6;
    padding: 20px 0;
  }

  .price sup {
    font-size: 2.5rem;
    /* Make ₹ bigger */
    vertical-align: super;
  }

  .price span {
    font-size: 5rem;
    /* Make price bigger */
  }

  .single-blog-item-txt p {
    font-size: 1.5rem;
    /* Increase paragraph text size */
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  hr {
    width: 60%;
    /* Adjust line width */
    margin: 15px auto;
    border: 1px solid #ddd;
  }

  .view-sample {
    background-color: #5F9EA0;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    width: clamp(150px, 30%, 250px);
    /* Responsive width */
  }


  .view-sample:hover {
    background-color: #008080;
  }



  /*package-rate-section*/
  .package-rate-section {
    background-color: #f9f9f9;
    padding: 30px 30px 0 30px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }

  .package-rate-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .package-rate-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .package-rate-section p {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.9;
  }

  .bold {
    font-weight: 600;
  }

  .note {
    font-weight: 500;
    color: #c0392b;
  }

  .highlight {
    font-weight: 700;
    color: #008080;
  }



  /*Contact Style*/
  .contact-heading {
    padding-bottom: 50px;
    padding-top: 70px;


  }

  .contact-image img {
    border-radius: 12px;
    max-height: px;
    object-fit: cover;
    width: 100%;
  }


  /* Contact Info Styles */

  .contact-info {
    margin-bottom: 30px;
  }

  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .info-item i {
    color: #5F9EA0;
    /* Bootstrap danger color */
    font-size: 2rem;
    min-width: 30px;
    margin-top: 4px;
  }

  .info-item h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
  }

  .info-item p {
    margin: 0;
    font-size: 15px;
    color: #555;
  }

  /* Form Styling */
  .contact-content .form-label {
    font-weight: 600;
    color: #333;
  }

  .contact-content input.form-control {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px 15px;
    font-size: 15px;
    margin-bottom: 15px;
  }

  .contact-content input.form-control:focus {
    
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  }

  /* Submit Button */
  .contact-content .btn-danger {
    border-radius: 6px;
    font-weight: 600;
    padding: 10px 20px;
    transition: 0.3s ease;
    margin-top: 10px;
      color: #fff;
    background-color: #5F9EA0;
    border-color: #5F9EA0;
  }
  
  


  .contact-content .btn-danger:hover {
    background-color: #008080;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .info-item {
      align-items: flex-start;
    }
  }

  .scroll a span {
    text-underline-offset: 4px;
    font-weight: 600;
    color: #000;
    background-color: #40BFBF;
    transition: color 0.3s ease;
    padding: 2px 8px;
    border-radius: 6px;
    /* Add rounded corners */
  }

  .scroll a span:hover {
    text-underline-offset: 4px;
    background-color: #008080;
    /* Slightly darker red for hover effect */
    color: #fff;
    /* Optional: white text on hover for contrast */
    cursor: pointer;
  }

  /*model for registration page*/

  /* Modal Overlay */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    overflow-y: auto;
  }

  /* Modal Box */
  .auth-modal {
    background: #fff;
    width: 100%;
    max-width: 500px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeInScale 0.3s ease-in-out;
    box-sizing: border-box;
  }

  /* Modal Heading */
  .auth-modal h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
    color: #333;
  }

  /* Input Fields */
  .auth-modal form input {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f8f8f8;
    font-size: 15px;
    transition: all 0.3s;
    box-sizing: border-box;
  }

  /* Focused Input */
  .auth-modal form input:focus {
    border-color: #5d9cec;
    background: #fff;
    outline: none;
  }

  /* Error State */
  input.error {
    border-color: red !important;
    background-color: #ffe6e6;
  }

  /* Terms & Conditions Checkbox */
  .auth-modal .checkbox {
    display: flex;
    align-items: flex-start;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
    flex-wrap: wrap;
  }

  .auth-modal .checkbox input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 3px;
    flex-shrink: 0;
  }

  .auth-modal .checkbox label {
    flex: 1;
    cursor: pointer;
  }

  .auth-modal .checkbox label a {
    color: #5d9cec;
    text-decoration: none;
    font-weight: 500;
  }

  .auth-modal .checkbox label a:hover {
    text-decoration: underline;
  }

  /* Submit Button */
  .auth-modal button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #5d9cec;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .auth-modal button:hover {
    background-color: #4a8ad4;
  }

  /* Link Paragraph */
  .auth-modal p {
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Login Link */
  .auth-modal p a {
    color: #5d9cec;
    font-weight: bold;
    text-decoration: none;
  }

  .auth-modal p a:hover {
    text-decoration: underline;
  }

  /* Modal Close Button */
  .modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .modal-close:hover {
    color: #000;
  }

  /* Animation */
  @keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: scale(0.95);
    }

    100% {
      opacity: 1;
      transform: scale(1);
    }
  }


  /* Profile Image Styling */
  .profile-image {
    position: relative;
    display: inline-block;
    margin: 20px 0;
  }

  #profileImg {
    width: 50px;
    height: 50px;
    border-radius: 95%;
    object-fit: cover;
    /* ensures full fit with cropping */
    cursor: pointer;
  }


  .profile-card {
    display: none;
    position: absolute;
    top: 66px;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px 15px;
    width: 200px;
    z-index: 999;
  }

  .profile-placeholder {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
  }

  /* Style inside the card */
  .profile-card a {
    text-decoration: none;
    color: #333;
    display: block;
    margin: 5px 0;
  }

  .profile-card a:hover {
    color: #008080;
  }

  /* Responsive Fix */

  @media (max-width: 768px) {
    .profile-card {
      right: 10px;
      left: auto;
      bottom: 10px;
      width: 80vw;
      height: 50vw;
 
    }
  }
     @media (max-width: 480px) {
  .profile-card {
    right: 5px;
    bottom: 5px;
    width: 90vw;
    height: 60vw;
  }
}


  /*Modal close Profile image    */

  /* ---------- Responsive Media Queries ---------- */

  /* Tablets and below */
  @media (max-width: 768px) {
    .auth-modal {
      padding: 20px;
      max-width: 90%;
    }

    .auth-modal h2 {
      font-size: 22px;
    }

    .auth-modal form input {
      font-size: 14px;
      padding: 10px 12px;
    }

    .auth-modal button {
      font-size: 15px;
      padding: 10px;
    }

    .auth-modal .checkbox {
      font-size: 12px;
    }
  }

  /*responsive for profile*/



  /* Phones and small screens */
  @media (max-width: 480px) {
    .auth-modal {
      padding: 16px;
    }

    .auth-modal h2 {
      font-size: 20px;
    }

    .auth-modal form input {
      font-size: 13px;
      padding: 9px 11px;
    }

    .auth-modal button {
      font-size: 14px;
      padding: 10px;
    }

    .modal-close {
      font-size: 22px;
      top: 10px;
      right: 12px;
    }
  }

  /*responsive for profile*/


  /* Ultra small screens */
  @media (max-width: 360px) {
    .auth-modal {
      padding: 14px;
    }

    .auth-modal h2 {
      font-size: 18px;
    }

    .auth-modal button {
      font-size: 13px;
    }

    .auth-modal form input {
      font-size: 12px;
    }

  }