/* General Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #181818;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 1px 0 #eaeaea;
    position: sticky;
    top: 0;
    z-index: 10;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}
.logo img {
    height: 150px;
    width: auto;
    height: 60px;
    width: auto;
}
.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 48px;
}
.main-nav a {
    text-decoration: none;
    color: #222;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: #f7b500;
}
.search-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: #222;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100vw;
    max-width: 100%;
    min-height: 350px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    transition: opacity 0.7s;
    /* Center overlay with flex */
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide.active {
    display: block;
    position: relative;
}
.slide-overlay {
    background: rgba(255,255,255,0.8);
    padding: 2rem 2.5rem;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(59,54,99,0.13);
}
.slide-overlay h1 {
    font-size: 2.6rem;
    color: #1b2a3a;
    margin: 0 0 1rem 0;
    font-weight: 700;
}
.read-more-btn {
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: background 0.2s;
}
.read-more-btn:hover {
    background: #f7b500;
    color: #222;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: #1b2a3a;
    cursor: pointer;
    padding: 0 1rem;
    z-index: 2;
    opacity: 0.7;
}
.slider-arrow.left { left: 10px; }
.slider-arrow.right { right: 10px; }

/* Services Intro */
.services-intro {
    padding: 2.5rem 0 1.5rem 0;
}
.services-intro h2 {
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.services-intro p {
    font-size: 1.1rem;
    max-width: 900px;
}

/* Services Grid */
.services-grid {
    background: #f8eeb1;
    padding: 2rem 0 3rem 0;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 330px;
    transition: box-shadow 0.2s;
}
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card-title {
    padding: 1.1rem 1rem;
    font-size: 1.07rem;
    font-weight: 500;
    color: #222;
    flex: 1;
}

/* Chat Button */
.chat-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #3b3663;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 2px 12px rgba(59,54,99,0.15);
    cursor: pointer;
    z-index: 100;
    transition: background 0.2s;
}
.chat-btn:hover {
    background: #f7b500;
    color: #222;
}

/* Quote Section */
.quote-section {
    background: #f8eeb1;
    padding: 2.5rem 0 2.5rem 0;
}
.quote-container {
    max-width: 900px;
    margin: 0 auto;
}
.quote-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.quote-section p {
    font-size: 1.1rem;
    margin-bottom: 2.2rem;
}
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.2rem;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 150px;
}
.form-group label {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #181818;
}
.form-group input,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid #181818;
    font-size: 1rem;
    padding: 0.5rem 0;
    margin-bottom: 0.2rem;
    outline: none;
    color: #181818;
    resize: none;
}
.form-group.full-width {
    flex: 2;
}
.send-btn {
    background: #3b3663;
    color: #fff;
    border: none;
    padding: 0.6rem 2.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: auto;
    margin-top: 1.3rem;
    transition: background 0.2s;
}
.send-btn:hover {
    background: #f7b500;
    color: #222;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8eeb1;
    padding: 2.5rem 0 2.5rem 0;
}
.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}
.testimonials-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.testimonials-header {
    display: flex;
    justify-content: space-between;
    font-size: 1.07rem;
    margin-bottom: 1.3rem;
    color: #181818;
}
.testimonials-header > div:first-child {
    font-weight: 500;
}
.testimonial-block {
    font-size: 1.3rem;
    font-style: italic;
    color: #222;
    border-left: 4px solid #3b3663;
    margin: 2.2rem 0 0 0;
    padding: 1.2rem 1.5rem;
    background: #fff;
    border-radius: 5px;
}
hr {
    border: none;
    border-top: 1.5px solid #181818;
    margin: 1.2rem 0;
}

/* About Section */

/* Team Photos - About Page */
.team-photo {
    width: 350px;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 1.5rem auto;
    display: block;
    box-shadow: 0 2px 12px rgba(59,54,99,0.13);
}

.about-main-section,
.about-vision-mission-section,
.about-team-section,
.about-clients-section,
.about-contact-section {
    text-align: center;
}
.about-main-section h1,
.about-vision-mission-section h2,
.about-team-section h2,
.about-clients-section h2,
.about-contact-section h2,
.about-main-section p,
.about-vision-mission-section p,
.about-team-section p,
.about-clients-section p,
.about-contact-section p,
.team-name,
.team-title,
.team-socials {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.about-main-image img {
    display: block;
    margin: 0 auto 2rem auto;
    width: 90%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(59,54,99,0.13);
}
.about-section {
    text-align: center;
    background: #eeecf3;
    padding: 2.5rem 0 2.5rem 0;
}
.about-container {
    max-width: 1100px;
    margin: 0 auto;
}
.about-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.about-header {
    font-size: 1.1rem;
    color: #181818;
    margin-bottom: 1.2rem;
}
.about-content-row {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.7rem;
    flex-wrap: wrap;
    justify-content: center;
}
.about-text {
    flex: 1 1 320px;
    font-size: 1.07rem;
    color: #181818;
    text-align: center;
}
.learn-more-btn {
    display: inline-block;
    background: #3b3663;
    color: #fff;
    padding: 0.6rem 1.7rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1.1rem;
    transition: background 0.2s;
}
.learn-more-btn:hover {
    background: #f7b500;
    color: #222;
}
.about-image {
    margin-top: 2.5rem;
    text-align: center;
}
.about-image img {
    max-width: 420px;
    width: 100%;
    border-radius: 7px;
    box-shadow: 0 2px 12px rgba(59,54,99,0.09);
    height: 110px;
}
.about-team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
}
.about-team-member img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.about-team-member h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.about-team-member p {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.about-team-member .social-links {
    margin-top: 1rem;
}

/* Follow Us Section */
.follow-section {
    background: linear-gradient(to bottom, #f8eeb1 80%, #fff 100%);
    padding: 2.5rem 0 0.5rem 0;
    text-align: left;
}
.follow-container {
    max-width: 1100px;
    margin: 0 auto;
}
.follow-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.social-icons {
    display: inline-flex;
    gap: 0.7rem;
    margin-left: 1rem;
    vertical-align: middle;
}
.social-icons a img {
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.social-icons a img:hover {
    opacity: 1;
}
.company-contact-block {
    padding: 1.2rem 0 0.2rem 0;
}
.company-name {
    font-size: 2rem;
    font-weight: 400;
    color: #181818;
}

/* Contact Us Section */
.contact-section {
    background: #fafafa;
    padding: 2.5rem 0 2.5rem 0;
}
.contact-container {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    padding: 2.5rem 2rem;
}
.contact-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.contact-form .form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.8rem;
}
.contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 130px;
}
.contact-form label {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #181818;
}
.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid #181818;
    font-size: 1rem;
    padding: 0.5rem 0;
    margin-bottom: 0.2rem;
    outline: none;
    color: #181818;
    resize: none;
}
.contact-form .full-width {
    flex: 2;
}

/* More Testimonials */
.more-testimonials {
    background: linear-gradient(to bottom, #f8eeb1 80%, #fff 100%);
    padding: 2.5rem 0 2.5rem 0;
}
.more-testimonials .testimonial-block {
    margin-bottom: 2.5rem;
    background: #fff;
    border-radius: 5px;
    font-size: 1.2rem;
}
.more-testimonials .testimonial-block footer {
    display: block;
    margin-top: 1.2rem;
    font-size: 1rem;
    font-style: normal;
    color: #222;
}

/* Clients Section */
.clients-section {
    background: linear-gradient(to bottom, #eeecf3 80%, #fff 100%);
    padding: 2.5rem 0 2.5rem 0;
    text-align: left;
}
.clients-container {
    max-width: 1100px;
    margin: 0 auto;
}
.clients-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}
.clients-logos {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.clients-logo.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide.fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.4,0,0.2,1);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.clients-logos img {
    height: 44px;
    width: auto;
    filter: grayscale(1) contrast(1.1);
    opacity: 0.8;
    transition: opacity 0.2s;
}
.clients-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Footer */
.site-footer {
    background: #1b2a3a;
    color: #fff;
    padding: 3rem 0 1rem;
}
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-col {
    flex: 1;
    min-width: 200px;
}
.footer-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.1rem;
}
.footer-policy-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-policy-links li {
    margin-bottom: 0.5rem;
}
.footer-policy-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-policy-links a:hover {
    color: #f7b500;
}
.footer-col.address {
    font-size: 1.1rem;
}
.footer-col.copyright {
    font-size: 0.9rem;
    color: #ccc;
}

/* Social Media Icons */
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.social-icons {
    display: flex;
    gap: 1.5rem;
}
.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.facebook {
    background: #1877F2;
}
.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}
.social-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}
.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Policy Pages */
.policy-section {
    background: #fff;
    padding: 3.5rem 0 2.5rem 0;
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
}
.policy-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 18px rgba(60,60,100,0.03);
    padding: 2.5rem 2rem;
}
.policy-section h1 {
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #222;
}
.policy-section p, .policy-section ul {
    font-size: 1.08rem;
    color: #222;
    margin-bottom: 1.1rem;
    line-height: 1.7;
}
.policy-section ul {
    padding-left: 1.1rem;
    margin-bottom: 1.5rem;
}
.policy-section li {
    margin-bottom: 0.7rem;
}
@media (max-width: 700px) {
    .policy-container { padding: 1.5rem 0.7rem; }
    .policy-section h1 { font-size: 1.4rem; }
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 6.5rem;
    right: 2.2rem;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(60,60,100,0.13);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1.5px solid #eaeaea;
    font-family: inherit;
}
.chat-header {
    background: #3b3663;
    color: #fff;
    padding: 0.9rem 1.2rem;
    font-size: 1.13rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    margin-left: 0.7rem;
    line-height: 1;
}
.chat-messages {
    flex: 1 1 auto;
    padding: 1.1rem 1.2rem 0.5rem 1.2rem;
    background: #fafaff;
    max-height: 200px;
    overflow-y: auto;
    min-height: 80px;
}
.chat-bubble.user {
    background: #3b3663;
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 18px 18px 4px 18px;
    margin-bottom: 0.6rem;
    align-self: flex-end;
    max-width: 85%;
    word-break: break-word;
    font-size: 1rem;
}
.chat-form {
    display: flex;
    border-top: 1px solid #eaeaea;
    padding: 0.6rem 0.7rem;
    background: #fff;
}
.chat-input {
    flex: 1;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    outline: none;
    margin-right: 0.7rem;
}
.chat-send {
    background: #3b3663;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.chat-send:hover {
    background: #222;
}
@media (max-width: 600px) {
    .chat-widget {
        width: 94vw;
        right: 2vw;
        bottom: 6.5rem;
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .header-container { flex-direction: column; height: auto; padding: 0.5rem 0; }
    .main-nav ul { gap: 28px; }
    .slide-overlay { margin: 1.2rem 0 0 1rem; padding: 1.2rem 1rem; }
    .slide-overlay h1 { font-size: 2rem; }
    .about-content-row { flex-direction: column; gap: 1.2rem; }
}
@media (max-width: 700px) {
    .container { width: 98%; }
    .main-nav ul { gap: 18px; }
    .slide { height: 260px; }
    .slide-overlay { max-width: 98vw; }
    .services-intro h2 { font-size: 1.4rem; }
    .services-intro p { font-size: 1rem; }
    .service-card img { height: 110px; }
    .quote-section h2, .testimonials-section h2, .about-section h2 { font-size: 1.3rem; }
    .about-image img { max-width: 98vw; }
}
@media (max-width: 600px) {
    .form-row { flex-direction: column; gap: 0.6rem; }
    .testimonials-header { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 480px) {
    .slide-overlay h1 { font-size: 1.2rem; }
    .slide { height: 130px; }
    .service-card { min-height: 180px; }
    .chat-btn { bottom: 14px; right: 10px; padding: 0.5rem 1rem; font-size: 0.9rem; }
    .about-section, .testimonials-section, .quote-section { padding: 1.1rem 0; }
    .about-header { font-size: 1rem; }
}

