/* 
* HELCOT Surgical - Main Stylesheet
* Version: 1.1
*/

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #1880d9;     /* Main blue - updated to darker blue */
    --secondary-color: #11a1e8;   /* Accent green - updated to teal  #16c79a */
    --tertiary-color: #f05454;    /* New accent red */
    --quaternary-color: #f6b93b;  /* New accent gold */
    --light-color: #f8f9fa;       /* Light background */
    --dark-color: #2d4059;        /* Dark text - updated to navy */
    --gray-color: #6c757d;        /* Gray text */
    --light-gray: #e9ecef;        /* Light gray for backgrounds */
    --white: #ffffff;             /* White */
    --border-radius: 8px;         /* Standard border radius - updated to more rounded */
    --box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.15); /* Enhanced shadow */
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
  
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.text-light-gray {
    color: rgba(255, 255, 255, 0.8);
}

.subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
}

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

.title-lg {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-color);
}

.btn {
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: #0056b3;
    border-color: #0056b3;
}

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

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #abd7f4; /* #008c43*/
    border-color: #008c43;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

section {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
}

.social-icons a {
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--light-gray);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: var(--white);
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.5rem 1rem;
}

.logo {
    height: 75px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    padding: 0.5rem;
    font-weight: 800;
    color: var(--dark-color);
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.navbar-nav .nav-link:hover::before, 
.navbar-nav .nav-link.active::before {
    width: 30%;
    opacity: 1;
}

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

.header .btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
}

.header .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transition: all 0.4s ease;
    z-index: -1;
}

.header .btn:hover::before {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(30, 86, 160, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(45, 64, 89, 0.75)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    color: var(--white);
    height: 70vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slide {
    height: 70vh; /* SLIDER HEGHT */
    width: 100%;
    position: relative;
}

.hero-slide-1 {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url('../assets/img/img_1.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-slide-2 {
    background-image: linear-gradient(to right, rgba(30, 86, 160, 0.8), rgba(30, 86, 160, 0.4)), url('../assets/img/img_2.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-slide-3 {
    background-image: linear-gradient(to right, rgba(225, 230, 236, 0.8), rgba(22, 199, 154, 0.4)), url('../assets/img/img_3.png');
    background-size: cover;
    background-position: center;
}

.hero-slide-4 {
    background-image: linear-gradient(to right, rgba(45, 64, 89, 0.8), rgba(45, 64, 89, 0.4)), url('../assets/img/img_4.png');
    background-size: cover;
    background-position: center;
}


.hero-content {
    max-width: 800px;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--secondary-color);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem; /* SLIDER TEXT FONT SIZE*/
    font-weight: 600; /* SLIDER TEXT BOLD */
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #ffffff;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.btn-hero {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero span {
    margin-right: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-hero i {
    margin-left: 5px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(45deg, var(--tertiary-color), var(--quaternary-color));
    transition: all 0.5s ease;
    z-index: 0;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-hero:hover::before {
    width: 100%;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 0.7;
    background: var(--white);
}

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

.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}

/* Hero slide animations */
.hero-slide .animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.hero-slide-active .hero-title {
    animation-delay: 0.3s;
}

.hero-slide-active .hero-subtitle {
    animation-delay: 0.5s;
}

.hero-slide-active .hero-btn {
    animation-delay: 0.7s;
}

/* ===== INTRODUCTION SECTION ===== */
.introduction {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.introduction::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, rgba(30, 86, 160, 0.05), rgba(22, 199, 154, 0.05));
    border-radius: 50%;
    transform: translate(250px, -250px);
    z-index: 0;
}

.introduction::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(240, 84, 84, 0.05), rgba(246, 185, 59, 0.05));
    border-radius: 50%;
    transform: translate(-150px, 150px);
    z-index: 0;
}

.intro-content {
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    margin-top: 2.5rem;
}

/* ===== FEATURES SECTION ===== */
.feature-box {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    background-color: var(--white);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-bottom: 3px solid transparent;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(22, 199, 154, 0.05);
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-box:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-10px);
    border-bottom: 3px solid var(--secondary-color);
}

.feature-box:hover::before {
    height: 100%;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.feature-box:hover .feature-icon {
    color: var(--secondary-color);
    transform: rotateY(180deg);
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.4s ease;
}

.feature-box:hover .feature-title::after {
    width: 50px;
}

.feature-content {
    color: var(--gray-color);
}

/* ===== PRODUCT SECTION ===== */
.product-card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05), 0 6px 6px rgba(0,0,0,0.07);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: transform 0.5s ease;
}

.product-card:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-10px);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    max-height: 400px;
    overflow: hidden;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image i {
    transition: all 0.8s ease;
    position: relative;
    z-index: 2;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(30, 86, 160, 0.1), rgba(22, 199, 154, 0.1));
    opacity: 0;
    transition: all 0.5s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-card:hover .product-image i {
    transform: scale(1.2) rotate(10deg);
    color: var(--secondary-color);
}

.product-details {
    padding: 2rem;
    position: relative;
}

.product-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--light-gray);
    transition: all 0.3s ease;
}

.product-card:hover .product-details::before {
    width: 80px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    gap: 10px;
}

.product-features span {
    font-size: 0.85rem;
    color: var(--gray-color);
    background-color: var(--light-gray);
    padding: 5px 10px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.product-features span i {
    color: var(--secondary-color);
    margin-right: 5px;
    font-size: 0.8rem;
}

.product-card:hover .product-features span {
    background-color: rgba(22, 199, 154, 0.1);
}

.product-card .btn {
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.product-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--tertiary-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.product-card .btn:hover::before {
    width: 100%;
}

.product-card .btn:hover {
    border-color: var(--tertiary-color);
}

.product-card .btn i {
    transition: transform 0.3s ease;
}

.product-card .btn:hover i {
    transform: translateX(5px);
}

/* ===== ABOUT US PAGE ===== */
.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.mission-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.mission-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(22, 199, 154, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -150px;
    left: -150px;
    border-radius: 50%;
    z-index: 0;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 86, 160, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
}

.benefit-card {
    position: relative;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
    z-index: 1;
    border-bottom: 3px solid transparent;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(22, 199, 154, 0.03);
    transition: all 0.4s ease;
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-card.active {
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-card.active::before {
    height: 100%;
    background-color: rgba(22, 199, 154, 0.05);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(22, 199, 154, 0.2);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.benefit-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-content h3::after {
    width: 60px;
}

.benefit-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.benefit-stats {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-right: 2rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-top: 0.25rem;
}

/* ===== INDUSTRY WE SERVE ===== */
.industry-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 86, 160, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(22, 199, 154, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.testimonial-wrapper {
    padding: 1rem 0 4rem;
    position: relative;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(30, 86, 160, 0.02);
    transition: all 0.4s ease;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
}

.testimonial-card:hover::before {
    height: 100%;
}

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

.testimonial-text {
    font-style: italic;
    color: var(--gray-color);
    position: relative;
    z-index: 1;
    padding: 0 10px 10px 30px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-swiper-next,
.testimonial-swiper-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonial-swiper-next {
    right: -20px;
}

.testimonial-swiper-prev {
    left: -20px;
}

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

.testimonial-swiper-next:after,
.testimonial-swiper-prev:after {
    font-size: 16px;
}

.testimonial-swiper .swiper-pagination {
    position: relative;
    bottom: -30px;
    z-index: 10;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-card {
    background-color: var(--primary-color);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.9;
    z-index: 0;
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 80%);
    z-index: 1;
}

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

.z-index-1 {
    position: relative;
    z-index: 1;
}

/* ===== CONTACT PAGE ===== */
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.contact-info-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: 100%;
}

.contact-info-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.form-control {
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

#map {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding-top: 5rem;
}

.footer h4, .footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

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

.social-icons-footer a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-icons-footer a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
    }
    
    .hero {
        height: auto;
       /* padding: 0.5rem 0;*/
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-box, .product-card, .industry-card, .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-info-box {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .testimonial-swiper-next {
        right: 0;
    }
    
    .testimonial-swiper-prev {
        left: 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}
