/*---------------------------
# General Styles
---------------------------*/
:root {
    --primary-color: #009EA7;
    --secondary-color: #003366;
    --accent-color: #ff9800;
    --text-color: #333333;
    --light-text: #777777;
    --light-bg: #f9f9f9;
    --dark-bg: #1a1a1a;
    --border-color: #e5e5e5;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}
.sidebar-menu li.active > a,
.sidebar-menu li > a:hover {
    border-left: 3px solid #007bff; /* Blue line */
    background-color: #f4f4f4; /* Optional: light background on active/hover */
    color: #007bff; /* Optional: text color on active/hover */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
    
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #000000;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background-color: #009EA7;
    color: #fff;
}

.btn-primary:hover {
    background-color: #008a91;
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #009EA7;
}


.section-title h2:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
}

.separator, 
.widget-title:after,
.section-title h2:before,
.section-title h2:after {
    display: none !important;
}

/*---------------------------
# Header Styles
---------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; /* Ensure it has a solid background */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.header.sticky {
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar {
    padding: 0;
    background-color: #ffffff;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: #009EA7;
    font-weight: 700;
    font-size: 24px;
    transition: all 0.3s ease;
}

.header.sticky .navbar-brand {
    color: #009EA7;
}

.logo-img {
    height: 70px;
    margin-right: 15px;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.2));
}

.header.sticky .logo-img {
    height: 60px;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: #333333;
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s ease;
}

.header.sticky .nav-link {
    color: #333333;
}

.nav-link:hover,
.nav-link.active {
    color: #009EA7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: inline-block;
    transition: var(--transition);
}

.header.sticky .navbar-toggler-icon {
    background-color: var(--text-color);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

.header.sticky .navbar-toggler-icon::before,
.header.sticky .navbar-toggler-icon::after {
    background-color: var(--text-color);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler.active .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.active .navbar-toggler-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        margin-top: 15px;
    }
    
    .nav-link {
        color: var(--text-color);
        padding: 10px 0;
    }
    
    .nav-link::after {
        display: none;
    }
}

/*---------------------------
# Hero Section Styles
---------------------------*/
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.mp4');
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.hero-buttons .btn-outline-primary {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

.hero-buttons .btn-outline-primary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-scroll a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/*---------------------------
# About Section
---------------------------*/
.about-section {
    position: relative;
    overflow: hidden;
}

.about-image {
    position: relative;
    margin-bottom: 30px;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 120px;
    height: 120px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding: 30px 0;
}

.about-content .section-title {
    text-align: left;
}

/* .about-content .separator {
    margin-left: 0;
} */

.about-stats {
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-text);
    margin-bottom: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.about-content p {
    margin-bottom: 20px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*---------------------------
# Services Section
---------------------------*/
.service-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: #e6f0ff;
    border-radius: 50%;
    margin: 0 auto 20px;
    color: #0056b3;
    font-size: 30px;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/*---------------------------
# Products Styles
---------------------------*/
.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-icon {
    margin-bottom: 20px;
}

.product-icon i {
    font-size: 50px;
    color: #0056b3;
    background-color: rgba(0, 86, 179, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon i {
    background-color: #0056b3;
    color: #fff;
    transform: rotateY(360deg);
}

.product-info {
    padding: 10px 0;
    background-color: transparent;
    position: relative;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    min-height: 60px;
}

.product-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    background-color: #fff;
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 20px;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-icon {
    margin-bottom: 20px;
}

.product-icon i {
    font-size: 40px;
    color: #0056b3;
    background-color: rgba(0, 86, 179, 0.1);
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-item:hover .product-icon i {
    background-color: #0056b3;
    color: #fff;
    transform: rotateY(360deg);
}

.product-details {
    padding: 10px 0;
}

.product-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-details p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    min-height: 60px;
}

.product-image {
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.category-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    background-color: #fff;
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 20px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    margin-bottom: 20px;
}

.category-icon i {
    font-size: 50px;
    color: #0056b3;
    background-color: rgba(0, 86, 179, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon i {
    background-color: #0056b3;
    color: #fff;
    transform: rotateY(360deg);
}

.category-content {
    padding: 10px 0;
}

.category-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.category-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    min-height: 60px;
}

.products-intro-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.products-intro-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quality-features {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.quality-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.quality-features li i {
    color: #0056b3;
    position: absolute;
    left: 0;
    top: 10px;
}

.quality-icon-grid {
    padding: 20px;
}

.quality-icon-box {
    text-align: center;
    padding: 30px 15px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quality-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quality-icon-box i {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.quality-icon-box:hover i {
    transform: rotateY(360deg);
}

.quality-icon-box h4 {
    font-size: 18px;
    margin-bottom: 0;
    color: #333;
}

.quality-content h2 {
    margin-bottom: 20px;
    color: #333;
}

.quality-content p {
    margin-bottom: 20px;
    color: #666;
}

.quality-features {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 30px;
}

.quality-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    color: #666;
}

.quality-features li i {
    color: #0056b3;
    position: absolute;
    left: 0;
    top: 10px;
}

/*---------------------------
# Testimonials Section
---------------------------*/
.testimonial-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 60px;
    color: #0056b3;
    position: absolute;
    left: 0;
    top: -20px;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #666;
    font-size: 14px;
}

.testimonial-swiper {
    padding-bottom: 70px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin: 20px 10px;
    position: relative;
    transition: var(--transition);
}

.testimonial-content {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: -5px;
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.author-info p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 0;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/*---------------------------
# Contact Section
---------------------------*/
.contact-info {
    margin-bottom: 30px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    margin-right: 15px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #0056b3;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #003d7a;
    transform: translateY(-3px);
}

.form-control {
    height: 50px;
    border-radius: 5px;
    margin-bottom: 20px;
}

textarea.form-control {
    height: 150px;
}

/*---------------------------
# Footer
---------------------------*/
.footer {
    background-color: var(--dark-bg);
    color: #fff;
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 60px;
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 10px;
    color: #fff;
}

/*.widget-title:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 50px;*/
/*    height: 2px;*/
/*    background-color: var(--accent-color);*/
/*}*/

.about-widget p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: #009EA7;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: block;
}

.footer-links a i {
    margin-right: 5px;
    color: var(--accent-color);
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info li p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 30px;
    }
    
    .footer-bottom-links {
        text-align: left;
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        margin-left: 0;
        margin-right: 20px;
    }
}

/*---------------------------
# Back to Top
---------------------------*/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #0056b3;
    color: #fff;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #003d7a;
    color: #fff;
}

/*---------------------------
# Responsive Styles
---------------------------*/
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .main-heading {
        font-size: 36px;
    }
    
    .hero-section {
        padding: 100px 0;
    }
    
    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .main-heading {
        font-size: 30px;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .top-contact,
    .top-social {
        text-align: center;
    }
    
    .top-social {
        margin-top: 10px;
    }
    
    .footer-bottom-links {
        text-align: center;
        margin-top: 10px;
    }
    
    .copyright {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .main-heading {
        font-size: 26px;
    }
}

/*---------------------------
# Services Page Styles
---------------------------*/
.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: #0056b3;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover:before {
    height: 100%;
}

.service-icon {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

.service-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0056b3;
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: rotateY(360deg);
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
    margin-bottom: 30px;
}

.process-number {
    font-size: 60px;
    font-weight: 800;
    color: rgba(0, 86, 179, 0.1);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    color: rgba(0, 86, 179, 0.2);
    transform: translateX(-50%) scale(1.1);
}

.process-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: #0056b3;
    color: #fff;
    font-size: 30px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    transform: rotateY(360deg);
    background-color: #003d7a;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.cta-section {
    background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.9)), url('../images/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.cta-section h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: #fff;
    color: #0056b3;
    border: none;
}

.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
    color: #003d7a;
}

.page-header {
    background: linear-gradient(45deg, rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.6), rgba(0, 86, 179, 0.8)) no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    animation: animatedBackground 10s ease-in-out infinite;
}

@keyframes animatedBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.breadcrumb {
    background: transparent;
    display: inline-flex;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 0 15px;
    list-style: none;
}

.breadcrumb li:first-child {
    padding-left: 0;
}

.breadcrumb li:not(:last-child):after {
    content: '/';
    position: absolute;
    right: 0;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Logo styles */
.logo {
    max-height: 60px;
    width: auto;
}

/*---------------------------
# Subsidiaries Section
---------------------------*/
.subsidiaries-section {
    padding: 80px 0;
}

.subsidiaries-section .row {
    display: flex;
    flex-wrap: wrap;
}

.subsidiary-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.subsidiary-card:hover {
    top: -10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.subsidiary-icon {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.subsidiary-card:hover .subsidiary-icon {
    background-color: var(--primary-color);
}

.subsidiary-icon img {
    max-height: 80px;
    transition: var(--transition);
}

.subsidiary-card:hover .subsidiary-icon img {
    transform: scale(1.1);
}

.subsidiary-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.subsidiary-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.subsidiary-content p {
    margin-bottom: 20px;
    color: var(--light-text);
    flex: 1;
}

.subsidiary-features {
    margin-bottom: 20px;
}

.subsidiary-features span {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 15px;
}

.subsidiary-features span i {
    color: var(--accent-color);
    margin-right: 8px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--accent-color);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/*---------------------------
# Future Projects Section
---------------------------*/
.future-projects-section {
    padding: 80px 0;
}

.project-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    top: 0;
}

.project-card:hover {
    top: -10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.project-icon {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.project-card:hover .project-icon {
    background-color: var(--primary-color);
}

.project-icon img {
    max-height: 80px;
    transition: var(--transition);
}

.project-card:hover .project-icon img {
    transform: scale(1.1);
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.project-content p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.project-features {
    margin-bottom: 20px;
}

.project-features span {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 15px;
}

.project-features span i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #0056b3;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: #0056b3;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: 15px;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
}

.timeline-content .date {
    display: inline-block;
    padding: 3px 10px;
    background-color: rgba(0, 86, 179, 0.1);
    color: #0056b3;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.timeline-content p {
    margin-bottom: 0;
    color: #666;
}

/* Investment Section Styles */
.investment-benefits {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.investment-benefits li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    color: #666;
}

.investment-benefits li i {
    color: #0056b3;
    position: absolute;
    left: 0;
    top: 10px;
}

.stat-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stat-icon i {
    font-size: 20px;
    color: #0056b3;
}

.stat-info h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.stat-info p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #666;
}

/* Responsive Timeline */
@media (max-width: 767px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 30px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 30px;
    }
}

/*---------------------------
# Innovation, Viability, and Scalability Styles
---------------------------*/
.innovation-section {
    background-color: #f9f9f9;
}

.section-subtitle {
    margin-bottom: 20px;
}

.section-subtitle span {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #0056b3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.section-subtitle h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

/* .section-subtitle h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0056b3;
} */

.innovation-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.innovation-image img {
    transition: transform 0.5s ease;
}

.innovation-image:hover img {
    transform: scale(1.05);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e0e0e0;
}

.feature-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-list li i {
    font-size: 24px;
    color: #0056b3;
    margin-right: 20px;
    margin-top: 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
}

.feature-list li div {
    flex: 1;
}

.feature-list li h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.feature-list li p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .innovation-section .row {
        margin-bottom: 30px;
    }
    
    .feature-list li {
        flex-direction: column;
    }
    
    .feature-list li i {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .section-subtitle h3 {
        font-size: 24px;
    }
    
    .feature-list li h4 {
        font-size: 16px;
    }
}

/*---------------------------
# Team Page Styles
---------------------------*/
.team-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.team-intro-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.team-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    margin: 0 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Team Card Styles */
.team-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(0, 86, 179, 0.8);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.team-social a:hover {
    transform: scale(1.2);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.designation {
    color: #0056b3;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
}

.team-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Horizontal Team Card */
.team-card.horizontal {
    display: flex;
    align-items: center;
}

.team-card.horizontal .team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px;
    flex-shrink: 0;
}

.team-card.horizontal .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card.horizontal .team-info {
    text-align: left;
    padding: 15px 20px 15px 0;
}

/* Team Values Styles */
.value-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.1);
    margin: 0 auto 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: #0056b3;
    color: #fff;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Join Team Section */
.join-team-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.join-team-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.benefits-list {
    margin-top: 25px;
}

.benefits-list h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #666;
}

.benefits-list li i {
    color: #0056b3;
    margin-right: 10px;
}

.join-team-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .team-stats {
        flex-direction: column;
    }
    
    .stat-item {
        margin: 10px 0;
    }
    
    .team-card.horizontal {
        flex-direction: column;
    }
    
    .team-card.horizontal .team-image {
        margin: 20px auto;
    }
    
    .team-card.horizontal .team-info {
        text-align: center;
        padding: 0 20px 20px;
    }
}

/*---------------------------
# FAQ Section Styles
---------------------------*/
.faq-section {
    background-color: #f9f9f9;
}

.faq-accordion {
    margin-top: 30px;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    box-shadow: none !important;
    border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
    color: #0056b3;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-button::after {
    background-size: 16px;
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 20px 25px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    background-color: #fff;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .accordion-button {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .accordion-body {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/*---------------------------
# Product Category Styles
---------------------------*/
.product-category-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    top: 0;
    border: 1px solid var(--border-color);
}

.product-category-card:hover {
    top: -10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.product-category-icon {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.product-category-card:hover .product-category-icon {
    background-color: var(--primary-color);
}

.product-category-icon i {
    font-size: 50px;
    color: var(--primary-color);
    transition: var(--transition);
}

.product-category-card:hover .product-category-icon i {
    color: #fff;
    transform: scale(1.1);
}

.product-category-content {
    padding: 30px;
}

.product-category-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-category-content p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.product-category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.product-category-list li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 15px;
}

.product-category-list li i {
    color: var(--accent-color);
    margin-right: 8px;
}

/*---------------------------
# Contact Form Styles
---------------------------*/
.contact-section {
    background-color: #f8f9fa;
}

.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 18px;
}

.contact-info-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-info-text p {
    margin-bottom: 0;
    color: var(--text-color);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    height: 50px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    font-size: 14px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-form textarea.form-control {
    height: auto;
    resize: none;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius);
}

#formMessage {
    text-align: center;
    padding: 10px;
    border-radius: var(--border-radius);
}

#formMessage.success {
    background-color: #d4edda;
    color: #155724;
}

#formMessage.error {
    background-color: #f8d7da;
    color: #721c24;
}

.top-social {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    text-align: right;
}

/*---------------------------
# Business Partners Section
---------------------------*/
.business-partners {
    background: #f8f9fa;
    padding: 60px 0;
}

.business-partners .testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 15px;
}

.business-partners .testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.business-partners .testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-partners .testimonial-content h4 {
    color: #333;
    margin-bottom: 10px;
}

.business-partners .testimonial-content p {
    color: #666;
    font-size: 14px;
}

.language-switcher {
    display: inline-block;
    margin-left: 20px;
}

.language-icon {
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
}

.language-icon:hover {
    color: var(--secondary-color);
}
