<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Variables */
:root {
    --primary-color: #4477FE;
    --primary-light: rgba(68, 119, 254, 0.1);
    --primary-dark: #3366e6;
    --secondary-color: #111859;
    --secondary-light: #1b2470;
    --text-color: #333;
    --text-light: #6c757d;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --white: #ffffff;
    --black: #000000;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
  }
  
  /* Global Styles */
  body {
    font-family: 'Prompt', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--white);
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  .btn {
    border-radius: 30px;
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
  }
  
  .btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: 1;
  }
  
  .btn:hover::after {
    width: 100%;
  }
  
  .btn span, .btn i {
    position: relative;
    z-index: 2;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
  }
  
  .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  .btn-lg {
    padding: 0.8rem 2.5rem;
    font-weight: 600;
  }
  
  .btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    padding: 0;
    transition: var(--transition);
  }
  
  .btn-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
  }
  
  .btn-link:hover {
    color: var(--primary-dark);
  }
  
  .btn-link:hover i {
    transform: translateX(5px);
  }
  
  .section-padding {
    padding: 6rem 0;
  }
  
  .section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--secondary-color);
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 4px;
  }
  
  /* Animation Classes */
  .reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
  }
  
  .reveal-text[data-delay="300"] {
    transition-delay: 0.5s;
  }
  
  .reveal-text[data-delay="600"] {
    transition-delay: 0.8s;
  }
  
  .reveal-text.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .reveal-top {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal-top[data-delay="200"] {
    transition-delay: 0.3s;
  }
  
  .reveal-top[data-delay="400"] {
    transition-delay: 0.6s;
  }
  
  .reveal-top.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal-left[data-delay="200"] {
    transition-delay: 0.3s;
  }
  
  .reveal-left[data-delay="400"] {
    transition-delay: 0.6s;
  }
  
  .reveal-left[data-delay="600"] {
    transition-delay: 0.9s;
  }
  
  .reveal-left.show {
    opacity: 1;
    transform: translateX(0);
  }
  
  .reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal-right[data-delay="200"] {
    transition-delay: 0.3s;
  }
  
  .reveal-right[data-delay="400"] {
    transition-delay: 0.6s;
  }
  
  .reveal-right.show {
    opacity: 1;
    transform: translateX(0);
  }
  
  .reveal-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal-bottom[data-delay="200"] {
    transition-delay: 0.3s;
  }
  
  .reveal-bottom[data-delay="400"] {
    transition-delay: 0.6s;
  }
  
  .reveal-bottom[data-delay="600"] {
    transition-delay: 0.9s;
  }
  
  .reveal-bottom.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal-scale.show {
    opacity: 1;
    transform: scale(1);
  }
  
  /* Hero Section Styles */
  .hero-slider {
    position: relative;
    overflow: hidden;
  }
  
  .hero-slider .carousel-item {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
    z-index: 10;
  }
  
  .hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .hero-content p {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    margin-top: 2rem;
  }
  
  .hero-slider .carousel-indicators {
    bottom: 30px;
  }
  
  .hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
  }
  
  .hero-slider .carousel-indicators button.active {
    background-color: var(--primary-color);
  }
  
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
  }
  
  .hero-slider:hover .carousel-control-prev,
  .hero-slider:hover .carousel-control-next {
    opacity: 1;
  }
  
  .hero-slider .carousel-control-prev {
    left: 20px;
  }
  
  .hero-slider .carousel-control-next {
    right: 20px;
  }
  
  /* About Section */
  .about-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
  }
  
  .about-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(68, 119, 254, 0.05);
    top: -150px;
    left: -150px;
    z-index: 0;
  }
  
  .about-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(68, 119, 254, 0.05);
    bottom: -200px;
    right: -200px;
    z-index: 0;
  }
  
  .about-carousel {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
  }
  
  /* เนเธเนเนเธเธชเนเธงเธเธเธตเนเน€เธเธทเนเธญเนเธชเธ”เธเธฃเธนเธเธ&nbsp;เธฒเธเน€เธ•เนเธก */
  .about-carousel .carousel-inner {
    height: 100%;
  }
  
  .about-carousel .carousel-item {
    height: 100%;
  }
  
  .about-carousel .carousel-item img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain; /* เน€เธเธฅเธตเนเธขเธเธเธฒเธ cover เน€เธเนเธ contain */
  }
  
  .counter-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  
  .counter-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  
  .counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .counter-box:hover::before {
    transform: scaleX(1);
  }
  
  .counter-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .counter-box h2 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .counter-box p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-light);
  }
  
  /* Services Section */
  .services-section {
    position: relative;
    background-color: var(--white);
  }
  
  .service-card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    background-color: var(--white);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .service-image {
    position: relative;
    overflow: hidden;
  }
  
  .service-image img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .service-card:hover .service-image img {
    transform: scale(1.1);
  }
  
  .service-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: var(--transition);
  }
  
  .service-card:hover .service-icon {
    transform: rotate(360deg);
  }
  
  .service-card .card-body {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .service-card .card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .service-card .card-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }
  
  /* Calculator Section */
  .calculator-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
  }
  
  .calculator-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(68, 119, 254, 0.05);
    top: -200px;
    right: -200px;
    z-index: 0;
  }
  
  .calculator-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
    height: 100%;
  }
  
  .calculator-card .card-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-bottom: none;
  }
  
  .calculator-card .card-header h4 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.3rem;
  }
  
  .calculator-card form {
    padding: 2rem;
  }
  
  .form-label {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
  }
  
  .form-control, .form-select {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(68, 119, 254, 0.25);
  }
  
  .form-floating &gt; .form-control,
  .form-floating &gt; .form-select {
    height: 58px;
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
  }
  
  .form-floating &gt; label {
    padding: 1rem 0.75rem;
  }
  
  .input-group-text {
    background-color: var(--light-gray);
    border-color: #ced4da;
    color: var(--text-light);
  }
  
  .result-content {
    padding: 2rem;
  }
  
  .result-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
    transition: var(--transition);
  }
  
  .result-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .result-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .result-details h6 {
    margin-bottom: 0.25rem;
    color: var(--text-light);
    font-weight: 500;
  }
  
  .result-details h3 {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .result-details span {
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  .request-quote-form {
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .calculator-initial {
    padding: 2rem;
  }
  
  .calculator-initial img {
    max-height: 200px;
    margin-bottom: 1.5rem;
  }
  
  .calculator-benefits {
    margin-top: 1.5rem;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  
  .benefit-item i {
    margin-right: 0.75rem;
  }
  
  .success-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
  
  .success-animation i {
    font-size: 5rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: scaleUp 0.5s ease forwards;
  }
  
  @keyframes scaleUp {
    0% {
      opacity: 0;
      transform: translateX(-50%) scale(0);
    }
    50% {
      opacity: 1;
      transform: translateX(-50%) scale(1.2);
    }
    100% {
      opacity: 1;
      transform: translateX(-50%) scale(1);
    }
  }
  
  /* Projects Section */
  .projects-section {
    position: relative;
  }
  
  .project-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    background-color: var(--white);
    height: 100%;
  }
  
  .project-image {
    position: relative;
    overflow: hidden;
  }
  
  .project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.1);
  }
  
  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 89, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
  }
  
  .project-card:hover .project-overlay {
    opacity: 1;
  }
  
  .project-body {
    padding: 1.5rem;
  }
  
  .project-body h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
  }
  
  .project-body p {
    color: var(--text-light);
    margin-bottom: 1rem;
  }
  
  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tag {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    background-color: var(--light-gray);
    position: relative;
  }
  
  .testimonial-carousel {
    padding: 2rem 0;
  }
  
  .testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem 2rem 2rem;
    margin: 1rem 0.5rem;
    text-align: center;
    position: relative;
  }
  
  .testimonial-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
  }
  
  .testimonial-card p.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
  }
  
  .author-info h5 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .author-info p {
    margin-bottom: 0;
    color: var(--text-light);
  }
  
  .testimonial-rating {
    color: #FFD700;
    font-size: 1.1rem;
  }
  
  .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .carousel-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: var(--box-shadow);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .carousel-control-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  .custom-indicators {
    display: flex;
    align-items: center;
    margin: 0 1rem;
  }
  
  .custom-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    border: none;
    margin: 0 5px;
    padding: 0;
    transition: var(--transition);
  }
  
  .custom-indicators button.active {
    width: 30px;
    border-radius: 10px;
    background-color: var(--primary-color);
  }
  
  /* CTA Section */
  .cta-section {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/solar-pattern.png');
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .cta-section h2 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    margin: 2rem 0;
  }
  
  .cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    gap: 2rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    text-align: left;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
  }
  
  .feature-text h5 {
    margin-bottom: 0.25rem;
    color: var(--white);
  }
  
  .feature-text p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Contact Section */
  .contact-section {
    position: relative;
    background-color: var(--white);
  }
  
  .contact-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    height: 100%;
  }
  
  .contact-item {
    display: flex;
    margin-bottom: 1.5rem;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .contact-text h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .contact-text p, .contact-text a {
    margin-bottom: 0;
    color: var(--text-light);
    transition: var(--transition);
  }
  
  .contact-text a:hover {
    color: var(--primary-color);
  }
  
  .contact-social {
    margin-top: 2rem;
  }
  
  .social-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
  }
  
  .social-btn:hover {
    transform: translateY(-5px);
    color: var(--white);
  }
  
  .social-btn.facebook {
    background-color: #1877f2;
  }
  
  .social-btn.line {
    background-color: #06c755;
  }
  
  .social-btn.youtube {
    background-color: #ff0000;
  }
  
  .contact-form-wrapper {
    height: 100%;
  }
  
  .contact-form-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    height: 100%;
  }
  
  .contact-form-card h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 30%;
    height: 0;
  }
  
  .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  /* Notification Styles */
  .notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
  }
  
  .notification {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 350px;
    opacity: 0;
  }
  
  .notification-success {
    background-color: var(--success);
  }
  
  .notification-warning {
    background-color: var(--warning);
    color: var(--text-color);
  }
  
  .notification-icon {
    font-size: 1.8rem;
    margin-right: 15px;
  }
  
  .notification-content {
    flex: 1;
  }
  
  .notification-content h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
  }
  
  .notification-content p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  .notification-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
  }
  
  /* Form Floating Focus */
  .form-floating.focused label {
    color: var(--primary-color);
  }
  
  .form-floating.has-value label {
    color: var(--secondary-color);
  }
  
  /* Responsive Styles */
  @media (max-width: 1199.98px) {
    .section-padding {
      padding: 5rem 0;
    }
    
    .hero-content h1 {
      font-size: 3rem;
    }
    
    .contact-item {
      flex-direction: column;
    }
    
    .contact-icon {
      margin-bottom: 1rem;
    }
  }
  
  @media (max-width: 991.98px) {
    .section-padding {
      padding: 4rem 0;
    }
    
    .hero-slider .carousel-item {
      height: 70vh;
    }
    
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .hero-content p {
      font-size: 1.1rem;
    }
    
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
      display: none;
    }
    
    .map-responsive {
      padding-bottom: 50%;
    }
    
    .contact-form-card, .contact-card {
      margin-bottom: 1.5rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .section-padding {
      padding: 3.5rem 0;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .hero-slider .carousel-item {
      height: 60vh;
      min-height: 400px;
    }
    
    .hero-content h1 {
      font-size: 2rem;
    }
    
    .hero-content p {
      font-size: 1rem;
    }
    
    .counter-box h2 {
      font-size: 2.2rem;
    }
    
    .map-responsive {
      padding-bottom: 80%;
    }
    
    .cta-section h2 {
      font-size: 2rem;
    }
    
    .cta-features {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .section-padding {
      padding: 3rem 0;
    }
    
    .hero-slider .carousel-item {
      height: 50vh;
    }
    
    .hero-content h1 {
      font-size: 1.8rem;
    }
    
    .btn-lg {
      padding: 0.6rem 1.5rem;
      font-size: 1rem;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .counter-box {
      padding: 1.5rem;
    }
    
    .counter-box h2 {
      font-size: 2rem;
    }
  }
/* FAQ Section */
.faq-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
  }
  
  .faq-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(68, 119, 254, 0.05);
    top: -150px;
    left: -150px;
    z-index: 0;
  }
  
  .faq-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(68, 119, 254, 0.05);
    bottom: -200px;
    right: -200px;
    z-index: 0;
  }
  
  .faq-accordion {
    position: relative;
    z-index: 1;
  }
  
  .faq-accordion .accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-accordion .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .faq-accordion .accordion-header {
    border-radius: var(--border-radius);
  }
  
  .faq-accordion .accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
    background-color: var(--white);
    border-radius: var(--border-radius) !important;
    transition: all 0.3s ease;
  }
  
  .faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(68, 119, 254, 0.05);
    box-shadow: none;
  }
  
  .faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(68, 119, 254, 0.2);
    border-color: var(--primary-color);
    z-index: 3;
  }
  
  .faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234477FE'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem;
    transition: all 0.3s ease;
  }
  
  .faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
  }
  
  .faq-accordion .accordion-body {
    padding: 1.5rem;
    background-color: var(--white);
    line-height: 1.7;
    color: var(--text-light);
  }
  
  .faq-accordion .accordion-body p {
    margin-bottom: 1rem;
  }
  
  .faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
  }
  
  .faq-accordion .accordion-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .faq-accordion .accordion-body li {
    margin-bottom: 0.5rem;
  }
  
  .faq-accordion .accordion-body strong {
    color: var(--secondary-color);
  }
  
  /* Responsive Styles for FAQ */
  @media (max-width: 767.98px) {
    .faq-accordion .accordion-button {
      font-size: 1rem;
      padding: 1rem 1.25rem;
    }
    
    .faq-accordion .accordion-body {
      padding: 1.25rem;
    }
  }</pre></body></html>