/* Allium Towers Main Stylesheet - Minified Version */

:root {
    --primary-color: #8a6d3b;
    --secondary-color: #333;
    --light-color: #f8f8f8;
    --dark-color: #222;
    --accent-color: #d4af37;
    --text-color: #333;
    --light-text: #fff;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem
}

h1 {
    font-size: 3.5rem
}

h2 {
    font-size: 2.5rem
}

h3 {
    font-size: 1.75rem
}

h4 {
    font-size: 1.5rem
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}

p {
    margin-bottom: 1.5rem
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition)
}

a:hover {
    color: var(--accent-color)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-secondary)
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 2px solid var(--primary-color)
}

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

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--light-text)
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-text i {
    transition: var(--transition)
}

.btn-text:hover {
    color: var(--accent-color)
}

.btn-text:hover i {
    transform: translateX(5px)
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color)
}

.section-header p {
    max-width: 700px;
    margin: 0 auto
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0
}

.logo img {
    height: 100px;
}

.main-nav ul {
    display: flex
}

.main-nav li {
    margin: 0 1rem;
}

.main-nav a {
    font-weight: 500px;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition)
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem
}

.phone-link {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition)
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: -10px
}

.hero-slider {
    height: 100%;
    position: relative
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center
}

.hero-slide.active {
    opacity: 1;
    z-index: 1
}

.hero-content {
    max-width: 800px;
    color: var(--light-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 5px 2px 4px rgba(05, 05, 05, 05);
}

.hero-content p {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 1rem
}

.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem
}

.hero-controls button {
    background: transparent;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition)
}

.hero-controls button:hover {
    opacity: 1
}

.slide-indicators {
    display: flex;
    gap: 0.5rem
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-text);
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition)
}

.indicator.active {
    opacity: 1;
    transform: scale(1.2)
}

.quick-overview {
    padding: 3rem 0;
    background-color: var(--light-color)
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem
}

.overview-item {
    text-align: center
}

.overview-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem
}

.overview-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0
}

.featured-units {
    padding: 5rem 0
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem
}

.unit-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow)
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15)
}

.unit-image {
    height: 250px;
    overflow: hidden
}

.unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.unit-card:hover .unit-image img {
    transform: scale(1.05)
}

.unit-content {
    padding: 1.5rem
}

.unit-content h3 {
    margin-bottom: 0.5rem
}

.unit-price {
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0
}

.why-allium {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.feature-card:hover {
    transform: translateY(-5px)
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem
}

.gallery-preview {
    padding: 5rem 0
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
    margin-bottom: 2rem
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.gallery-item:hover img {
    transform: scale(1.05)
}

.gallery-cta {
    text-align: center
}

.virtual-tour-cta {
    padding: 5rem 0;
    background-color: var(--light-color)
}

.virtual-tour-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.preview-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition)
}

.play-button i {
    font-size: 2rem;
    color: var(--primary-color)
}

.play-button:hover {
    background-color: #fff;
    transform: translate(-50%, -50%) scale(1.1)
}

.testimonials {
    padding: 5rem 0
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    visibility: hidden
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    visibility: visible
}

.testimonial-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.author-info h4 {
    margin-bottom: 0.25rem
}

.cta-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center
}

.cta-content {
    max-width: 800px;
    margin: 0 auto
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-weight: 500
}

.footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 4rem 0 2rem
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem
}

.footer-contact li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px
}

.footer-links h4 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem
}

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

.footer-links ul li {
    margin-bottom: 0.75rem
}

.footer-links a {
    color: var(--light-text);
    opacity: 0.8
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color)
}

.footer-newsletter p {
    margin-bottom: 1rem
}

.newsletter-form {
    display: flex
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-links a {
    color: var(--light-text);
    font-size: 1.2rem;
    opacity: 0.8;
    transition: var(--transition)
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-color)
}

@media (max-width:1024px) {
    h1 {
        font-size: 3rem
    }
    h2 {
        font-size: 2.25rem
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width:768px) {
    h1 {
        font-size: 2.5rem
    }
    h2 {
        font-size: 2rem
    }
    h3 {
        font-size: 1.5rem
    }
    .container {
        padding: 0 1rem
    }
    .header-inner {
        padding: 0.75rem 0
    }
    .logo img {
        height: 50px
    }
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: #fff;
        transition: var(--transition);
        flex-direction: column;
        padding: 2rem;
        overflow-y: auto;
        box-shadow: var(--shadow)
    }
    .main-nav.active {
        left: 0
    }
    .main-nav ul {
        flex-direction: column
    }
    .main-nav li {
        margin: 0.75rem 0
    }
    .header-cta {
        display: none
    }
    .mobile-menu-toggle {
        display: flex
    }
    .hero {
        height: 80vh;
        margin-top: 70px
    }
    .hero-content h1 {
        font-size: 2.5rem
    }
    .hero-content p {
        font-size: 1.25rem
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem
    }
    .overview-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .units-grid {
        grid-template-columns: 1fr
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px)
    }
    .virtual-tour-preview {
        grid-template-columns: 1fr;
        gap: 2rem
    }
    .footer-grid {
        gap: 2rem
    }
}

@media (max-width:480px) {
    h1 {
        font-size: 2rem
    }
    h2 {
        font-size: 1.75rem
    }
    .hero-content h1 {
        font-size: 2rem
    }
    .hero-content p {
        font-size: 1rem
    }
    .overview-grid {
        grid-template-columns: 1fr
    }
    .feature-card {
        padding: 1.5rem
    }
    .testimonial-author {
        flex-direction: column;
        text-align: center
    }
    .author-image {
        margin: 0 auto 1rem
    }
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem
    }
    .contact-options {
        flex-direction: column;
        align-items: center
    }
}

.more-dropdown {
    position: relative;
}

.more-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    min-width: 160px;
    z-index: 1000;
}

.more-dropdown:hover .dropdown-menu {
    display: block;
}

.more-dropdown .dropdown-menu li {
    display: block;
    white-space: nowrap;
}

.more-dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.more-dropdown .dropdown-menu li a:hover {
    background-color: #f0f0f0;
}

.filter-btn {
    padding: 10px 20px;
    margin: 6px;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #e1dede;
    color: #333;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.filter-btn:hover {
    background-color: #ddd;
}

.filter-btn.active {
    background-color: rgb(172, 129, 21);
    color: white;
}


.schedule-content {
    max-width: 700px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}

.schedule-form {
    width: 100%;
}

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

.form-group {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: border-color 0.2s ease-in-out;
}

input:focus,
select:focus {
    border-color: #007bff;
    outline: none;
    background-color: #fff;
}

@media (max-width: 600px) {
    .form-group {
        flex: 1 1 100%;
    }

    .schedule-content {
        padding: 20px;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
}

.member-image img {
    width: 100%;
    height: auto;
    border-radius: 1px;
    object-fit: cover;

}

.member-info {
    margin-top: 5px;
}

.member-title {
    color: #777;
    margin-bottom: -5px;
}

.member-contact a {
    display: block;
    color: #007bff;
    text-decoration: none;
    margin-top: 5px;
    font-size: 14px;
}

.member-contact a i {
    margin-right: 5px;
}

/* General Button Style */
.btn, .whatsapp-button1 {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 2px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-right: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Primary Button Style */
.btn-primary1{
    background-color: #eef1f4;
    color: #090909;
    border: none;
}

.btn-primary1:hover {
    background-color: #543903;
    color: whitesmoke;
}

/* WhatsApp Button Style */
.whatsapp-button1 {
    background-color: #09692c;
    color: #fff;
    border: none;
}

.whatsapp-button1:hover {
    background-color: #f3f6f4;
    color: #222;
}

/* Optional: WhatsApp Icon spacing */
.whatsapp-button1 i {
    margin-right: 8px;
}

.contact-flex {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

.info-grid {
  flex: 1 1 50%;
  padding: 40px;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.info-image {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  align-items: center;
  border-radius: 10px;
  flex: 1.5;

}

.proximity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* spacing between grid items */
    margin-top: 30px;
    
}

@media (max-width: 992px) {
    .proximity-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
    }
}

@media (max-width: 576px) {
    .proximity-grid {
        grid-template-columns: 1fr; /* 1 per row on mobile */
    }
}

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

  .info-grid, .info-image {
    flex: 1 1 100%;
    padding: 20px;
  }

  .info-image img {
    height: auto;
  }
}



.amenities-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: px;

}

.amenity-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    
    padding: 20px;
    border-radius: 8px;
    
    transition: transform 0.2s;
    color: rgb(11, 11, 11);
    gap: 3px;
}

.icon-box {
    background: #0d2809;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
   width: 50px;
    height: 50px;
}

.icon-box i {
    font-size: 24px;
    color: rgb(172, 129, 21);
}

.text-box {
    background:rgb(182, 181, 181);
    padding: 10px;
    border-radius: 0;
    width: 200px;
    height: 50px;
    text-align: center;
    border-radius: 2px;
}

.text-box h3 {
    margin: 20;
    font-size: 18px;
}

@media (max-width: 1024px) {
    .amenities-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .amenities-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

.logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
 .roi-calculator {
            max-width: 800px;
            margin: auto;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
         
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        .form-group {
            flex: 1;
        }
        .form-group label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 8px;
            font-size: 14px;
        }
        .form-submit {
            text-align: right;
        }
        .btn-primary2 {
            background-color: #0f3056;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 3px;
            font-size: 16px;
           display: block;
           margin: 20px auto;
        }
        .btn-primary2:hover {
            background-color: #004799;
        }

        .testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-navigation button {
    background-color: #ffffff;
    border: 2px solid #ccc;
    color: #333;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.testimonial-navigation button:hover {
    background-color: #f0f0f0;
    border-color: #999;
    color: #000;
}

.testimonial-navigation i {
    pointer-events: none;
}
.footer-logo {
    display: flex;
    justify-content: left; /* center images horizontally */
    gap: -10px; /* space between images */
    align-items: center;
}
.tour-options-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}

.tour-options-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.tour-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tour-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.category-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    padding: 5px 10px;
    position: relative;
    transition: color 0.3s;
}

.category-btn:hover {
    color:  #b2850a;
}

.category-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #b2850a;
    transition: all 0.3s ease;
}
.questions-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}

.questions-form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-submit {
    text-align: center;
}

.btn.btn-primary4 {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn.btn-primary4:hover {
    background-color: #0056b3;
}

a.whatsapp-chat {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 2px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

a.whatsapp-chat:hover {
    background-color: #1DA851;
}
