/* Global Styles */
:root {
    --primary-color: #1a56db;
    --secondary-color: #7e22ce;
    --accent-color: #dc2626;
    --text-color: #111827;
    --light-text: #4b5563;
    --light-bg: #f3f4f6;
    --dark-bg: #111827;
    --border-color: #e5e7eb;
    --success-color: #059669;
    --error-color: #dc2626;
    --gradient-primary: linear-gradient(135deg, #1a56db 0%, #7e22ce 100%);
    --gradient-secondary: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    --box-shadow: 0 10px 30px rgba(26, 86, 219, 0.15);
    --card-shadow: 0 5px 20px rgba(26, 86, 219, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}
.profile-dropdown { display: none; }
.profile-dropdown.show { display: block; }

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

section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

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

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    border: none;
    outline: none;
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.primary-btn:hover::before {
    opacity: 1;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.4);
}

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 86, 219, 0.2);
}

.alt-bg {
    background-color: var(--light-bg);
}

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

ul {
    list-style: none;
}

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

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

/* Card Styles */
.card {
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    font-weight: 700;
}

.logo p {
    font-size: 0.9rem;
    color: var(--light-text);
}

.nav-links {
    display: flex;
}

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

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

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

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%235271ff" fill-opacity="0.05" d="M37.5,-48.1C52.1,-39.9,69.7,-33.1,74.5,-21.2C79.3,-9.3,71.3,7.8,63.1,23.2C54.9,38.6,46.6,52.3,34.4,60.1C22.1,67.9,5.9,69.8,-8.3,66.9C-22.5,64,-34.7,56.3,-45.8,46C-56.8,35.7,-66.7,22.7,-70.1,7.6C-73.5,-7.6,-70.4,-24.9,-60.7,-36.2C-51,-47.5,-34.7,-52.8,-20.1,-61C-5.5,-69.1,7.4,-80.1,18.2,-77.5C29,-74.9,37.7,-58.8,37.5,-48.1Z" transform="translate(100 100)" /></svg>') no-repeat center center;
    background-size: contain;
    opacity: 0.8;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 60px;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    top: 20px;
    right: -20px;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-stats {
    display: flex;
    margin-top: 40px;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Services Overview Section */
.service-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category {
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    z-index: -1;
    transition: var(--transition);
    opacity: 0.05;
}

.category:hover::before {
    height: 100%;
}

.category:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--box-shadow);
}

.category-icon {
    width: 90px;
    height: 90px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.category-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    top: 0;
    left: 0;
    animation: spin 20s linear infinite;
    opacity: 0.3;
    z-index: -1;
}

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

.category:hover .category-icon {
    background: var(--gradient-primary);
}

.category-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.category:hover .category-icon i {
    color: white;
}

.category h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

.category p {
    color: var(--light-text);
    margin-bottom: 25px;
    transition: var(--transition);
}

.read-more {
    font-weight: 500;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Service Detail Sections */
.service-detail {
    position: relative;
    overflow: hidden;
}

.service-detail::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    opacity: 0.05;
    z-index: 0;
}

.service-detail::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    opacity: 0.05;
    z-index: 0;
}

.service-detail .container {
    position: relative;
    z-index: 1;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    bottom: 0;
    left: 0;
    transition: var(--transition);
    opacity: 0.05;
    z-index: -1;
}

.service-item:hover::before {
    height: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.service-icon {
    min-width: 70px;
    height: 70px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-item:hover .service-icon i {
    color: white;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 600;
}

.service-content p {
    color: var(--light-text);
    line-height: 1.6;
}

.alt-bg {
    background-color: var(--light-bg);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 15px;
}

.about-text ul {
    margin-left: 20px;
}

.about-text ul li {
    color: var(--light-text);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    opacity: 0.05;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    display: flex;
    overflow-x: hidden;
    position: relative;
    margin-bottom: 30px;
}

.testimonial {
    min-width: 100%;
    padding: 20px;
    transition: var(--transition);
}

.testimonial-content {
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    padding: 30px;
    position: relative;
    margin-bottom: 30px;
    transition: var(--transition);
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(82, 113, 255, 0.1);
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 30px;
    height: 30px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid white;
    box-shadow: var(--card-shadow);
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Contact Section */
.contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4ecfb 100%);
}

.contact::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.05;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    padding: 40px;
    transition: var(--transition);
}

.contact-form:hover {
    transform: translateY(-10px);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    padding: 25px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.info-icon {
    min-width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transform: rotate(-10deg);
}

.info-item:hover .info-icon {
    transform: rotate(0deg);
}

.info-icon i {
    font-size: 1.3rem;
    color: white;
}

.info-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.info-text p {
    color: var(--light-text);
    margin-bottom: 5px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    bottom: -10px;
    left: 0;
    border-radius: 3px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
    background-color: white;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Map Section */
.map {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

/* Footer Section */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
}

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

.footer-links h3,
.footer-services h3,
.footer-social h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

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

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

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons 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: white;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.05);
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 8px;
}

.whatsapp-button span {
    font-weight: 500;
}

/* WhatsApp Button Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button.pulse {
    animation: pulse 2s infinite;
}

/* Mobile Responsive WhatsApp Button */
@media screen and (max-width: 576px) {
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        padding: 10px 15px;
    }
    
    .whatsapp-button span {
        display: none;
    }
    
    .whatsapp-button i {
        margin-right: 0;
    }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 998;
    overflow: hidden;
    display: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-widget-header {
    background-color: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    position: relative;
}

.whatsapp-widget-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.whatsapp-widget-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-widget-info h4 {
    margin: 0;
    font-size: 1rem;
}

.whatsapp-widget-info p {
    margin: 5px 0 0;
    font-size: 0.8rem;
    opacity: 0.8;
}

.online-status {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50%;
    margin-right: 5px;
}

.whatsapp-widget-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.whatsapp-widget-close:hover {
    opacity: 1;
}

.whatsapp-widget-body {
    padding: 15px;
    background-color: #ECE5DD;
    height: 250px;
    overflow-y: auto;
}

.whatsapp-message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 7px;
    margin-bottom: 10px;
    position: relative;
    clear: both;
}

.whatsapp-message p {
    margin: 0;
    font-size: 0.9rem;
}

.message-time {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 5px;
    text-align: right;
}

.whatsapp-message.sent {
    background-color: #DCF8C6;
    float: right;
}

.whatsapp-message.received {
    background-color: white;
    float: left;
}

.whatsapp-widget-footer {
    padding: 15px;
    background-color: #F0F0F0;
}

.whatsapp-widget-input {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 25px;
    padding: 5px 15px;
    margin-bottom: 10px;
}

.whatsapp-widget-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 0;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.send-button {
    background: none;
    border: none;
    color: #25D366;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.quick-responses {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.quick-response-btn {
    background-color: white;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-response-btn:hover {
    background-color: #F5F5F5;
}

@media screen and (max-width: 576px) {
    .whatsapp-widget {
        width: 300px;
        bottom: 80px;
        right: 20px;
    }
    
    .whatsapp-widget-body {
        height: 200px;
    }
    
    .quick-responses {
        flex-direction: column;
    }
}

/* Rate List Section Styles */
.rates {
    background-color: var(--light-bg);
}

.rate-tabs {
    margin-bottom: 30px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

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

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rate-table-container {
    overflow-x: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background-color: white;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.rate-table th {
    background-color: var(--primary-color);
    color: white;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.rate-table th:first-child {
    border-top-left-radius: 10px;
}

.rate-table th:last-child {
    border-top-right-radius: 10px;
}

.rate-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.rate-table tr:last-child td {
    border-bottom: none;
}

.rate-table tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.rate-note {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rate-note p {
    margin-bottom: 10px;
    color: var(--text-color);
}

.rate-note p:last-child {
    margin-bottom: 0;
}

.rate-note i {
    color: var(--primary-color);
    margin-right: 5px;
}

.download-rate-card {
    margin-top: 20px;
    text-align: center;
}

.download-rate-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-rate-card .btn i {
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .rate-table th,
    .rate-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .service-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 101;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .service-categories {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
}

/* Feedback Section Styles */
.feedback {
    padding: 80px 0;
}

.feedback-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.feedback-form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

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

.feedback-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 5px;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffd700;
}

.service-ratings {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.service-ratings h3 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.rating-summary {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-rating-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-rating-item h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
}

.service-rating {
    color: #ffd700;
}

.service-rating i {
    margin-left: 2px;
}

@media screen and (max-width: 768px) {
    .feedback-content {
        grid-template-columns: 1fr;
    }
}

/* Navigation Dropdown Styles */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links .dropdown > a i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-links .dropdown:hover > a i {
    transform: rotate(180deg);
}

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .dropdown-menu li {
    margin: 0;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links .dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

@media screen and (max-width: 768px) {
    .nav-links .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-links .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-links .dropdown-menu a {
        padding: 8px 0;
    }

    .nav-links .dropdown-menu a:hover {
        padding-left: 5px;
    }
}

/* Privacy Policy Section Styles */
.privacy-policy {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.privacy-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.privacy-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.privacy-section h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.privacy-section p {
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
}

.privacy-section ul li {
    color: var(--light-text);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.privacy-section ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .privacy-content {
        grid-template-columns: 1fr;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #0056b3;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 30px;
}

p {
    margin-bottom: 20px;
}

/* Form Styles */
.form-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 600px;
    margin: 30px auto;
}

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

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

input.error,
select.error,
textarea.error {
    border-color: #ff3860;
}

.submit-btn {
    background-color: #0056b3;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #003d82;
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Button Styles */
.button {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #003d82;
}

/* Success Message Styles */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message i {
    color: #28a745;
    font-size: 20px;
}

.auth-links {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.login-btn, .register-btn {
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn {
    color: #333;
    border: 1px solid #333;
}

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

.register-btn {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

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

/* Responsive styles for auth buttons */
@media screen and (max-width: 768px) {
    .auth-links {
        margin: 10px 0;
        justify-content: center;
    }
    
    .login-btn, .register-btn {
        padding: 6px 15px;
        font-size: 14px;
    }
}

.user-profile {
    position: relative;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.profile-link:hover {
    background-color: #f5f5f5;
}

.profile-link i {
    font-size: 20px;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    min-width: 150px;
    display: none;
    z-index: 1000;
}

.user-profile:hover .profile-dropdown {
    display: block;
}

.profile-dropdown li {
    list-style: none;
}

.profile-dropdown a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-dropdown a:hover {
    background-color: #f5f5f5;
    color: #007bff;
}

/* Responsive styles for user profile */
@media screen and (max-width: 768px) {
    .profile-link {
        padding: 6px 10px;
    }
    
    .profile-link i {
        font-size: 18px;
    }
    
    .profile-dropdown {
        position: static;
        box-shadow: none;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }
}
