:root {
    --primary-color: #0041f5;
    --secondary-color: #f5f7ff;
    --text-color: #333;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-color);
}
a{
    text-decoration: none;
}

.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-wiki {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

/* Navigation Menu */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Services Grid - 3 Cards Layout */
.services-grid.three-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* About Us Section Styles */
.about-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}

.about-image {
  flex: 0 0 40%;
}

.image-container {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: rgba(0, 65, 245, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0, 65, 245, 0.1);
}

.about-icon {
  font-size: 120px;
  color: var(--primary-color);
  opacity: 0.8;
}

.about-text {
  flex: 0 0 60%;
}

.about-text h3 {
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  color: var(--primary-color);
  font-size: 16px;
}

.feature span {
  font-size: 15px;
  color: #555;
}

.cta-container {
  margin-top: 20px;
}

.about-cta-btn {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
}

.about-cta-btn:hover {
  background-color: #0034c9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 65, 245, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-image, .about-text {
    flex: 0 0 100%;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
   .container {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    overflow-x: hidden;
  }
  
  .services-grid.three-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }
  
  .service-card {
    padding: 15px 8px;
    width: 100%;
  }
  
  .service-card h3 {
    font-size: 14px;
    margin-bottom: 0;
  }
  
  /* Hide description text on mobile */
  .service-card p {
    display: none;
  }
  
  .service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }
  
  .service-icon i {
    font-size: 18px;
  }
  
  .nav-menu {
    gap: 15px;
  }
  
  .nav-link {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  /* Hide main navigation on mobile */
  .main-nav {
    display: none;
  }
  
  /* Make logo text layout vertical for mobile */
  .logo-text {
    flex-direction: column;
    align-items: center;
  }
  
  .logo {
    font-size: 22px;
  }
  
  .logo-wiki {
    font-size: 12px;
    margin-top: 2px;
  }
}

@media (max-width: 576px) {
 .services-grid.three-cards {
    gap: 5px;
  }
  
  .service-card {
    padding: 10px 5px;
    border-radius: 8px;
  }
  
  .service-card h3 {
    font-size: 11px;
    margin-bottom: 0;
    text-align: center;
  }
  
  .service-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-icon i {
    font-size: 14px;
  }
  
  /* Fix container width to prevent scroll */
  .services-section .container {
    max-width: 100%;
    padding: 0 8px;
  }

  
  .logo {
    font-size: 20px;
  }
  
  .logo-wiki {
    font-size: 11px;
  }
  
  .about-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .about-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .feature span {
    font-size: 13px;
  }
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info a{
    color : var(--text-color)
}

.contact-info a:hover{
    color : var(--primary-color)
}

.contact-info div {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Main Container Styles */
.main-container {
    margin-top: 64px;
    padding: 20px 5%;
    min-height: calc(60vh);
    /* min-height: calc(100vh - 64px); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(135deg, #f5f7ff 0%, #e3e8ff 100%); */
    transition: all 0.3s ease;
}

.search-container {
    width: 100%;
    max-width: 700px;
    position: relative;
    transition: all 0.5s ease;
    z-index: 1000; /* Ensure search container has high z-index */
}

.search-container.expanded {
    max-width: 100%;
    margin-bottom: 20px;
    z-index: 1001; /* Higher z-index when expanded */
}
.search-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 18px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 65, 245, 0.1);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 5px 20px rgba(0, 65, 245, 0.2);
}

.search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #0034c9;
}

.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1002; /* Highest z-index for suggestions */
    border: 1px solid #ddd;
    border-top: none;
}

.suggestions.active {
    max-height: 350px; /* Increased max-height */
    overflow-y: auto; /* Enable scrolling */
    padding: 0; /* Remove padding to avoid layout issues */
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.suggestion-loading, 
.suggestion-empty {
    padding: 15px 20px;
    text-align: center;
    color: #666;
    font-style: italic;
    font-size: 14px;
}

.suggestion-loading {
    position: relative;
}

.suggestion-loading:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    right: 20px;
    top: 50%;
    margin-top: -8px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Map Styles */
.map-container {
    width: 100%;
    height: 500px;
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    margin-top: 20px;
}

.map-container.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

#map {
    width: 100%;
    height: 100%;
}

/* Property Info Styles */
.property-info {
    background-color: var(--white);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    width: 100%;
    display: none;
}

.property-info.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.property-info h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.property-info p {
    margin-bottom: 8px;
}

.property-info .value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.value-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Get Documents Button */
.btn-documents {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-documents:hover {
    background-color: #0034c9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 65, 245, 0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 10% auto;
    padding: 25px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.4s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 65, 245, 0.1);
}

.error-message {
    color: #e53935;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    min-height: 20px;
}

.form-group input.error {
    border-color: #e53935;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #0034c9;
}
.description {
    position: relative;
    margin-bottom: 40px;
    z-index: 1; /* Lower z-index than search */
}

.description .section-header {
    margin-bottom: 0;
}

.description h2 {
    font-size: 42px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.description p {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.reset-search-btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: none; /* Initially hidden */
    z-index: 10;
}

.reset-search-btn:hover {
    background-color: rgba(0, 65, 245, 0.1);
}

.reset-search-btn:focus {
    outline: none;
}

.reset-search-btn i {
    font-size: 18px;
}

/* Show reset button when search is expanded */
.search-container.expanded .reset-search-btn {
    display: block;
}

/* Adjust padding of search input when expanded to accommodate reset button */
.search-container.expanded .search-input {
    padding-left: 50px;
}

/* Add explicit search container positioning */
.search-container {
    position: relative;
    /* Rest of your existing styles */
}
#thankYouMessage {
    text-align: center;
}

#thankYouMessage h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

#thankYouMessage p {
    margin-bottom: 15px;
    font-size: 16px;
}


/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add these styles to your style.css file */

/* Services Section */
.services-section {
    padding: 20px 0;
    background-color: var(--white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 26px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 65, 245, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon.purple {
    background-color: rgba(0, 65, 245, 0.1);
    color: var(--primary-color);
}

.service-icon i {
    font-size: 28px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Add these styles to your style.css file */

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 60px 0 20px;
    border-top: 1px solid #eaeaea;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 100%;
    max-width: 250px;
    margin-bottom: 30px;
}

.footer-logo .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.footer-logo .logo-kannada {
    font-size: 18px;
    color: var(--primary-color);
    opacity: 0.8;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 0 0 30%;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.contact-info-footer li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
}

.contact-info-footer li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.social-links {
    display: flex;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #666;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #0034c9;
}

/* Styles for clear mode */
.search-btn.clear-mode {
    background-color: #e3e3e3;
    color: #555;
}

.search-btn.clear-mode:hover {
    background-color: #d1d1d1;
    color: #333;
}

/* Animation for icon transition */
.search-btn i {
    transition: transform 0.3s ease;
}

.search-btn.clear-mode i {
    transform: rotate(90deg);
}

/* Ensure button focus styles are clean */
.search-btn:focus {
    outline: none;
}

.suggestion-loading, 
.suggestion-empty {
    padding: 15px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.suggestion-loading {
    position: relative;
}

.suggestion-loading:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    right: 20px;
    top: 50%;
    margin-top: -10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Improve suggestion display */
.suggestion-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 40px;
}

/* Make sure the reset button is positioned correctly */
.search-container {
    position: relative;
}

/* API Error state */
.search-input.api-error {
    border: 1px solid #ff5252;
}

.api-error-message {
    color: #ff5252;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}
.search-btn.disabled {
    background-color: #c7c7c7;
    cursor: not-allowed;
    opacity: 0.7;
}

.search-btn.disabled:hover {
    background-color: #c7c7c7;
}

/* Add a minimum character notice */
.search-container {
    position: relative;
}

.min-char-notice {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #777;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-container.show-notice .min-char-notice {
    opacity: 1;
}

/* Adjust input placeholder style */
.search-input::placeholder {
    color: #999;
    transition: color 0.3s ease;
}

.search-input:focus::placeholder {
    color: #bbb;
}

/* Character count badge */
.char-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-btn .char-count-badge.active {
    opacity: 1;
}

.formDescription{
    color:gray;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* .footer-content {
        flex-direction: column;
    } */

    .services{
      display: none;
    }
    
    .footer-logo {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 15px;
    }
    
    .footer-column h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column {
        text-align: center;
    }
}

/* Stamp Duty Calculator Styles */
.calculator-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 30px 0;
  }
  
  .calculator-section.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }
  
  .calculator-wrapper {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 1000px;
    margin: auto;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
  }
  
  .calculator-header {
    padding: 10px 15px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 10;
    border-radius: 12px 12px 0 0;
  }
  
  .calculator-header h2 {
    font-size: 28px;
    color: var(--text-color);
    margin: 0;
    font-weight: 700;
  }
  
  .close-calculator {
    background: transparent;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .close-calculator:hover {
    background-color: #f5f5f5;
    color: #555;
  }
  
  .calculator-content {
    padding: 30px;
  }
  
  .calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  /* Left side - Info and Rates */
  .calculator-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .important-note {
    background-color: #f8f9ff;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    display: flex;
    gap: 15px;
  }
  
  .note-icon {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
  }
  
  .note-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
  }
  
  .note-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
  }
  
  .rates-table h3 {
    margin: 0 0 20px 0;
    font-size: 22px;
    font-weight: 600;
  }
  
  .table-responsive {
    overflow-x: auto;
  }
  
  .rates-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  
  .rates-table th,
  .rates-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #eaeaea;
  }
  
  .rates-table th {
    background-color: #f5f7ff;
    font-weight: 600;
    color: var(--text-color);
  }
  
  .rates-table tr:nth-child(even) {
    background-color: #fafafa;
  }
  
  /* Right side - Calculator Form */
  .calculator-form {
    background-color: #f8f9ff;
    border-radius: 12px;
    padding: 25px;
  }
  
  .form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .form-header i {
    color: var(--primary-color);
    font-size: 24px;
  }
  
  .form-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
  }
  
  .tooltip-icon {
    color: #888;
    font-size: 14px;
    cursor: help;
    position: relative;
  }
  
  .tooltip-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 100;
  }
  
  .tooltip-icon:hover::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    z-index: 100;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 65, 245, 0.1);
  }
  
  .calculate-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
  }
  
  .calculate-btn:hover {
    background-color: #0034c9;
  }
  
  .result-box {
    margin-top: 25px;
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }
  
  .result-box h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #555;
    font-weight: 500;
  }
  
  .result-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .result-rate {
    margin: 0;
    color: #666;
    font-size: 14px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .calculator-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .calculator-header h2 {
      font-size: 24px;
    }
  }
  
  @media (max-width: 768px) {
    .calculator-wrapper {
      width: 95%;
    }
    
    .calculator-header {
      padding: 20px;
    }
    
    .calculator-content {
      padding: 20px;
    }
    
    .important-note {
      flex-direction: column;
      gap: 10px;
    }
    
    .rates-table {
      font-size: 14px;
    }
    
    .result-amount {
      font-size: 36px;
    }
  }
  
  @media (max-width: 480px) {
    .calculator-header h2 {
      font-size: 20px;
    }
    
    .close-calculator {
      font-size: 20px;
      width: 32px;
      height: 32px;
    }
    
    .form-header h3 {
      font-size: 18px;
    }
    
    .result-amount {
      font-size: 32px;
    }
  }

  .main-container {
    overflow: visible; /* Change from hidden to visible */
    position: relative;
}

.background-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Zamindar.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
}

/* Optional overlay */
.background-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 247, 255, 0.6) 0%, rgba(227, 232, 255, 0.6) 100%);
}

/* Add these styles to your CSS file to improve the info window appearance */

/* Custom styles for Google Maps info window */
.gm-style .gm-style-iw-c {
    padding: 12px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 65, 245, 0.2) !important;
  }
  
  .gm-style .gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 !important;
  }
  
  .gm-style .gm-style-iw-t::after {
    background: linear-gradient(45deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%) !important;
    box-shadow: -2px 2px 2px 0 rgba(178, 178, 178, 0.4) !important;
  }
  
  /* Info window content styling */
  .info-window {
    font-family: 'Open Sans', sans-serif;
    padding: 5px;
  }
  
  .info-window h3 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
  }
  
  .info-window p {
    margin: 5px 0;
    font-size: 14px;
    color: #444;
  }
  
  /* Custom map height for better visibility */
  .map-container {
    height: 400px;
  }
  
  #map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  
  /* Custom marker bounce animation */
  @keyframes markerBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }
  
  /* Custom pin size in mobile */
  @media (max-width: 768px) {
    .map-container {
      height: 350px;
    }
  }
  .service-card.active {
    background-color: rgba(0, 65, 245, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 65, 245, 0.15);
    transform: translateY(-10px);
  }
  
  .service-card.active .service-icon {
    background-color: rgba(0, 65, 245, 0.2);
  }
  
  .service-card.active h3 {
    color: var(--primary-color);
  }
  
  /* Prevent multiple service cards from being clickable when documents section is open */
  body.documents-open .service-card:not(.active) {
    pointer-events: none;
    opacity: 0.7;
  }
  
  /* Add transition for opacity change */
  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, 
                border-color 0.3s ease, opacity 0.3s ease;
  }
  
  /* Focus styles for accessibility */
  .service-card:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  /* Make the cards look clickable */
  .service-card {
    cursor: pointer;
    position: relative;
  }
  
  .service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    border-radius: 10px;
  }
  
  .service-card:hover::after {
    background-color: rgba(0, 65, 245, 0.03);
  }
  
  .service-card.active::after {
    background-color: transparent;
  }

  /* CSS for Full Page Documents Section */

/* Full page layout */
.documents-section.fullpage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 249, 250, 0.98);
    z-index: 2000;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    transition: all 0.4s ease-in-out;
  }
  
  .documents-section.fullpage.collapsed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  .documents-section.fullpage .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    height: 100%;
  }
  
  .documents-section.fullpage .documents-wrapper {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: auto;
    min-height: 90%;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
  }
  
  /* Header with close button */
  .documents-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--primary-color);
    color: white;
  }
  
  .documents-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
  }
  
  .close-documents-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  
  .close-documents-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  /* Grid layout */
  .documents-section.fullpage .documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
    height: 100%;
  }
  
  /* Form side */
  .documents-form h3,
  .sample-record h3 {
    font-size: 22px;
    color: var(--text-color);
    margin: 0 0 10px 0;
    font-weight: 600;
  }
  
  .documents-form {
    padding-right: 20px;
  }
  
  /* Sample record side */
  .sample-record {
    padding-left: 20px;
    border-left: 1px solid #eaeaea;
  }
  
  /* Additional styling for fullpage layout */
  .documents-section.fullpage .property-record-card {
    margin-top: 30px;
    max-width: 500px;
  }
  
  .documents-section.fullpage .form-group label {
    font-size: 16px;
  }
  
  .documents-section.fullpage .input-with-icon input,
  .documents-section.fullpage .phone-input-container input,
  .documents-section.fullpage .country-code {
    padding: 15px;
    font-size: 16px;
  }
  
  .documents-section.fullpage .btn-submit {
    padding: 15px 20px;
    font-size: 18px;
    margin-top: 20px;
  }
  
  /* Animation */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .documents-section.fullpage:not(.collapsed) {
    animation: fadeIn 0.4s ease-in-out;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .documents-section.fullpage .documents-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .documents-form {
      padding-right: 0;
      border-bottom: 1px solid #eaeaea;
      padding-bottom: 30px;
    }
    
    .sample-record {
      padding-left: 0;
      border-left: none;
    }
  }
  
  @media (max-width: 768px) {
    .documents-section.fullpage .container {
      padding: 10px;
    }
    
    .documents-header {
      padding: 15px 20px;
    }
    
    .documents-header h2 {
      font-size: 20px;
    }
    
    .documents-section.fullpage .documents-grid {
      padding: 20px;
      gap: 30px;
    }
    
    .documents-form h3,
    .sample-record h3 {
      font-size: 18px;
    }
    
    .documents-section.fullpage .property-record-card {
      margin-top: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .documents-section.fullpage .documents-wrapper {
      margin: 10px 0;
      min-height: 95%;
    }
    
    .documents-section.fullpage .documents-grid {
      padding: 15px;
      gap: 20px;
    }
    
    .documents-header {
      padding: 12px 15px;
    }
    
    .documents-form,
    .sample-record {
      padding: 5px;
    }
  }

  /* CSS for Official Documents Section */

.documents-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    margin-top: 50px;
    border-top: 1px solid #eaeaea;
    transition: all 0.5s ease;
    overflow: hidden;
    max-height: 3000px; /* Large enough to contain content */
  }
  
  .documents-section.collapsed {
    max-height: 0;
    padding: 0;
    border-top: none;
  }
  
  .documents-wrapper {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  
  .documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  
  /* Form Styles */
  .documents-form {
    padding: 30px;
    border-right: 1px solid #eaeaea;
  }
  
  .documents-form h2 {
    font-size: 24px;
    color: var(--text-color);
    margin: 0 0 10px 0;
    font-weight: 600;
  }
  
  .section-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
  }
  
  /* Fixed CSS for input with icon to prevent collision */

.input-with-icon {
    position: relative;
  }
  
  .input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 18px;
    pointer-events: none; /* Make sure icon doesn't interfere with input */
  }
  
  .input-with-icon input {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Increased left padding to make room for icon */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.3s ease;
  }
  .input-with-icon textarea {
    width: 100%;
    padding: 6px 5px 2px 10px; /* Increased left padding to make room for icon */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.3s ease;
  }
  
  .input-with-icon input::placeholder {
    color: #999;
    /* Ensure placeholder doesn't overlap with icon */
    padding-left: 5px; /* Additional spacing from the icon */
  }
  
  /* For Safari/iOS which might render differently */
  @supports (-webkit-touch-callout: none) {
    .input-with-icon input {
      padding-left: 45px;
    }
    
    .input-with-icon i {
      left: 15px;
    }
  }
  
  /* Fix for Firefox which might need different padding */
  @-moz-document url-prefix() {
    .input-with-icon input {
      padding-left: 45px;
    }
  }
  
  .input-with-icon input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 65, 245, 0.1);
  }
  
  .phone-input-container {
    display: flex;
    align-items: center;
  }
  
  .country-code {
    background-color: #f5f5f5;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #444;
    font-weight: 500;
  }
  
  .phone-input-container input {
    flex: 1;
    border-radius: 0 8px 8px 0;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: border 0.3s ease;
  }
  
  .phone-input-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 65, 245, 0.1);
  }
  
  .btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .btn-submit:hover {
    background-color: #0034c9;
  }
  
  .btn-submit i {
    font-size: 18px;
  }
  
  /* Sample Record Styles */
  .sample-record {
    padding: 30px;
    background-color: #fff;
  }
  
  .sample-record h2 {
    font-size: 24px;
    color: var(--text-color);
    margin: 0 0 10px 0;
    font-weight: 600;
  }
  
  .property-record-card {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
  }
  
  .property-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
  }
  
  .property-value {
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    border-bottom: 1px solid #eaeaea;
  }
  
  .property-details {
    padding: 20px;
  }
  
  .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
  }
  
  .detail-row:last-child {
    border-bottom: none;
  }
  
  .detail-label {
    font-weight: 500;
    color: #555;
  }
  
  .detail-value {
    font-weight: 600;
    color: #333;
  }
  
  .additional-documents {
    padding: 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
  }
  
  .additional-documents h3 {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: #444;
    font-weight: 600;
  }
  
  .additional-documents ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .additional-documents li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #555;
  }
  
  .additional-documents li i {
    color: var(--primary-color);
    margin-right: 10px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .documents-grid {
      grid-template-columns: 1fr;
    }
    
    .documents-form {
      border-right: none;
      border-bottom: 1px solid #eaeaea;
    }
  }
  
  @media (max-width: 768px) {
    .documents-section {
      padding: 30px 0;
    }
    
    .documents-form,
    .sample-record {
      padding: 20px;
    }
    
    .property-header,
    .property-value {
      font-size: 20px;
    }
    
    .detail-row {
      flex-direction: column;
      gap: 5px;
    }
    
    .detail-value {
      text-align: right;
    }
  }
  
  @media (max-width: 480px) {
    .documents-section {
      padding: 20px 0;
    }
    
    .documents-form h2,
    .sample-record h2 {
      font-size: 20px;
    }
    
    .section-subtitle {
      font-size: 14px;
    }
    
    .property-record-card {
      margin-top: 15px;
    }
  }

  /* CSS to highlight only the Official Documents service card */

  #officialDocsCard {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

#officialDocsCard h3 {
  color: white;
}

#officialDocsCard p {
  color: rgba(255, 255, 255, 0.9);
}

#officialDocsCard .service-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

  /* Mobile Bottom Navigation Styles */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 8px 0;
  grid-template-columns: repeat(4, 1fr);
}

.mobile-nav-item {
  text-align: center;
}

.mobile-nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #666;
  font-size: 12px;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item a:active,
.mobile-nav-item a:focus {
  color: var(--primary-color);
}

.mobile-nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
}

.mobile-nav-item span {
  font-size: 11px;
  font-weight: 500;
}

.mobile-nav-item.active a {
  color: var(--primary-color);
}

/* Show mobile nav only on mobile devices */
@media (max-width: 768px) {
  .mobile-nav {
    display: grid;
  }
  
  /* Add padding to body to prevent content from being hidden behind the nav */
  body {
    padding-bottom: 60px;
  }
  
  /* Adjust other containers to account for bottom nav */
  .footer {
    margin-bottom: 60px;
  }
}

/* Active state animations */
.mobile-nav-item a:active i {
  transform: scale(0.9);
}

/* Accessibility focus styles */
.mobile-nav-item a:focus {
  outline: none;
}

.mobile-nav-item a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 4px;
}


/* News Ticker Styles - Add these to your CSS file */

.news-ticker-container {
  position: relative;
  width: 300px;
  max-width: 100%;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 370px;
}

.news-ticker-header {
  background-color: #0041f5;
  color: white;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-ticker-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.news-ticker-header i {
  font-size: 18px;
}

.news-ticker-wrapper {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.news-ticker {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.news-ticker-content {
  position: absolute;
  width: 100%;
  animation: ticker 30s linear infinite;
  display: flex;
  flex-direction: column;
}

.news-ticker-content:hover {
  animation-play-state: paused;
}

.news-item {
  padding: 15px;
  border-bottom: 1px solid #eee;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.news-item p.highlight {
  font-weight: 600;
  color: #0041f5;
}

@keyframes ticker {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* For desktop layout - position on the right side */
@media (min-width: 992px) {
 
  .news-ticker-container {
    position: absolute;
    right: 20px;
    top: 50px;
    width: 300px;
    margin: 0;
  }
  
  /* Alternative left-side positioning (comment out the above and uncomment this if you prefer left side) */
  /*
  .news-ticker-container {
    position: absolute;
    left: 20px;
    top: 100px;
    width: 300px;
    margin: 0;
  }
  
  .search-container {
    margin-left: auto;
    flex: 1;
    min-width: 300px;
  }
  */
}

/* For tablet layout */
@media (min-width: 768px) and (max-width: 991px) {
  .news-ticker-container {
    width: 250px;
    margin: 20px auto;
  }
}

/* For mobile layout */
@media (max-width: 767px) {
  .news-ticker-container {
    width: 90%;
    margin: 20px auto;
    height: 300px;
    
  }

  .news-ticker-container-mobile{
    width: 90%;
    
    height: 300px;
    position: relative;
    width: 380px;
    max-width: 100%;
    margin: 10px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
   
  }
  
  .news-ticker-wrapper {
    height: 250px;
  }
}