/* Global Styles */
:root {
    --primary-color: #a31518;
    --secondary-color: #182335;
    --accent-color: #f8b133;
    --light-color: #ffffff;
    --dark-color: #333333;
    --gray-color: #f5f5f5;
    --text-color: #555555;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

 .containermenu
 {
    display: flex;
    align-items: center;
    justify-content: space-between;
 }  

section {
    padding: 10px 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--light-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 12px;
}

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

.btn-primary:hover {
    background-color: #8a1215;
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(163, 21, 24, 0.3);
}

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

.btn-secondary:hover {
    background-color: #0f1a2a;
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 35, 53, 0.3);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

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

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    color: var(--text-color);
}

.easy_connect
{
    display: flex;
    width: 100%;
    height: auto;
    padding: 15px;
    justify-content:space-evenly;
    align-items: center;
    vertical-align: middle;
    background-color: #dfdfdf3b;
    border-radius: 10px;
}
.cstext
{
    margin-bottom: 0px !important;
}

.selectopt
{
    font-size: 20px !important;
    font-weight: 600;
}

.senmdbtn {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    vertical-align: middle;
    background-color: var(--secondary-color);
    color: #FFFF;
    padding: 0.5rem 1.75rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.senmdbtn:hover {
    background-color: #a31518;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(163, 21, 24, 0.3);
}
.cont_content
{
    width: 100%;
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    vertical-align: middle;

}

/* Header Styles */
.main-header {
    background-color: #ffffff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    height: 12%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menutext
{
    font-size: 20px;
}

.main-header.scrolled {
    padding: 15px 0;
    background-color: #ffffff;
}

.logo h1 {
    color: var(--light-color);
    font-size: 28px;
    margin: 0;

}

.logo h1 span {
    color: var(--primary-color);
}
.main-nav
{
    display: flex;
    justify-content: right !important;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: #000000;
    font-weight: 600;
    position: relative;
}

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

.main-nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    color: var(--light-color);
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--light-color);
    max-width: auto;
    padding-top: 18rem;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--light-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 23px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Services Section */
.services-section {
    background-color: var(--gray-color);
}

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

.service-item h3 {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 15px;
    padding: 0 20px;
}

.service-item p {
    text-align: center;
    padding: 0 20px 20px;
    color: var(--text-color);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(24, 35, 53, 0.1), transparent);
}

/* AMC Section */
.amc-section {
    background-color: var(--light-color);
}

.amc-packages {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.amc-package {
    background-color: var(--gray-color);
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.amc-package:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.amc-package.featured {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-20px);
}

.amc-package.featured h3,
.amc-package.featured .price {
    color: var(--light-color);
}

.amc-package.featured .btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.amc-package h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.price {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 30px;
}

.package-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

.package-features li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

.amc-package.featured .package-features li i {
    color: var(--accent-color);
}

.amc-package .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    align-self: center;
    width: calc(100% - 40px);
    margin-bottom: 20px;
}

/* AMC Details */
.amc-details {
    margin-top: 80px;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.details-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab {
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
}

.tab.active {
    color: var(--primary-color);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

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

.details-content {
    padding: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    margin-top: 20px;
    color: var(--secondary-color);
}

.tab-content h4 {
    margin-top: 15px;
    color: var(--secondary-color);
}

.tab-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.tab-content ul li {
    margin-bottom: 8px;
}

.download-btn {
    text-align: center;
    margin-top: 40px;
}

/* About Section */
.about-section {
    background-color: var(--gray-color);
}

.about-content {
    margin-bottom: 50px;
}

.about-content p {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--light-color);
    font-size: 24px;
}

.about-image {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(163, 21, 24, 0.3);
}

.experience-badge span {
    font-size: 36px;
    font-weight: 700;
}

.experience-badge p {
    font-size: 14px;
    text-align: center;
    margin: 5px;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-color);
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form {
    background-color: var(--gray-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(163, 21, 24, 0.2);
}

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

/* Testimonials Section */
.testimonials-section {
    background-color: var(--gray-color);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-item {
    min-width: 350px;
    scroll-snap-align: start;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

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

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.client-details h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.client-details p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
    font-style: normal;
}

/* Footer */
.main-footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 80px 0 0;
}

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

.footer-col h3 {
    color: var(--light-color);
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--light-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-col ul {
    list-style: none;
}

.contact-col ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-col ul li i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-color);
}

/* Chatbot Widget */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chatbot-container.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 15px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    margin: 0;
    color: var(--light-color);
}

.close-chatbot {
    cursor: pointer;
    font-size: 18px;
}

.chatbot-messages {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
}

.chatbot-message {
    margin-bottom: 15px;
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.chatbot-message.bot {
    background-color: #f0f0f0;
    color: var(--dark-color);
    border-top-left-radius: 0;
    margin-right: auto;
}

.chatbot-message.user {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-top-right-radius: 0;
    margin-left: auto;
}

.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}

.send-btn {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background-color: #8a1215;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 15px 15px;
}

.quick-reply {
    background-color: #f0f0f0;
    border: none;
    border-radius: 15px;
    padding: 5px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-reply:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.chatbot-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(163, 21, 24, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.chatbot-trigger:hover {
    transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
}


/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 35, 53, 0.2);
    z-index: 1;
}

.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
    gap: 15px;
}

.hero-slider-controls button {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.hero-slider-controls button:hover {
    background-color: var(--primary-color);
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 10px;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Updated Service Items */
.service-item {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(30px);
    opacity: 0;
    height: 550px;
    will-change: transform, opacity;
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transform: translateY(-40px);
    color: var(--light-color);
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(163, 21, 24, 0.3);
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.service-image {
    height: 340px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image:hover {
    transform: scale(1.05);
}

/*.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(24, 35, 53, 0.7), transparent);
}*/
.service-item h3 {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 15px;
    padding: 0 20px;
}

.service-item p {
    text-align: center;
    padding: 0 20px 20px;
    color: var(--text-color);
}


/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .amc-packages {
        flex-direction: column;
        align-items: center;
    }
    
    .amc-package {
        max-width: 100%;
    }
    
    .amc-package.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 0 0 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        margin-top: 80px;
        height: auto;
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .chatbot-container {
        width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .details-tabs {
        flex-direction: column;
    }
    
    .tab {
        border-bottom: 1px solid #eee;
    }
    
    .tab.active::after {
        display: none;
    }
    
    .chatbot-container {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 20px;
    }
    
    .chatbot-trigger {
        right: 20px;
        bottom: 20px;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 90px;
    }
}