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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background: #14284d;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-login {
    display: flex;
    align-items: center;
    gap: 15px;
}

.facebook {
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.facebook:hover {
    color: #3b82f6;
}

.login-btn {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.login-btn:hover {
    color: #39bfc1;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #39bfc1;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 20px;
}

.highlight {
    color: #b44851;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: white;
}

/* Marquee */
.marquee {
    background: #f0f8ff;
    padding: 15px 0;
    border-top: 3px solid #39bfc1;
    border-bottom: 3px solid #39bfc1;
}

.marquee-content {
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    color: #14284d;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Company Info Section */
.company-info {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.subtitle {
    color: #39bfc1;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text h2 {
    font-size: 2.5rem;
    color: #14284d;
    margin: 15px 0 25px;
    font-weight: 700;
}

.info-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    text-align: justify;
}

.nepal-map img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Age Calculator */
.age-calculator {
    padding: 60px 0;
    background: white;
}

.calculator-box {
    max-width: 300px;
    margin: 0 auto;
    padding: 30px;
    border: 2px solid #39bfc1;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.calculator-box h3 {
    color: #14284d;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

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

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

.date-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.date-input:focus {
    outline: none;
    border-color: #39bfc1;
}

.calculate-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    margin-bottom: 20px;
}

.calculate-btn:hover {
    background: #218838;
}

.result {
    color: #333;
    font-weight: 500;
}

/* Labor Permit Section */
.labor-permit {
    padding: 80px 0;
    background: #f8f9fa;
}

.permit-info h2 {
    font-size: 2.2rem;
    color: #14284d;
    margin: 15px 0 25px;
    font-weight: 700;
}

.permit-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.permit-info a {
    color: #39bfc1;
    text-decoration: none;
}

.permit-info a:hover {
    text-decoration: underline;
}

.read-more {
    color: #39bfc1;
    font-weight: 600;
}

.permit-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    background: #14284d;
    padding: 50px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text {
    color: white;
}

.cta-text h2 {
    font-size: 2rem;
    margin-top: 10px;
}

.cta-btn {
    background: #39bfc1;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.cta-btn:hover {
    background: #2da5a7;
    transform: translateY(-2px);
}

/* Services Icons */
.services-icons {
    padding: 60px 0;
    background: white;
}

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

.icon-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.icon-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.icon-item h4 {
    color: #14284d;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.videos-section h2 {
    font-size: 2.5rem;
    color: #14284d;
    margin-bottom: 15px;
}

.videos-section p {
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.video-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,0,0,0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #14284d;
    margin-bottom: 15px;
}

.services-section p {
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-item {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-item h4 {
    color: #14284d;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.news-section h2 {
    font-size: 2.5rem;
    color: #14284d;
    margin-bottom: 15px;
}

.news-section p {
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-date {
    color: #b44851;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-item h4 {
    color: #14284d;
    margin-bottom: 10px;
    line-height: 1.4;
}

.source {
    color: #666;
    font-size: 14px;
}

/* CTA Banner */
.cta-banner {
    background: #14284d;
    padding: 60px 0;
    text-align: center;
}

.banner-content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.blog-section h2 {
    font-size: 2.5rem;
    color: #14284d;
    margin-bottom: 15px;
}

.blog-section p {
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-item:hover {
    transform: translateY(-5px);
}

.blog-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
    text-align: left;
}

.blog-date {
    color: #b44851;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.author {
    color: #39bfc1;
    font-weight: 500;
}

.blog-item h4 {
    color: #14284d;
    line-height: 1.4;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #14284d;
    margin-bottom: 15px;
}

.testimonials-section p {
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #14284d;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #39bfc1;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #39bfc1;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
    text-align: justify;
}

.contact-list li {
    margin-bottom: 15px;
}

.visitors {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all {
    color: #39bfc1;
    text-decoration: none;
    background: #2a3f5f;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.3s;
}

.view-all:hover {
    background: #39bfc1;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2a3f5f;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.chat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.chat-icon:hover {
    transform: scale(1.1);
}

.chat-icon img {
    width: 25px;
    height: 25px;
}

.chat-icon.phone {
    background: #28a745;
}

.chat-icon.whatsapp {
    background: #25d366;
}

.chat-icon.messenger {
    background: #0084ff;
}

.chat-label {
    background: #14284d;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
}

.chat-message {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 250px;
    position: relative;
}

.chat-message::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: white transparent transparent transparent;
}

.chat-message p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.time {
    font-size: 12px;
    color: #666;
    display: block;
    text-align: right;
    margin-top: 5px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #14284d 0%, #39bfc1 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

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

.breadcrumb {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #b44851;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #14284d;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-item {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    transition: transform 0.3s;
}

.service-detail-item:hover {
    transform: translateY(-5px);
}

.service-detail-item:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.service-detail-item:nth-child(even) .service-image {
    order: 2;
}

.service-detail-item:nth-child(even) .service-content {
    order: 1;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service-content h3 {
    font-size: 1.8rem;
    color: #14284d;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #333;
}

.service-features i {
    color: #28a745;
    font-size: 14px;
}

.service-btn {
    background: #39bfc1;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.service-btn:hover {
    background: #2da5a7;
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #14284d;
    margin-bottom: 50px;
}

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

.feature-item {
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #39bfc1, #14284d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-item h3 {
    color: #14284d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-info-section h2 {
    font-size: 2.2rem;
    color: #14284d;
    margin-bottom: 20px;
}

.contact-info-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #39bfc1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #14284d;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-text p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

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

.contact-form-section h2 {
    font-size: 2rem;
    color: #14284d;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

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

.submit-btn {
    background: #39bfc1;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #2da5a7;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #14284d;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #14284d;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #14284d;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #39bfc1;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

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

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

.about-text h2 {
    font-size: 2.5rem;
    color: #14284d;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 1.2rem;
    color: #39bfc1;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

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

/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.mv-item {
    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;
}

.mv-item:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #39bfc1, #14284d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.mv-item h3 {
    color: #14284d;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mv-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #14284d;
    margin-bottom: 10px;
}

.team-section p {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #39bfc1;
    margin-bottom: 10px;
}

.stat-label {
    color: #14284d;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Additional CSS for mobile responsiveness */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }

    .service-detail-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-detail-item:nth-child(even) .service-image,
    .service-detail-item:nth-child(even) .service-content {
        order: unset;
    }

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

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

    .contact-form-section {
        padding: 30px 20px;
    }

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

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

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mv-item {
        padding: 30px 20px;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

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

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .icons-grid,
    .services-grid,
    .news-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .chat-widget {
        bottom: 10px;
        right: 10px;
    }

    .chat-message {
        max-width: 200px;
    }
}

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

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

    .info-text h2,
    .videos-section h2,
    .services-section h2,
    .news-section h2,
    .blog-section h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }

    .calculator-box {
        margin: 0 15px;
    }
}
