:root {
    --jumbotron-padding-y: 3rem;
  }

  * {
      font-family: 'Manrope', sans-serif;
  }

  /* Reduce horizontal padding for all containers */
  .container, .container-fluid {
    padding-left: 1%;
    padding-right: 1%;
    min-width:90%;
    overflow-x: hidden;

  }

  /* Keep navbar padding as it was */
  .navbar .container-fluid {
    padding-left: initial;
    padding-right: initial;
  }

  .jumbotron {
    padding-top: var(--jumbotron-padding-y);
    padding-bottom: var(--jumbotron-padding-y);
    margin-bottom: 0;
    background-color: #fff;
  }

  .jumbotron-heading {
    font-weight: 300;
  }

  /* Reduce horizontal padding for pricing header */
  .pricing-header {
    max-width: 700px;
    padding-left: 1%;
    padding-right: 1%;
  }

  .box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
  }

  .card-deck .card {
    min-width: 220px;
  }

  .border-top { border-top: 1px solid #e5e5e5; }
  .border-bottom { border-bottom: 1px solid #e5e5e5; }

  footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  footer p {
    margin-bottom: .25rem;
  }

  .navbar-dark .navbar-nav .nav-link {
      color: #E8E0D2 ;
      font-weight: 500;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover {
      color: white;
  }
  
  /* Dropdown styling */
  .dropdown-menu {
      border-radius: 10px;
      border: none;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
      padding: 10px;
      display: none;
  }
  
  .dropdown-item {
      padding: 8px 20px;
      color: #333;
  }
  
  .dropdown-item:hover {
      background-color: #f8f9fa;
  }
  
  /* Show dropdown on hover */
  .nav-item.dropdown:hover .dropdown-menu {
      display: block;
  }
  
  /* Remove dropdown toggle arrow */
  .nav-link::after {
      display: none !important;
  }
  
  /* Enquire Now button */
  .enquire-btn {
      padding: 7px 12px;
      font-weight: 500;
      transition: all 0.3s ease;
  }
  
  .enquire-btn:hover {
      background-color: white !important;
      color: black !important;
  }

  .nav-item:not(.has-dropdown) .custom-dropdown {
      display: none !important;
  }

  /* Make sure regular nav items have higher z-index when not dropdown items */
  .nav-item:not(.has-dropdown) {
      position: relative;
      z-index: 1001;
  }

  /* Ensure dropdown only shows on hover for dropdown items */
  .has-dropdown:hover .custom-dropdown {
      display: block;
  }

  .custom-dropdown {
      position: absolute;
      top: 60%;
      left: 5%;
      right: 0;
      background-color: white;
      border-radius: 15px;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
      padding: 20px 50px;
      margin-top: 10px;
      display: none;
      z-index: 1000;
      width:90%;
  }
  
  .dropdown-header-line {
      position: absolute;
      top: 10%;
      left: 5%;
      right: 5%;
      height: 3px;
      background-color: #FF655D;
  }
  
  .dropdown-content {
      padding: 0 30px;
  }
  
  .dropdown-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: #333;
      margin: 0;
      padding-top: 8px;
  }
  
  .dropdown-columns {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
  }

  .dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
  }
  
  .dropdown-column {
    display: flex;
    flex-direction: column;
  }
  
  .dropdown-item {
      padding: 8px 0;
      color: #333;
      text-decoration: none;
      transition: all 0.2s;
  }
  
  .dropdown-item:hover {
      color: #FF655D;
      background-color: transparent;
  }
  
  .consultation-column {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 96%;
  }
  
  .consultation-spacer {
      flex-grow: 1;
  }
  
  .consultation-link {
      display: flex;
      align-items: center;
      color: #FF655D;
      text-decoration: none;
      font-weight: 500;
      white-space: nowrap;
  }
  
  .consultation-link svg {
      margin-left: 5px;
      transition: transform 0.2s;
  }
  
  .consultation-link:hover svg {
      transform: translateX(3px);
  }
  
  /* Show dropdown on hover */
  .nav-item.has-dropdown:hover .custom-dropdown, .dropdown-wrapper, .navbar, .container-fluid
  .custom-dropdown:hover {
    display: block;
  }

  /* Reduce horizontal padding for contact section */
  .contact-section {
    background-color: #011226;
    color: #E8E0D2;
    padding: 40px 1%;
    margin: 0px;
  }

  .contact-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1%;
  }

  .contact-section h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: left;
  }

  .contact-form {
    width: 100%;
    /* Add clearfix to contain floated elements */
    overflow: hidden;
  }

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

  .form-group {
    flex: 1;
    text-align: left;
  }

  .contact-form input,
  .contact-form textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #E8E0D2;
    color: #E8E0D2;
    width: 100%;
    padding: 12px 0;
    margin-top: 5px;
    outline: none;
  }

  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form input:hover,
  .contact-form textarea:hover {
    border-bottom: 1px solid #E8E0D2;
    box-shadow: none;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #E8E0D2;
    opacity: 0.8;
  }

  .contact-form textarea {
    min-height: 120px;
    resize: vertical;
  }

  /* Button container for proper alignment */
  .submit-container {
    text-align: right;
    margin-top: 15px;
    padding-bottom: 20px; /* Add bottom padding to ensure spacing */
  }

  .submit-btn {
    background-color: #FF655D;
    color: white;
    border: none;
    padding: 10px 80px;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block; /* Remove float, use inline-block */
  }

  .submit-btn:hover {
    background-color: white !important;
    color: black !important;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .submit-container {
      text-align: center;
    }
    
    .submit-btn {
      padding: 12px 60px;
      width: auto;
      max-width: 200px;
    }
  }

  @media (max-width: 480px) {
    .contact-section {
      padding: 30px 2%;
    }
    
    .contact-section .container {
      padding: 0 2%;
    }
    
    .submit-btn {
      padding: 12px 40px;
      font-size: 14px;
    }
  }
  
  /* Footer Styles with reduced padding */
  .main-footer {
    background-color: #011226;
    color: #E8E0D2;
    padding: 1rem 1% 1rem;
  }
  
  .main-footer .container {
    padding-left: 1%;
    padding-right: 1%;
  }
  
  .contact-info {
    margin-bottom: 1rem;
  }
  
  .contact-info a {
    color: #E8E0D2;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    color: #FF655D;
  }
  
  .social-icons {
    display: flex;
    gap: 12px;
    margin: 1rem 0;
  }
  
  .social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
  }
  
  .social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .footer-links {
    margin-bottom: 1.5rem;
  }
  
  .footer-links h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .footer-links ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    color: #E8E0D2;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .footer-links a:hover {
    color: #FF655D;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(232, 224, 210, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #E8E0D2;
  }
  
  .footer-bottom a {
    color: #E8E0D2;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    color: #FF655D;
  }
  .no-border-button:focus,
  .no-border-button:active,
  .no-border-button:hover {
        outline: none !important;
        box-shadow: none !important;
        border: none !important;
    }

  .mobile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
  }

  .mobile-modal.active {
    display: block;
  }

  .mobile-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .mobile-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 20px 20px 0 0;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
  }

  .mobile-modal.active .mobile-modal-content {
    transform: translateY(0);
  }

  .mobile-modal-header {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background-color: #011226;
    color: white;
    border-radius: 20px 20px 0 0;
  }

  .mobile-modal-header h5 {
    margin: 0;
    font-weight: 600;
    flex-grow: 1;
  }

  .mobile-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-modal-body {
    padding: 20px 25px 30px;
  }

  .mobile-menu-section {
    margin-bottom: 15px;
  }

  .mobile-menu-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #eee;
  }

  .mobile-menu-toggle:hover {
    color: #FF655D;
  }

  .mobile-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
  }

  .mobile-menu-toggle.active .mobile-arrow {
    transform: rotate(180deg);
  }

  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
    margin: 10px -10px 0;
    border-radius: 8px;
  }

  .mobile-submenu.active {
    max-height: 500px;
    padding: 15px;
  }

  .mobile-submenu h6 {
    color: #FF655D;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .mobile-submenu a {
    display: block;
    padding: 8px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }

  .mobile-submenu a:hover {
    color: #FF655D;
  }

  .mobile-submenu a:last-child {
    border-bottom: none;
  }

  .mobile-consultation {
    color: #FF655D !important;
    font-weight: 500;
    margin-top: 10px;
  }

  .mobile-direct-link {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
  }

  .mobile-direct-link:hover {
    color: #FF655D;
  }

  .mobile-actions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
  }

  .mobile-login-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    background-color: transparent;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
  }

  .mobile-enquire-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    background-color: #FF655D;
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
  }

  .mobile-login-btn:hover {
    background-color: #f8f9fa;
    color: #333;
  }

  .mobile-enquire-btn:hover {
    background-color: #e55a52;
    color: white;
  }

  /* Show mobile modal only on mobile and tablet portrait */
  /* @media (max-width: 991px) {
    .navbar-collapse {
      display: none !important;
    }
    
    .navbar-toggler {
      display: block !important;
    }
  } */

  /* Desktop styles remain unchanged */
  /* @media (min-width: 992px) {
    .mobile-modal {
      display: none !important;
    }
  } */

.simplebar-height-auto-observer-wrapper {
  display: none !important; /* or any customization */
}
.simplebar-height-auto-observer{
  display: none !important;
}



  .multi-line-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;       /* Change this to 2 or 3 lines as needed */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;            /* Optional: limit width */
  background-color: #f1c40f;
  color: #000;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  line-height: 1.4em;
}

  .text-danger {
      color: #dc3545;
  }

  .form-label {
      font-weight: 500;
      margin-bottom: 5px;
  }

  .form-control:focus {
      border-color: #007bff;
      box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }

  #callbackModal .modal-header {
      background-color: #f8f9fa;
      border-bottom: 1px solid #dee2e6;
  }

  #callbackModal .modal-title {
      color: #495057;
      font-weight: 600;
  }

  .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        padding: 12px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }

    .whatsapp-float:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        color: white;
        text-decoration: none;
    }

    .whatsapp-float img {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }
        50% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
        }
        100% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
        .whatsapp-float {
            bottom: 15px;
            right: 15px;
            padding: 10px 16px;
            font-size: 13px;
        }
        
        .whatsapp-float img {
            width: 20px;
            height: 20px;
        }
    }
   @media (max-width: 575.98px) { 
    .fs-7{
      font-size: 0.7rem !important;
      font-weight: 700 !important;
 }
.for-head{
  font-size: 1.2rem !important;
}}

/* Base (extra small screens, <576px) */
.fs-xs-6 { font-size: 1rem !important; }

/* Small screens (up to 575px) */
@media (max-width: 575.98px) {
  .fs-sm-3 { font-size: 0.75rem !important; }
  /* for the footer form */
   .custom-textarea {
    height: calc(2em * 2); /* approx 2 rows */
  }
  .submit-container{
    padding-bottom: none !important;
  }
  .custom-responsive-text {
    font-size: 0.875rem; /* fs-6 equivalent */
}

.custom-responsive-textarea {
        height: 2.25rem;  /* 2 rows on small screens */
    }
    .contact-form textarea {
    min-height: 0px;
    resize: vertical;
}

.redline h1{
      font-size: 1.6rem !important;
    }
    /* .redline  .register-text {
      font-size: 1.2rem !important;
    } */
     .redline p{
      font-size: 1rem !important;
     }

      .btn.custom-small {
    font-size: 0.75rem;  /* adjust as needed */
    padding: 0.25rem 0.5rem; /* optional: make it smaller */
  }
}

/* Medium screens (up to 767px) */
@media (min-width: 767.98px) {
  .fs-md-2 { font-size: 2rem !important; }
}

/* Large screens (up to 991px) */
@media (min-width: 991.98px) {
  .fs-lg-1 { font-size: 2.5rem !important; }
}

/* for the business registraion amount heading */

.register-text {
    font-size: 22px; 
    color: #ff5a5f;
    font-weight: 500;
  }

  /* Small screens (≥576px) */
  @media (min-width: 576px) {
    .register-text {
      font-size: 22px;
    }
    
  }

  /* Medium and above (≥768px) */
  @media (min-width: 768px) {
    .register-text {
      font-size: 25px;
    }
  }
  