/* 
   MAK Heat Treat Solutions Website Styles
   Author: [Your Name]
   Version: 1.0
*/

/* ===== VARIABLES ===== */
:root {
    /* Brand Colors */
    --primary-orange: #f46929;
    --secondary-orange: #f7931e;
    --primary-blue: #61bee6;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    
    /* Font Families */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Roboto', sans-serif;
    
    /* Transitions */
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-orange);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-orange), var(--primary-blue));
}

.btn {
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
}

.btn-secondary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #4da8d0;
    border-color: #4da8d0;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.btn-outline:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* ===== HEADER STYLES ===== */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background-color: var(--dark-gray);
    padding: 10px 0;
    color: var(--white);
}

.top-bar a {
    color: var(--white);
    margin-right: 20px;
    font-size: 14px;
}

.top-bar a:hover {
    color: var(--primary-orange);
}

.top-bar i {
    margin-right: 5px;
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 5px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 60px;
}

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-orange);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--primary-orange);
}

.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 400;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-orange);
}

.quote-btn {
    margin-left: 15px;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #ccc;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer .contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer .contact-info i {
    margin-right: 10px;
    color: var(--primary-orange);
    font-size: 18px;
    margin-top: 5px;
}

.footer .contact-info a {
    color: #ccc;
}

.footer .contact-info a:hover {
    color: var(--primary-orange);
}

.footer .social-links {
    margin-top: 20px;
}

.footer .social-links a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-right: 10px;
    margin-left: 0;
}

.footer .social-links a:hover {
    background-color: var(--primary-orange);
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
    font-size: 14px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 5px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-orange);
    color: var(--white);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 15px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .quote-btn {
        margin: 10px 0 0;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .top-bar {
        text-align: center;
    }
    
    .top-bar .social-links {
        margin-top: 10px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    .footer-top {
        padding: 50px 0 20px;
    }
}

@media (max-width: 575px) {
    .navbar-brand img {
        max-height: 50px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}




/* Hero Section  */

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 0 15px;
    color: var(--white);
    margin-top: 150px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.slide-content h1 span {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.slide-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-btns .btn {
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.prev-slide,
.next-slide {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
    margin: 0 10px;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: var(--primary-orange);
}

.slider-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--primary-orange);
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Animation for slide content */
.slide.active .slide-content h1 {
    animation: fadeInUp 1s ease forwards;
}

.slide.active .slide-content p {
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.slide.active .hero-btns {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-slider {
        height: 70vh;
    }
    
    .slide-content {
        margin-top: 120px;
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 60vh;
    }
    
    .slide-content {
        margin-top: 100px;
        max-width: 100%;
        text-align: center;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
}



/* About us section Start */

/* About Section Styles */
.about-section {
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

/* About Image Styles */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-wrapper img {
    border-radius: 10px;
    transition: var(--transition-medium);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(244, 105, 41, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    z-index: 2;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--heading-font);
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 5px;
    font-weight: 500;
}

.about-small-image {
    position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.about-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shape-1, .shape-2 {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background-color: rgba(97, 190, 230, 0.2);
    top: -20px;
    left: -20px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    border: 3px dashed var(--primary-orange);
    opacity: 0.2;
    bottom: -30px;
    right: 30%;
}

/* About Content Styles */
.section-heading {
    margin-bottom: 30px;
}

.section-heading .subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-heading .subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-content p.lead {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--medium-gray);
}

/* Feature Items */
.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-item .icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(244, 105, 41, 0.2);
}

.feature-item .content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.feature-item .content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--medium-gray);
}

.about-cta {
    margin-top: 30px;
}

/* Vision & Mission Section */
.vision-mission-section {
    margin-top: 80px;
    padding: 60px 0 30px;
    background-color: var(--light-gray);
    position: relative;
}

.vision-mission-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 49%, var(--light-gray) 50%);
}

.vm-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vm-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 1;
}

.vision-card:before {
    background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
}

.mission-card:before {
    background: linear-gradient(to right, var(--primary-blue), #3a9cc2);
}

.values-card:before {
    background: linear-gradient(to right, #6a11cb, #2575fc);
}

.vm-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.vision-card .vm-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    box-shadow: 0 5px 15px rgba(244, 105, 41, 0.2);
}

.mission-card .vm-icon {
    background: linear-gradient(135deg, var(--primary-blue), #3a9cc2);
    box-shadow: 0 5px 15px rgba(97, 190, 230, 0.2);
}

.values-card .vm-icon {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.2);
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.vm-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: var(--medium-gray);
}

.values-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #6a11cb;
    font-size: 1.2rem;
}

.values-list li span {
    font-weight: 600;
    color: var(--dark-gray);
}

@media (max-width: 991px) {
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-small-image {
        width: 150px;
        height: 150px;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        padding: 15px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .section-heading .subtitle {
        font-size: 0.9rem;
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .about-content p.lead {
        font-size: 1.1rem;
    }
    
    .feature-item {
        margin-bottom: 20px;
    }
    
    .feature-item .icon {
        min-width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-item .content h4 {
        font-size: 1rem;
    }
    
    .vm-card {
        padding: 25px;
    }
    
    .vm-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .vm-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .about-image-wrapper {
        padding: 10px;
    }
    
    .about-small-image {
        width: 120px;
        height: 120px;
        top: 30px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 10px;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
    
    .shape-1 {
        width: 70px;
        height: 70px;
    }
    
    .shape-2 {
        width: 100px;
        height: 100px;
    }
    
    .section-heading h2 {
        font-size: 1.6rem;
    }
    
    .about-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .about-cta .btn {
        width: 100%;
    }
    
    .about-cta .btn-outline {
        margin-left: 0 !important;
    }
    
    .vm-card {
        padding: 20px;
    }
    
    .vm-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .vm-card h3 {
        font-size: 1.2rem;
    }
}



/* services section start */

/* Services Section Styles */
.services-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

/* Section Header */
.section-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 15px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-orange);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(97, 190, 230, 0.3);
    z-index: -1;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* Services Tabs */
.services-tabs {
    margin-top: 50px;
}

.services-tabs .nav-tabs {
    border: none;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.services-tabs .nav-item {
    margin: 0 10px 10px;
}

.services-tabs .nav-link {
    border: none;
    background-color: var(--light-gray);
    color: var(--medium-gray);
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.services-tabs .nav-link i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.services-tabs .nav-link.active,
.services-tabs .nav-link:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(244, 105, 41, 0.3);
}

.services-tabs .tab-content {
    padding: 20px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Service Content */
.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.service-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features .feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    min-width: 30px;
    margin-right: 15px;
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.service-cta {
    display: flex;
    gap: 15px;
}

/* Service Image */
.service-image {
    position: relative;
    padding: 20px;
}

.service-image img {
    border-radius: 10px;
    transition: var(--transition-medium);
}

.image-badge {
    position: absolute;
    top: 40px;
    right: 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(244, 105, 41, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    z-index: 2;
}

.image-badge span:first-child {
    font-weight: 700;
    font-size: 1.1rem;
}

.image-badge span:last-child {
    font-size: 0.9rem;
}

.blue-badge {
    background: linear-gradient(135deg, var(--primary-blue), #3a9cc2);
    box-shadow: 0 5px 15px rgba(97, 190, 230, 0.3);
}

.purple-badge {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.green-badge {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    box-shadow: 0 5px 15px rgba(17, 153, 142, 0.3);
}

.shape-circle,
.shape-dots {
    position: absolute;
    z-index: 1;
}

.shape-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(244, 105, 41, 0.1);
    bottom: 30px;
    left: 0;
}

.blue-circle {
    background-color: rgba(97, 190, 230, 0.1);
}

.purple-circle {
    background-color: rgba(106, 17, 203, 0.1);
}

.green-circle {
    background-color: rgba(17, 153, 142, 0.1);
}

.shape-dots {
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--primary-orange) 2px, transparent 2px);
    background-size: 10px 10px;
    top: 30px;
    left: 30px;
}

.blue-dots {
    background-image: radial-gradient(var(--primary-blue) 2px, transparent 2px);
}

.purple-dots {
    background-image: radial-gradient(#6a11cb 2px, transparent 2px);
}

.green-dots {
    background-image: radial-gradient(#11998e 2px, transparent 2px);
}

/* Service Cards */
.service-cards-container {
    margin-top: 80px;
    padding: 30px 0;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(244, 105, 41, 0.2);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--primary-blue), #3a9cc2);
    box-shadow: 0 5px 15px rgba(97, 190, 230, 0.2);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.2);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    box-shadow: 0 5px 15px rgba(17, 153, 142, 0.2);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary-orange);
    font-weight: 500;
    display: inline-block;
    transition: var(--transition-fast);
}

.card-link i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.service-card:hover .card-link i {
    transform: translateX(5px);
}

.service-card:nth-child(2) .card-link {
    color: var(--primary-blue);
}

.service-card:nth-child(3) .card-link {
    color: #6a11cb;
}

.service-card:nth-child(4) .card-link {
    color: #11998e;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
    transition: var(--transition-fast);
    z-index: -1;
}

.service-card:hover .hover-overlay {
    height: 100%;
    opacity: 0.05;
}

.service-card:nth-child(2) .hover-overlay {
    background: linear-gradient(to right, var(--primary-blue), #3a9cc2);
}

.service-card:nth-child(3) .hover-overlay {
    background: linear-gradient(to right, #6a11cb, #2575fc);
}

.service-card:nth-child(4) .hover-overlay {
    background: linear-gradient(to right, #11998e, #38ef7d);
}

/* CTA Banner */
.service-cta-banner {
    margin-top: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    padding: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.cta-content {
    padding: 30px;
    color: var(--white);
    position: relative;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-content .btn-light {
    background-color: var(--white);
    color: var(--primary-orange);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-content .btn-light:hover {
    background-color: var(--dark-gray);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-content h3 {
        font-size: 1.8rem;
    }
    
    .service-image {
        margin-top: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content .btn-light {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .services-tabs .nav-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .services-tabs .nav-link i {
        font-size: 1rem;
    }
    
    .service-content {
        padding: 15px 0;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .image-badge {
        width: 100px;
        padding: 10px;
    }
    
    .image-badge span:first-child {
        font-size: 1rem;
    }
    
    .image-badge span:last-child {
        font-size: 0.8rem;
    }
    
    .service-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .services-tabs {
        margin-top: 30px;
    }
    
    .services-tabs .nav-tabs {
        margin-bottom: 20px;
    }
    
    .services-tabs .nav-item {
        margin: 0 5px 10px;
        width: calc(50% - 10px);
    }
    
    .services-tabs .nav-link {
        padding: 8px 15px;
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .services-tabs .nav-link i {
        margin-right: 5px;
    }
    
    .services-tabs .tab-content {
        padding: 10px;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
    }
    
    .service-image {
        padding: 10px;
    }
    
    .shape-circle {
        width: 70px;
        height: 70px;
    }
    
    .shape-dots {
        width: 60px;
        height: 60px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .cta-content {
        padding: 20px;
    }
}


/* Why choose us section start  */

/* Why Choose Us Section Styles */
.why-choose-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

/* Section Heading */
.section-heading {
    margin-bottom: 30px;
}

.section-heading .subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-heading .subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-heading h2 span {
    position: relative;
    z-index: 1;
}

.section-heading h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(244, 105, 41, 0.2);
    z-index: -1;
}

.why-choose-content p.lead {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

/* Accordion Styles */
.why-choose-accordion {
    margin-bottom: 40px;
}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 15px;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px !important;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-gray);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--primary-orange);
    box-shadow: 0 10px 20px rgba(244, 105, 41, 0.1);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(244, 105, 41, 0.3);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F46929'%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");
}

.accordion-button .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    margin-right: 15px;
    color: var(--white);
    flex-shrink: 0;
}

.accordion-button .title {
    flex: 1;
}

.accordion-body {
    padding: 20px;
    color: var(--medium-gray);
}

.accordion-body p {
    margin-bottom: 0;
}

/* CTA Section */
.why-choose-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.experience-tag {
    display: flex;
    align-items: center;
    background-color: var(--light-gray);
    padding: 10px 20px;
    border-radius: 50px;
}

.experience-tag .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-right: 10px;
    line-height: 1;
}

.experience-tag .text {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Stats Container */
.stats-container {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    margin-bottom: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.stat-item:nth-child(even)::after {
    display: none;
}

.stat-item:nth-child(3)::before,
.stat-item:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(244, 105, 41, 0.2);
}

.stat-item:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, var(--primary-blue), #3a9cc2);
    box-shadow: 0 5px 15px rgba(97, 190, 230, 0.2);
}

.stat-item:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.2);
}

.stat-item:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    box-shadow: 0 5px 15px rgba(17, 153, 142, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.2;
    margin-bottom: 5px;
    font-family: var(--heading-font);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Image Section */
.why-choose-image {
    position: relative;
    padding: 20px;
}

.why-choose-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.quality-badge {
    top: 40px;
    left: 0;
    transform: translateX(-30%);
}

.support-badge {
    bottom: 40px;
    right: 0;
    transform: translateX(30%);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--white);
    font-size: 1.2rem;
}

.support-badge .badge-icon {
    background: linear-gradient(135deg, var(--primary-blue), #3a9cc2);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text span:first-child {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.2;
}

.badge-text span:last-child {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.shape-circle,
.shape-dots {
    position: absolute;
    z-index: 0;
}

.shape-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(97, 190, 230, 0.1);
    bottom: 0;
    right: 0;
    transform: translate(30%, 30%);
}

.shape-dots {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary-orange) 2px, transparent 2px);
    background-size: 10px 10px;
    top: 0;
    left: 0;
    transform: translate(-30%, -30%);
}

/* Testimonials Section */
.testimonials-slider {
    margin-top: 80px;
    padding: 60px 0 30px;
    background-color: var(--light-gray);
    position: relative;
}

.testimonials-slider:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 49%, var(--light-gray) 50%);
}

.testimonials-header {
    margin-bottom: 40px;
}

.testimonials-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.testimonials-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    padding: 20px 0;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 20px 10px;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(244, 105, 41, 0.1);
    font-size: 3rem;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1rem;
}

/* Swiper Controls */
.swiper-container {
    padding-bottom: 60px;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--medium-gray);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-orange);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-orange);
    transition: var(--transition-fast);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .section-heading h2 {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .floating-badge {
        padding: 8px 12px;
    }
    
    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .badge-text span:first-child {
        font-size: 1rem;
    }
    
    .badge-text span:last-child {
        font-size: 0.75rem;
    }
}

@media (max-width: 991px) {
    .why-choose-content {
        margin-bottom: 50px;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .why-choose-content p.lead {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        padding: 15px;
        font-size: 1rem;
    }
    
    .accordion-button .icon {
        width: 35px;
        height: 35px;
    }
    
    .experience-tag .number {
        font-size: 1.6rem;
    }
    
    .experience-tag .text {
        font-size: 0.8rem;
    }
    
    .stats-container {
        padding: 20px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
    
    .testimonials-header h3 {
        font-size: 1.8rem;
    }
    
    .testimonials-header p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .section-heading .subtitle {
        font-size: 0.9rem;
        padding-left: 30px;
    }
    
    .section-heading .subtitle:before {
        width: 20px;
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-content p.lead {
        font-size: 1rem;
    }
    
    .accordion-button {
        font-size: 0.95rem;
    }
    
    .accordion-button .icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        margin-right: 10px;
    }
    
    .why-choose-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .experience-tag {
        width: 100%;
        justify-content: center;
    }
    
    .stat-item {
        padding: 15px 5px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .floating-badge {
        transform: none !important;
    }
    
    .quality-badge {
        top: 20px;
        left: 20px;
    }
    
    .support-badge {
        bottom: 20px;
        right: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
        margin: 15px 5px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .section-heading h2 {
        font-size: 1.6rem;
    }
    
    .accordion-body {
        padding: 15px;
    }
    
    .accordion-body p {
        font-size: 0.9rem;
    }
    
    .stats-container {
        padding: 15px;
    }
    
    .stat-item {
        margin-bottom: 10px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-text {
        font-size: 0.75rem;
    }
    
    .why-choose-image {
        padding: 10px;
    }
    
    .floating-badge {
        padding: 6px 10px;
    }
    
    .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .badge-text span:first-child {
        font-size: 0.9rem;
    }
    
    .badge-text span:last-child {
        font-size: 0.7rem;
    }
    
    .shape-circle {
        width: 100px;
        height: 100px;
    }
    
    .shape-dots {
        width: 70px;
        height: 70px;
    }
    
    .testimonials-header h3 {
        font-size: 1.6rem;
    }
    
    .testimonials-header p {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
}


/* Client seection start */

/* Key Clients Section Styles */
.key-clients-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

/* Section Header */
.section-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 15px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-orange);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(244, 105, 41, 0.2);
    z-index: -1;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* Clients Carousel */
.clients-carousel-container {
    position: relative;
    padding: 20px 0;
    margin-bottom: 60px;
}

.clients-carousel {
    position: relative;
    overflow: hidden;
}

.client-logo-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.client-logo-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-fast);
}

.client-logo-wrapper:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Gradient Overlays */
.carousel-overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.overlay-left {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.overlay-right {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Client Stats */
.client-stats {
    margin-bottom: 50px;
}

.client-stats .stat-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition-fast);
}

.client-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-stats .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(244, 105, 41, 0.2);
}

.client-stats .stat-item:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, var(--primary-blue), #3a9cc2);
    box-shadow: 0 5px 15px rgba(97, 190, 230, 0.2);
}

.client-stats .stat-item:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.2);
}

.client-stats .stat-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.client-stats .stat-content p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* CTA */
.client-cta {
    margin-top: 30px;
}

.client-cta p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .client-logo-wrapper {
        height: 100px;
    }
    
    .client-logo {
        max-height: 60px;
    }
    
    .client-stats .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .client-stats .stat-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .client-logo-wrapper {
        height: 90px;
        padding: 15px;
    }
    
    .client-logo {
        max-height: 50px;
    }
    
    .carousel-overlay {
        width: 70px;
    }
    
    .client-stats .stat-item {
        margin-bottom: 20px;
    }
    
    .client-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .client-logo-wrapper {
        height: 80px;
        padding: 12px;
    }
    
    .client-logo {
        max-height: 45px;
    }
    
    .carousel-overlay {
        width: 50px;
    }
    
    .client-stats .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-right: 15px;
    }
    
    .client-stats .stat-content h3 {
        font-size: 1.1rem;
    }
    
    .client-stats .stat-content p {
        font-size: 0.9rem;
    }
    
    .client-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .client-logo-wrapper {
        height: 70px;
        padding: 10px;
    }
    
    .client-logo {
        max-height: 40px;
    }
    
    .clients-carousel-container {
        margin-bottom: 40px;
    }
    
    .carousel-overlay {
        width: 40px;
    }
    
    .client-stats .stat-item {
        padding: 15px;
    }
    
    .client-stats .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 12px;
    }
    
    .client-stats .stat-content h3 {
        font-size: 1rem;
    }
    
    .client-stats .stat-content p {
        font-size: 0.8rem;
    }
    
    .client-cta {
        margin-top: 20px;
    }
    
    .client-cta p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}



/* certificaiton section start */

/* Certifications Section Styles */
.certifications-section {
    position: relative;
    background-color: var(--light-gray);
    overflow: hidden;
}

.section-padding-sm {
    padding: 60px 0;
}

/* Section Heading */
.section-heading {
    margin-bottom: 30px;
}

.section-heading .subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-heading .subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-heading h2 span {
    color: var(--primary-orange);
    position: relative;
}

.section-heading p.lead {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.certification-card {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certification-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.certification-icon img {
    max-width: 100%;
    max-height: 100%;
}

.certification-details {
    flex: 1;
}

.certification-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.certification-details p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 10px;
}

.certification-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.certification-meta span {
    font-size: 0.8rem;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
}

.certification-meta span i {
    color: var(--primary-orange);
    margin-right: 5px;
    font-size: 0.9rem;
}

/* Certification Note */
.certifications-note {
    display: flex;
    align-items: center;
    background-color: rgba(97, 190, 230, 0.1);
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 5px 5px 0;
    padding: 15px 20px;
}

.note-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    flex-shrink: 0;
}

.note-content p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Contact Banner */
.contact-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(244, 105, 41, 0.2);
}

.contact-banner-content {
    position: relative;
    z-index: 2;
}

.contact-banner h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-banner p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

/* Contact Options */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-option {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    transition: var(--transition-fast);
}

.contact-option:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.option-icon {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.option-content a {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.option-content a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-control {
    height: auto;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 0.95rem;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.contact-form .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(244, 105, 41, 0.1);
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form .btn {
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
}

.contact-form .btn-block {
    width: 100%;
}

/* Decorative Elements */
.banner-shape-1,
.banner-shape-2 {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.banner-shape-1 {
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    top: -50px;
    right: -50px;
}

.banner-shape-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    bottom: -70px;
    left: -70px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .section-heading h2 {
        font-size: 2.2rem;
    }
    
    .section-heading p.lead {
        font-size: 1rem;
    }
    
    .certification-card {
        padding: 15px;
    }
    
    .certification-icon {
        width: 60px;
        height: 60px;
    }
    
    .certification-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-banner h3 {
        font-size: 1.6rem;
    }
    
    .option-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .certifications-content {
        margin-bottom: 40px;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .certifications-grid {
        gap: 15px;
    }
    
    .certification-icon {
        width: 50px;
        height: 50px;
    }
    
    .certification-details h3 {
        font-size: 1rem;
    }
    
    .certification-details p {
        font-size: 0.85rem;
    }
    
    .certification-meta span {
        font-size: 0.75rem;
    }
    
    .note-icon {
        width: 35px;
        height: 35px;
    }
    
    .note-content p {
        font-size: 0.9rem;
    }
    
    .contact-banner {
        padding: 25px;
    }
    
    .contact-banner h3 {
        font-size: 1.5rem;
    }
    
    .contact-banner p {
        font-size: 0.95rem;
    }
    
    .contact-option {
        padding: 12px;
    }
    
    .option-content h4 {
        font-size: 0.95rem;
    }
    
    .option-content a {
        font-size: 1rem;
    }
    
    .contact-form-wrapper h4 {
        font-size: 1.1rem;
    }
    
    .contact-form .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .section-padding-sm {
        padding: 50px 0;
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .certifications-note {
        padding: 12px 15px;
    }
    
    .contact-options {
        gap: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .section-heading .subtitle {
        font-size: 0.9rem;
        padding-left: 30px;
    }
    
    .section-heading .subtitle:before {
        width: 20px;
    }
    
    .section-heading h2 {
        font-size: 1.6rem;
    }
    
    .section-heading p.lead {
        font-size: 0.95rem;
    }
    
    .certification-card {
        padding: 12px;
    }
    
    .certification-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .certification-details h3 {
        font-size: 0.95rem;
    }
    
    .certification-details p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .certification-meta span {
        font-size: 0.7rem;
    }
    
    .certifications-note {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .note-icon {
        margin-bottom: 10px;
    }
    
    .contact-banner {
        padding: 20px;
    }
    
    .contact-banner h3 {
        font-size: 1.4rem;
    }
    
    .contact-banner p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .contact-form-wrapper {
        padding: 15px;
    }
    
    .contact-form-wrapper h4 {
        font-size: 1rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 12px;
    }
    
    .contact-form .btn {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
}





/* Key milestone about section */

/* Milestones Section Styles */
.milestones-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

/* Section Header */
.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-orange);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(244, 105, 41, 0.2);
    z-index: -1;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, rgba(244, 105, 41, 0.3), rgba(97, 190, 230, 0.3));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;

}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(244, 105, 41, 0.2);
}

.timeline-item:nth-child(even) .timeline-dot {
    background-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(97, 190, 230, 0.2);
}

.timeline-date {
    position: absolute;
    top: 0;
    left: calc(50% + 30px);
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(-50%);
    box-shadow: 0 3px 10px rgba(244, 105, 41, 0.2);
}

.timeline-item:nth-child(even) .timeline-date {
    left: auto;
    right: calc(50% + 30px);
    background-color: var(--primary-blue);
    box-shadow: 0 3px 10px rgba(97, 190, 230, 0.2);
}

.timeline-content {
    position: relative;
    width: calc(50% - 50px);
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    top: 25px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.timeline-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.timeline-content:hover .timeline-image img {
    transform: scale(1.05);
}

/* Future Vision */
.future-vision {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue), #3a9cc2);
    border-radius: 10px;
    padding: 30px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(97, 190, 230, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vision-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.vision-content {
    flex: 1;
}

.vision-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.vision-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-date {
        left: 70px;
        top: -10px;
    }
    
    .timeline-item:nth-child(even) .timeline-date {
        left: 70px;
        right: auto;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-right: 20px;
    }
    
    .vision-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-image {
        height: 160px;
    }
    
    .future-vision {
        padding: 25px;
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .timeline-date {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .timeline-image {
        height: 140px;
    }
    
    .future-vision {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .vision-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .vision-content h3 {
        font-size: 1.2rem;
    }
    
    .vision-content p {
        font-size: 0.95rem;
    }
}





/* Team Section */

/* Team Section Styles */
.team-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

/* Section Header */
.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-orange);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(244, 105, 41, 0.2);
    z-index: -1;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* Team Grid */
.team-grid {
    margin-bottom: 50px;
}

/* Team Member */
.team-member {
    margin-bottom: 30px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transition: var(--transition-fast);
}

.team-member:hover .member-social {
    bottom: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--white);
    color: var(--primary-orange);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.member-position {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.member-position::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-orange);
}

.member-description {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Team CTA */
.team-cta {
    margin-top: 20px;
}

.team-cta p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .member-image img {
        height: 260px;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .member-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .member-image img {
        height: 240px;
    }
    
    .team-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .member-image img {
        height: 260px;
    }
    
    .team-cta {
        margin-top: 10px;
    }
    
    .team-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .member-image img {
        height: 280px;
    }
    
    .member-info {
        padding: 15px;
    }
    
    .member-name {
        font-size: 1rem;
    }
    
    .member-position {
        font-size: 0.85rem;
    }
    
    .member-description {
        font-size: 0.8rem;
    }
    
    .team-cta p {
        font-size: 0.95rem;
    }
}





/* Gallery Page */

/* Product Gallery Section Styles */
.product-gallery-section {
    background-color: var(--white);
    position: relative;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 15px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--medium-gray);
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 30px;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    background-color: rgba(244, 105, 41, 0.1);
    color: var(--primary-orange);
}

.filter-btn.active {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.gallery-item {
    transition: all 0.4s ease;
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.gallery-img-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.gallery-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-wrap img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
    width: 100%;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.gallery-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.category-tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--primary-orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
}

/* Technical Specifications */
.technical-specs {
    background-color: var(--light-gray);
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.specs-header {
    text-align: center;
    margin-bottom: 30px;
}

.specs-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.specs-header p {
    color: var(--medium-gray);
}

.specs-tabs .nav-tabs {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.specs-tabs .nav-link {
    border: none;
    color: var(--medium-gray);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 0;
    position: relative;
    transition: var(--transition-fast);
}

.specs-tabs .nav-link:hover {
    color: var(--primary-orange);
}

.specs-tabs .nav-link.active {
    color: var(--primary-orange);
    background-color: transparent;
}

.specs-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-orange);
}

.specs-table-wrapper {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.specs-table th {
    background-color: rgba(244, 105, 41, 0.1);
    color: var(--dark-gray);
    font-weight: 600;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .technical-specs {
        padding: 30px;
    }
    
    .specs-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-img-wrap img {
        height: 250px;
    }
    
    .gallery-info h4 {
        font-size: 1.1rem;
    }
    
    .technical-specs {
        padding: 25px 20px;
    }
    
    .specs-header h3 {
        font-size: 1.4rem;
    }
    
    .specs-tabs .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-overlay {
        padding: 20px;
    }
    
    .technical-specs {
        padding: 20px 15px;
    }
    
    .specs-tabs .nav-tabs {
        flex-wrap: wrap;
    }
    
    .specs-tabs .nav-link {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}



/* Services section */
/* Services Page Styles */

/* Page Header */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    color: var(--white);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-orange);
}

/* Service Categories Section */
.service-categories-section {
    background-color: var(--white);
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Tabs */
.service-tabs .nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 50px;
}

.service-tabs .nav-link {
    border: none;
    background: transparent;
    color: var(--medium-gray);
    padding: 20px 30px;
    margin: 0 10px;
    border-radius: 10px;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.service-tabs .nav-link i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(244, 105, 41, 0.3);
}

.service-tabs .nav-link:hover {
    background-color: var(--light-gray);
    color: var(--primary-orange);
}

.service-tabs .nav-link.active:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-medium);
    border: 1px solid var(--light-gray);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 2rem;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

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

.service-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--medium-gray);
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Detailed Services Section */
.detailed-services-section {
    background-color: var(--light-gray);
}

.service-detail {
    margin-bottom: 80px;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-detail-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.service-detail-content .lead {
    font-size: 1.2rem;
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 20px;
}

.specifications, .benefits {
    margin-top: 30px;
}


.specifications h4, .benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-orange);
    display: inline-block;
}

.specifications ul, .benefits ul {
    list-style: none;
    padding: 0;
}

.specifications li, .benefits li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--medium-gray);
}

.specifications li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

.benefits li:before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

.service-detail-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 105, 41, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
    cursor: pointer;
}

.service-detail-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Process Flow Section */
.process-flow-section {
    background: var(--white);
}

.process-flow-container {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 40px;
}

.process-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.process-tab {
    background: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    color: var(--medium-gray);
    font-weight: 500;
    transition: var(--transition-fast);
    cursor: pointer;
}

.process-tab.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(244, 105, 41, 0.3);
}

.process-tab:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.process-diagram {
    display: none;
}

.process-diagram.active {
    display: block;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition-fast);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--medium-gray);
}

.process-step.active .step-circle,
.process-step:hover .step-circle {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-color: var(--primary-orange);
}

.process-step.active .step-number,
.process-step:hover .step-number {
    color: var(--white);
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

.process-arrow {
    color: var(--primary-orange);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.process-details {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    min-height: 200px;
}

.detail-card {
    display: none;
}

.detail-card.active {
    display: block;
}

.detail-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--medium-gray);
}

.detail-card li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 1.2rem;
}

/* Equipment Section */
.equipment-section {
    background-color: var(--light-gray);
}

.equipment-nav {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.equipment-nav .nav-link {
    border: none;
    background: transparent;
    color: var(--medium-gray);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    text-align: left;
}

.equipment-nav .nav-link i {
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
}

.equipment-nav .nav-link.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
}

.equipment-nav .nav-link:hover {
    background-color: var(--light-gray);
    color: var(--primary-orange);
}

.equipment-content {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.equipment-table-wrapper {
    overflow-x: auto;
}

.equipment-table {
    margin: 0;
    border: none;
}

.equipment-table th {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    border: none;
    padding: 15px;
    font-weight: 600;
    text-align: center;
}

.equipment-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--light-gray);
    vertical-align: top;
}

.equipment-table tbody tr:hover {
    background-color: var(--light-gray);
}

.spec-list, .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li, .feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.spec-list li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.capacity-badge {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Quality Section */
.quality-section {
    background: var(--white);
}

.quality-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.quality-content .lead {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.quality-steps {
    margin-top: 30px;
}

.quality-step {
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition-fast);
}

.quality-step:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.step-content li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

/* Quality Facilities */
.quality-facilities h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

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

.facility-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-medium);
    text-align: center;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.facility-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.facility-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: var(--light-gray);
    color: var(--medium-gray);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Quality Standards */
.quality-standards {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--light-gray);
}

.standard-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: var(--transition-medium);
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.standard-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.standard-logo img {
    max-height: 60px;
    max-width: 100px;
}

.standard-logo i {
    font-size: 3rem;
    color: var(--primary-orange);
}

.standard-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.standard-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Quality Metrics */
.quality-metrics {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--light-gray);
}

.metric-card {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.metric-card:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-medium);
    transform: scale(0);
}

.metric-card:hover:before {
    transform: scale(1);
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244, 105, 41, 0.3);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.metric-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.metric-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern-overlay.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

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

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

.btn-white {
    background: var(--white);
    color: var(--primary-orange);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: var(--transition-fast);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: var(--transition-fast);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-orange);
    border-color: var(--white);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-steps {
        flex-direction: column;
        align-items: stretch;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
        align-self: center;
    }
    
    .process-step {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-tabs .nav-link {
        min-width: 150px;
        padding: 15px 20px;
    }
    
    .service-tabs .nav-link i {
        font-size: 1.5rem;
    }
    
    .service-detail {
        padding: 30px 20px;
    }
    
    .service-detail-content h3 {
        font-size: 1.8rem;
    }
    
    .equipment-nav .nav-link {
        justify-content: center;
        text-align: center;
    }
    
    .equipment-nav .nav-link i {
        margin-right: 10px;
    }
    
    .quality-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        margin: 0 auto 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        margin-top: 30px;
        text-align: center;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 10px 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .service-tabs {
        margin-bottom: 40px;
    }
    
    .service-tabs .nav-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .service-tabs .nav-link {
        margin: 5px 0;
        width: 200px;
    }
    
    .service-detail {
        margin-bottom: 40px;
        padding: 20px;
    }
    
    .service-detail-image img {
        height: 250px;
    }
    
    .process-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .process-tab {
        width: 100%;
        text-align: center;
    }
    
    .process-flow-container {
        padding: 20px;
    }
    
    .equipment-table th,
    .equipment-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .facility-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-detail-content h3 {
        font-size: 1.5rem;
    }
    
    .service-detail-content .lead {
        font-size: 1.1rem;
    }
    
    .process-flow-container {
        padding: 15px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        font-size: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .equipment-content {
        padding: 20px;
    }
    
    .equipment-table-wrapper {
        font-size: 0.8rem;
    }
    
    .quality-content h3,
    .quality-facilities h3 {
        font-size: 1.5rem;
    }
    
    .facility-card {
        padding: 20px;
    }
    
    .facility-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .standard-card {
        padding: 20px;
    }
    
    .standard-logo {
        height: 60px;
    }
    
    .standard-logo i {
        font-size: 2rem;
    }
    
    .metric-card {
        padding: 20px;
    }
    
    .metric-icon {
        font-size: 2rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}

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

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Print Styles */
@media print {
    .page-header,
    .cta-section,
    .process-tabs,
    .equipment-nav {
        display: none;
    }
    
    .service-card,
    .facility-card,
    .standard-card,
    .metric-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .equipment-table {
        font-size: 0.8rem;
    }
    
    .equipment-table th {
        background: #f5f5f5 !important;
        color: #333 !important;
    }
}



/* Contact section page */

/* Contact Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-orange);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Info Cards */
.contact-info-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
    height: 100%;
    border-top: 4px solid var(--primary-orange);
}

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

.contact-info-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(244, 105, 41, 0.3);
}

.contact-info-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.contact-info-card p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.info-link {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.info-link:hover {
    color: var(--secondary-orange);
}

/* Main Contact Section */
.main-contact-section {
    background-color: var(--light-gray);
}

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

.section-heading .subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-heading .subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
}

.section-heading h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.section-heading p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

/* Form Styles */
.contact-form .form-label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(244, 105, 41, 0.25);
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: #dc3545;
}

.contact-form .form-control.is-valid,
.contact-form .form-select.is-valid {
    border-color: #28a745;
}

.contact-form .invalid-feedback {
    font-size: 0.875rem;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.contact-form .form-check-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.contact-form .form-check-label a {
    color: var(--primary-orange);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.contact-details-card,
.quick-quote-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.contact-details-card h3,
.quick-quote-card h4 {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-weight: 600;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-icon {
    min-width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-orange);
    font-size: 1rem;
}

.detail-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.detail-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Quick Quote Card */
.quick-quote-card {
    background: linear-gradient(135deg, var(--primary-blue), #4da8d0);
    color: var(--white);
}

.quick-quote-card h4 {
    color: var(--white);
}

.quick-quote-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.quick-quote-form .form-control,
.quick-quote-form .form-select {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--dark-gray);
}

.quick-quote-form .form-control::placeholder {
    color: var(--medium-gray);
}

.quick-quote-form .form-control:focus,
.quick-quote-form .form-select:focus {
    background-color: var(--white);
    box-shadow: none;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
    max-width: 300px;
}

.map-info h4 {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.map-info p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.map-wrapper iframe {
    filter: grayscale(20%);
    transition: var(--transition-fast);
}

.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

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

/* Loading States */
.form-loading {
    position: relative;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Success/Error Messages */
.alert-custom {
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-success-custom {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error-custom {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .contact-sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .map-overlay {
        position: static;
        margin-bottom: 20px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-info-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .contact-info-card .icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .contact-details-card,
    .quick-quote-card {
        padding: 25px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .contact-info-section {
        margin-top: -30px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .section-heading .subtitle {
        padding-left: 0;
    }
    
    .section-heading .subtitle:before {
        display: none;
    }
    
    .contact-details-card,
    .quick-quote-card {
        padding: 20px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-icon {
        margin: 0 auto 10px;
    }
}
