/* Beyond Plus Ltd - Main Stylesheet */
:root {
    --navy: #0D2137;
    --navy-dark: #081525;
    --sky-blue: #29ABE2;
    --sky-light: #5BC4F0;
    --orange: #F58220;
    --gradient-primary: linear-gradient(135deg, #0D2137 0%, #1a3a5c 50%, #29ABE2 100%);
    --gradient-accent: linear-gradient(135deg, #29ABE2 0%, #5BC4F0 50%, #0D2137 100%);
    --gradient-orange: linear-gradient(135deg, #F58220 0%, #FF9F43 100%);
    
    --gradient-overlay:
linear-gradient(
135deg,
rgba(10,25,45,.45) 0%,
rgba(15,60,110,.25) 45%,
rgba(41,171,226,.10) 100%
);
 
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --shadow: 0 10px 40px rgba(13,33,55,0.12);
    --shadow-hover: 0 20px 60px rgba(13,33,55,0.2);
    --radius: 12px;
    --transition: all 0.3s ease;
}
.hero-slider .slide-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(8,20,35,.70) 0%,
        rgba(8,20,35,.45) 28%,
        rgba(8,20,35,.15) 55%,
        rgba(8,20,35,0) 100%
    );
}
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy);
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* Top Bar */
.top-bar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:10000;
}

.main-nav{
    position:fixed;
    left:0;
    width:100%;
    z-index:9999;
}
.top-bar a { color: var(--sky-blue); }
.top-bar a:hover { color: var(--white); }
.top-bar i { color: var(--sky-blue); margin-right: 6px; }

/* Navigation */
/* Sticky Navigation */
.main-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(13,33,55,.97) !important;
    backdrop-filter: blur(10px);

    box-shadow: 0 8px 25px rgba(0,0,0,.15);

    transition: all .35s ease;
}
.navbar-brand .logo-img { height: 50px; }
.brand-text { line-height: 1.1; }
.brand-name { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); letter-spacing: 1px; }
.brand-sub { display: block; font-size: 0.75rem; color: var(--sky-blue); letter-spacing: 3px; }
.main-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 8px 14px !important;
    font-size: 0.9rem;
    position: relative;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--sky-blue) !important; }
.main-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--sky-blue);
}
.main-nav .dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 10px 0;
}
.main-nav .dropdown-item {
    padding: 8px 20px;
    font-size: 0.9rem;
}
.main-nav .dropdown-item:hover {
    background: var(--light-bg);
    color: var(--sky-blue);
}

/* Buttons */
.btn-gradient {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41,171,226,0.4);
    color: var(--white);
}
.btn-orange {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}
.btn-orange:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,130,32,0.4); }

/* Hero Slider */
.hero-slider { position: relative; height: 85vh; min-height: 500px; }
.hero-slider .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-slider .slide-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}
.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 750px;
    padding: 40px;
    background: linear-gradient(
        135deg,
        rgba(13, 33, 55, 0.92) 0%,
        rgba(41, 171, 226, 0.75) 100%
    );
    border-radius: 15px;
}
.hero-slider .slide-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}
.hero-slider .slide-content .subtitle {
    color: var(--sky-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.hero-slider .slide-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 30px;
}
.hero-slider .swiper-pagination-bullet { background: var(--white); opacity: 0.5; width: 12px; height: 12px; }
.hero-slider .swiper-pagination-bullet-active { opacity: 1; background: var(--sky-blue); }
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev { color: var(--white); }

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 30px 30px;
}
.page-header h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 10px; position: relative; }
.page-header p { opacity: 0.85; font-size: 1.1rem; position: relative; }
.breadcrumb-nav {
    background: rgba(255,255,255,0.1);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 15px;
    font-size: 0.9rem;
}
.breadcrumb-nav a { color: var(--sky-light); }
.breadcrumb-nav span { color: rgba(255,255,255,0.7); }

/* Section Styles */
.section { padding: 80px 0; }
.section-light { background: var(--light-bg); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .subtitle {
    color: var(--sky-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}
.section-title h2 { font-size: 2.2rem; margin-bottom: 15px; }
.section-title p { color: var(--text-light); max-width: 700px; margin: 0 auto; }
.section-title .title-bar {
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Statistics */
.stats-section {
    background: var(--gradient-primary);
    padding: 60px 0;
    color: var(--white);
}
.stat-card {
    text-align: center;
    padding: 30px 15px;
}
.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--sky-light);
}
.stat-card .stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}
.stat-card .stat-title { font-size: 0.9rem; opacity: 0.85; margin-top: 5px; }

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.service-card .service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.service-card .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-card .service-icon {
    position: absolute;
    bottom: -25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}
.service-card .service-body { padding: 35px 25px 25px; }
.service-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 15px; }
.service-card .read-more {
    color: var(--sky-blue);
    font-weight: 600;
    font-size: 0.9rem;
}
.service-card .read-more:hover { color: var(--navy); }

/* Project Cards */
.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    height: 280px;
}
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.project-card:hover img { transform: scale(1.05); }
.project-card .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(13,33,55,0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: var(--white);
    transition: var(--transition);
}
.project-card .project-category {
    background: var(--sky-blue);
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    width: fit-content;
}
.project-card h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 5px; }
.project-card .project-location { font-size: 0.85rem; opacity: 0.8; }
.project-card .project-location i { margin-right: 5px; }

/* Why Choose / Feature Cards */
.feature-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-card .feature-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.4rem;
}
.feature-card h5 { font-size: 1rem; margin-bottom: 0; }

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--sky-blue);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.value-card:hover { border-left-color: var(--orange); transform: translateX(5px); }
.value-card .value-icon { color: var(--sky-blue); font-size: 1.5rem; margin-bottom: 15px; }
.value-card h5 { margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
    padding: 20px 10px;
}
.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
}
.process-step h5 { font-size: 0.95rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--text-light); }

/* Industry Tags */
.industry-tag {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.industry-tag:hover { background: var(--gradient-primary); color: var(--white); transform: translateY(-3px); }
.industry-tag:hover i, .industry-tag:hover h6 { color: var(--white); }
.industry-tag i { font-size: 1.8rem; color: var(--sky-blue); margin-bottom: 10px; display: block; }
.industry-tag h6 { font-size: 0.85rem; margin: 0; }

/* Gallery */
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 250px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,33,55,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i { color: var(--white); font-size: 2rem; }
.gallery-item .gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(13,33,55,0.9));
    color: var(--white);
}
.gallery-item .gallery-info h6 { color: var(--white); font-size: 0.9rem; margin: 0; }

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.team-card .team-img {
    height: 250px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card .team-img i { font-size: 5rem; color: rgba(255,255,255,0.3); }
.team-card .team-body { padding: 25px; }
.team-card h5 { margin-bottom: 5px; }
.team-card .position { color: var(--sky-blue); font-weight: 600; font-size: 0.9rem; }

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    height: 100%;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--sky-blue);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card .stars { color: var(--orange); margin-bottom: 15px; }
.testimonial-card p { font-style: italic; color: var(--text-light); margin-bottom: 20px; }
.testimonial-card .client-name { font-weight: 700; color: var(--navy); }
.testimonial-card .client-company { font-size: 0.85rem; color: var(--sky-blue); }

/* FAQ Accordion */
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}
.faq-item .faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}
.faq-item .faq-question:hover { color: var(--sky-blue); }
.faq-item .faq-question i { color: var(--sky-blue); transition: var(--transition); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
}
.faq-item.active .faq-answer { padding: 0 25px 20px; max-height: 300px; }

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    transition: var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(41,171,226,0.15);
}
.contact-info-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    height: 100%;
}
.contact-info-card h4 { color: var(--white); margin-bottom: 25px; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.contact-info-item .icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--sky-light);
}
.contact-info-item h6 { color: var(--white); margin-bottom: 3px; font-size: 0.9rem; }
.contact-info-item p { margin: 0; opacity: 0.85; font-size: 0.9rem; }

/* Location Cards */
.location-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 3px solid var(--sky-blue);
}
.location-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.location-card.hq { border-top-color: var(--orange); }
.location-card .hq-badge {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}
.location-card h5 { margin-bottom: 5px; }
.location-card .region { color: var(--sky-blue); font-size: 0.85rem; font-weight: 600; }

/* Material Cards */
.material-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.material-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.material-card .material-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--sky-blue);
    font-size: 1.5rem;
}
.material-card .category-badge {
    background: var(--light-bg);
    color: var(--sky-blue);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

/* Sector List */
.sector-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.sector-item i { color: var(--sky-blue); margin-right: 12px; font-size: 1.1rem; }
.sector-item span { font-weight: 500; }

/* About Image */
.about-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}
.about-img-wrap img { width: 100%; }
.about-img-wrap .experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
}
.about-img-wrap .experience-badge .years {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}
.about-img-wrap .experience-badge span { font-size: 0.8rem; }

/* Mission Vision Cards */
.mv-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
}
.mv-card .mv-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.mv-card h4 { margin-bottom: 15px; }

/* CTA Section */
.cta-section { padding: 0; }
.cta-box {
    background: var(--gradient-primary);
    padding: 60px 40px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--white);
    margin: -40px 15px 60px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-hover);
}
.cta-box h2 { color: var(--white); margin-bottom: 15px; }
.cta-box p { opacity: 0.9; max-width: 650px; margin: 0 auto 25px; }
.cta-buttons .btn { margin: 5px; }

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 20px;
}
.site-footer h5 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.footer-logo { height: 40px; margin-bottom: 10px; }
.footer-brand h5 { color: var(--sky-blue); letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--sky-blue); padding-left: 5px; }
.footer-links i { font-size: 0.7rem; margin-right: 8px; color: var(--sky-blue); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 12px; font-size: 0.9rem; display: flex; align-items: flex-start; }
.footer-contact i { color: var(--sky-blue); margin-right: 12px; margin-top: 4px; width: 16px; }
.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--sky-blue); transform: translateY(-3px); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 30px 0 20px; }
.footer-bottom p { font-size: 0.85rem; margin: 0; }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { color: var(--white); transform: translateY(-3px); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.show { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--radius); }
.lightbox .close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* Alert Messages */
.alert-custom {
    border-radius: var(--radius);
    border: none;
    padding: 15px 20px;
}

/* Filter Buttons */
.filter-buttons { margin-bottom: 30px; text-align: center; }
.filter-btn {
    background: var(--white);
    border: 2px solid #e9ecef;
    padding: 8px 20px;
    border-radius: 50px;
    margin: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--gradient-accent);
    color: var(--white);
    border-color: transparent;
}

/* Profile Page */
.profile-section {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-bg);
}
.profile-header img { height: 80px; }
.profile-header h2 { margin-bottom: 5px; }
.profile-header .tagline { color: var(--sky-blue); font-weight: 600; }

/* Service Detail */
.service-detail-header {
    background: var(--gradient-primary);
    padding: 60px 0;
    color: var(--white);
}
.service-detail-header h1 { color: var(--white); }
.service-items-list { list-style: none; padding: 0; }
.service-items-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.service-items-list li i { color: var(--sky-blue); margin-right: 12px; }

/* Responsive */
@media (max-width: 991px) {
    .hero-slider .slide-content h1 { font-size: 2.2rem; }
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 1.8rem; }
}
@media (max-width: 767px) {
    .hero-slider { height: 70vh; min-height: 450px; }
    .hero-slider .slide-content h1 { font-size: 1.8rem; }
    .page-header h1 { font-size: 1.8rem; }
    .stat-card .stat-value { font-size: 2rem; }
    .top-bar { text-align: center; }
    .top-bar .col-md-4 { text-align: center !important; margin-top: 5px; }
    .contact-form, .contact-info-card { padding: 25px; }
    .cta-box { padding: 40px 20px; margin: -30px 10px 40px; }
    .profile-header { flex-direction: column; text-align: center; }
}
