/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Header Styles  #6d6acd*/
.header {
    background-color: #1e3a8a;
    color: white;
}

.header-top {
    background-color: #1e40af ;
    padding: 10px 0;
    font-size: 18px;
	
}

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


.contact-info span {
    /*display: relative; 
	align-items: center;
	 justify-content: center;*/
	 
	  margin-right: 20px;
	
}

.contact-info i {
    margin-right: 5px;
	
	/*width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
  align-items: center;
	 justify-content: center;
    color: white;
    font-size: 16px;
	background-color: #3b82f6;
	 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    
	
	
	
}




/* Social Links */
.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
	 align-items: center;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 17px;
	 gap: 14px;
}

.social-link:hover {
	background-color: #3b82f6;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    transform: translateY(-2px);
}
/* Navigation Styles */
.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.logo-icon {
    background-color: #3b82f6;
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.logo-icon i {
    font-size: 20px;
}

.logo-text .brand-name {
    font-size: 20px;
    font-weight: bold;
    display: block;
}

.logo-text .brand-sub {
    font-size: 12px;
    color: #cbd5e1;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
	
}

.nav-menu a:hover,
.nav-menu a.active {
  background-color: #3b82f6;
	  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    color: white;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1e3a8a;
	
    min-width: 200px;
    list-style: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-menu li {
    margin: 0;
	background-color: #3b82f6;
}

.dropdown-menu a {
    padding: 12px 20px;
    border-radius: 0;
    background-color: transparent;
	
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:hover {
    background-color: #3b82f6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile view */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #003366;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    padding: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Hero Section  background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.8)),
                url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover; */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
                url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #1e3a8a;
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: white;
}

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

.section-header h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 25px;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* About Styles */
.about-content {
    padding: 80px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 25px;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin: 30px 0 15px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 15px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

/*.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}*/


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, max-content));
    gap: 40px;
    justify-content: center;   /* center the grid items */
}

.team-grid .card {
    max-width: 250px;   /* prevent cards from growing too wide */
    width: 100%;        /* let them shrink properly on mobile */
    text-align: center;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-image i {
    font-size: 40px;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.member-role {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #64748b;
    line-height: 1.6;
}

/* Services Styles */
.services-content {
    padding: 80px 0;
}

.service-item {
    margin-bottom: 100px;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.service-text h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 25px;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

.service-text ul {
    margin-bottom: 30px;
}

.service-text li {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.service-icon {
    text-align: center;
}

.service-icon i {
    font-size: 120px;
    color: #3b82f6;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Payment Styles */
.payment-content {
    padding: 80px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.payment-info h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 25px;
}

.payment-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 30px;
}

.payment-methods h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.payment-icon {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-5px);
}

.payment-icon i {
    font-size: 30px;
    color: #3b82f6;
    margin-bottom: 10px;
}

.payment-icon span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e3a8a;
}

.security-info h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.security-info ul {
    list-style: none;
}

.security-info li {
    padding: 10px 0;
    color: #4b5563;
    display: flex;
    align-items: center;
}

.security-info li i {
    color: #10b981;
    margin-right: 10px;
    font-size: 16px;
}

.payment-form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-form h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 30px;
    text-align: center;
}

.payment-policies {
    margin-top: 80px;
}

.payment-policies h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 40px;
    text-align: center;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.policy-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-card h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.policy-card ul {
    list-style: none;
}

.policy-card li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 20px;
}

.policy-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Contact Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 3.5rem;
    color: #1e3a8a;
    margin-bottom: 25px;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 40px;
}

.contact-methods {
    display: grid;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6,#3b82f6 );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 15px;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 3rem;
    color: #4b5563;
    margin-bottom: 5px;
}

.contact-details span {
    font-size: 0.9rem;
    color: #9ca3af;
}

.contact-form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 30px;
    text-align: center;
}

.map-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.map-section h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 40px;
    text-align: center;
}

.map-placeholder {
    height: 400px;
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 60px;
    color: #3b82f6;
    margin-bottom: 20px;
}

.map-placeholder p {
    color: #4b5563;
    text-align: center;
    margin: 5px 0;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Legal Document Styles */
.legal-content {
    padding: 80px 0;
    background-color: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.document-meta {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #3b82f6;
}

.document-meta p {
    margin: 5px 0;
    color: #4b5563;
}

.document-section {
    margin-bottom: 40px;
}

.document-section h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
}

.document-section h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin: 25px 0 15px;
}

.document-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 15px;
}

.document-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.document-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 8px;
}

.legal-notice {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
}

.legal-notice p {
    color: #92400e;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */

	.white-link {
    color: white;
    text-decoration: none; /* optional */
  }

  .white-link:hover {
    text-decoration: underline; /* optional */
  } 

.footer {
    background-color: #1e3a8a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #93c5fd;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
	
}

.footer-section ul li a:hover {
    opacity: 1;
	 
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 10px;
    }

    .social-links a {
        margin: 0 5px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #1e3a8a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

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

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

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

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: rgba(0, 0, 0, 0.2);
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-content,
    .service-content.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .contact-grid,
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .policies-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-text h2,
    .service-text h2,
    .contact-info h2,
    .payment-info h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .feature-card,
    .team-member,
    .contact-form-container,
    .payment-form-container {
        padding: 25px 20px;
    }

    .payment-icons {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styles */
::selection {
    background-color: #3b82f6;
    color: white;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}


/* Chat Assistant Styles */
.chat-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px; /* 👈 Moved from right to left #6d6acd */
  background-color: #3b82f6 ;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.chatbot {
  position: fixed;
  bottom: 90px;
 left: 20px; /* 👈 Moved from right to left #1e3a8a, #1e40af, #3b82f6 */
  width: 320px;
  max-height: 400px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
}

.chat-header {
  background-color: #3b82f6 ;
  color: white;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

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

.chat-body {
  padding: 10px;
  height: 220px;
  overflow-y: auto;
  font-size: 14px;
}

.chat-input input {
  width: 100%;
  padding: 12px;
  border: none;
  border-top: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.user-msg, .bot-msg {
  margin: 6px 0;
  padding: 8px 12px;
  border-radius: 16px;
  max-width: 80%;
}

.user-msg {
  background-color: #e6f2ff;
  align-self: flex-end;
  text-align: right;
  margin-left: auto;
}

.bot-msg {
  background-color: #f1f1f1;
  align-self: flex-start;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 480px) {
  .chatbot {
    width: 90%;
    right: 5%;
    bottom: 100px;
  }
}

.whatsapp-chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 1000;
  transition: background 0.3s;
}

.whatsapp-chatbot:hover {
  background-color: #1ebc59;
}

.whatsapp-chatbot img {
  width: 24px;
  height: 24px;
}




