@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
/* Global Styles */
:root {
    --primary-color: #dc143c;
    --primary-dark: #b01030;
    --primary-light: #ff1744;
    --secondary-color: #1a1a1a; 
    --accent-color: #ff4757;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 10px 0;
    font-size: 14px; 
}

.top-info {
    color: white;
}

.top-info i {
    color: #fff;
    margin-right: 5px; 
}

.social-links a {
    color: white;
    margin-left: 15px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navigation */
.fixed {
	position: fixed;
	width: 100%;
	box-shadow: 0 2px 8px rgba(0,0,0,.06);
	z-index: 999;
	padding: 0; 
	top: 0 !important;
	border: none;
	background: #fff !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
	z-index: 999;
}
.navbar {
    padding: 10px 0;
    box-shadow: none;   
    transition: all 0.3s ease; 
    position: fixed; 
    width: 100%;
    top: 45px;
    /*! background: rgba(0, 0, 0, 0.25); */
    z-index: 99;
    /*! box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
}
.navbar .container-fluid{
    max-width:90%;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;  
    color: var(--primary-color) !important;
    width: 215px;
} 

.blacklogo{
    display: none;
}
.fixed .whitelogo{
    display: none;
}

.fixed .blacklogo{
    display: block;
}

.fixed .nav-link.btn-quote { 
	color: #fff !important;
}


.logo-text {
    color: #e1143d;
    font-weight: 700; 
    font-size: 24px;
    display: inline-block;
    letter-spacing: 1px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500; 
    padding: 20px 20px !important;  
    transition: all 0.3s ease; 
    position: relative; 
}
.fixed .nav-link {
    color: #000 !important;
    font-weight: 500;  
    padding:  11px 20px !important; 
    transition: all 0.3s ease;
    position: relative;
}
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

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

.btn-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white !important;
    padding: 10px 25px !important; 
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.15);
    color: #fff !important;
}

.btn-quote::after {
    display: none;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.2);
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    height: 70vh; 
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; 
    display: flex;
    align-items: center;
    min-height: 93vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0; 
    right: 0; 
    bottom: 0;
    background: rgba(0, 0, 0, 0.59);
}

.min-vh-80 {
    min-height: 80vh;
}
 
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 12px; 
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400; 
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons .btn {
    margin-bottom: 10px;
    font-weight: 600;
    padding: 13px 28px; 
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-buttons .btn i {
    margin-right: 8px;
}

.hero-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 2px 10px rgba(255,255,255,0.2);
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.25);
}

.hero-buttons .btn-outline-light {
    border: 2px solid white;
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(220, 20, 60, 0.8);
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin: 0 6px;
    background-color: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    width: 30px;
    border-radius: 2px;
    opacity: 1;
    background-color: var(--primary-color);
}

/* Tracking Form Overlay */
.tracking-form-overlay {
    position: absolute;
    bottom: -245px;
    left: 0; 
    right: 0; 
    z-index: 10;
}

.tracking-box-main {
    background: white; 
    padding: 40px; 
    border-radius: 20px;  
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
    border-top: 4px solid var(--primary-color);
    padding-top: 30px;
}

.tracking-header {
    text-align: center;
    margin-bottom: 25px;
}

.tracking-header i {
    /*! font-size: 48px; */
    /*! color: var(--primary-color); */
    /*! margin-bottom: 15px; */
    /*! display: block; */ 
}

.tracking-header h3 {
    font-size: 25px;
    font-weight: 600; 
    color: var(--secondary-color);
    margin: 0;
}
.phonemail{
    margin-top: 20px;
    text-align: center;
}
.phonemail a {
	font-size: 29px;
	text-decoration: none;
	color: var(--primary-light);
	font-weight: bold;
	display: inline-block;
	margin: 0 10px 0 0;
	border-right: 1px solid;
	padding-right: 10px;
}
.phonemail a:hover { 
	text-decoration: underline;
	color: #000; 
}
.phonemail a:last-child{ 
	border-right:none; 
}

.tracking-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tracking-input-group .form-control {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tracking-input-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.08);
}

.tracking-input-group .btn-primary {
    padding: 18px 35px;
    border-radius: 5px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.15);
}

.tracking-input-group .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
}

.tracking-help {
    text-align: center;
    color: var(--gray-color);
    font-size: 14px;
    margin: 0;
}

.tracking-help i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Quick Services */
.quick-services {
    padding: 306px 0 16px 0;
}
  
.quick-service-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.quick-service-item:last-child {
    border-right: none;
}

.quick-service-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.15);
}

.quick-service-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.quick-service-item:hover i {
    color: white;
    transform: scale(1.1);
}

.quick-service-item h5 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
}

.quick-service-item p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Section Styles */
.services-section {
    /*! background-color: var(--light-color); */
}
 
.section-header {
    margin-bottom: 10px;
} 

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray-color);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.12);
    border-top-color: var(--primary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 42px;
    color: white;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover i {
    margin-left: 10px;
}

/* Why Choose Us */
.why-choose-us {
    background: white;
    position: relative;
    overflow: hidden;
    padding: 73px 0 !important;  
}

.feature-list {
    margin-top: 30px;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 20px;
}

.feature-item h5 {
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 20px;
}

.feature-item p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: white;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-card h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-card p {
    margin: 0;
    font-size: 16px;
    color: var(--gray-color);
    font-weight: 500;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-icon {
    font-size: 72px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(255,255,255,0.2);
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0 30px;
    margin-top: 0;
}

.footer h4,
.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
}
.footer h4 img,
.footer h5 img{
    width: 200px;
}
.footer p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.footer-contact li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 20px;
    font-size: 16px;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    border-radius: 5px;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* Form Controls */
.form-control,
.form-select {
    padding: 14px 20px;
    border-radius: 5px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease; 
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.08);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Page Header (for other pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 136px 0 50px;
    color: white;  
    background: url(../images/inner_banner.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-header .container{
    position: relative;
    z-index: 9;
}

.page-header::before { 
    position:absolute; 
    content:'';
    width:100%;
    height:100%;
    background:rgba(0, 0, 0, 0.73);
    z-index:1;
    top: 0;
    left: 0;
}




.page-header h1 {
    font-size: 40px;
    margin-bottom: 0;
    font-weight: 600;  
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

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

.breadcrumb-item.active {
    color: white;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tracking-form-overlay {
        position: relative;
        bottom: 0;
        margin-top: -50px;
    }
    
    .quick-services {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .hero-slide {
        min-height: 600px;
    }
    
    .tracking-box-main {
        padding: 30px 20px;
    }
    
    .tracking-input-group {
        flex-direction: column;
    }
    
    .tracking-input-group .btn-primary {
        width: 100%;
    }
    
    .quick-service-item {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .quick-service-item:last-child {
        border-bottom: none;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .top-info span {
        display: block;
        margin-top: 5px;
        margin-left: 0 !important;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

.recommend-section {
      text-align: center;
      padding: 19px 0 60px 0; 
    }

    .recommend-section h2 {
      color: #000000;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .recommend-section p.lead {
      color: #555;
      max-width: 850px;
      margin: 0 auto 50px;
      font-size: 16px;
    }

    .recommend-card {
      background: #fff;
      border-radius: 5px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 30px 20px;
      transition: all 0.4s ease;
      height: 100%;
    }

    .recommend-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(255, 46, 46, 0.3);
    }

.recommend-icon {
    color: #ff2e2e;
    font-size: 40px; 
    width: 65px;
    margin: 0 auto; 
    margin-bottom: 20px;
}

    .recommend-card h5 {
      font-weight: bold;
      margin-bottom: 10px;
      font-size: 18px; 
      color: #000;
    }

    .recommend-card p {
      font-size: 15px;
      color: #666;
    }


.main-title {
            color: #000000;
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 50px;
        }

        .service-card {
            border: 1px solid #ddd;
            padding: 40px 30px;
            height: 100%;
            min-height: 500px;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            background-color: #fff;
            border-radius: 0;
            box-shadow: none;
            z-index: 1;
        }

        .service-card:hover {
            background-color: #000;
            border-color: #000;
        }

        .service-card .number {
            font-size: 2rem;
            color: #ccc;
            margin-bottom: 20px; 
            transition: color 0.4s ease;
            font-weight: 800;
        }
 
        .service-card:hover .number {
            color: #fff;
        }

        .service-card .title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #000;
            margin-bottom: 20px;
            transition: color 0.4s ease;
        }

        .service-card:hover .title {
            color: #fff;
        }

        .service-card .description {
            color: #999;
            line-height: 1.6;
            margin-bottom: 30px;
            transition: color 0.4s ease;
        }

        .service-card:hover .description {
            color: #fff;
        }

        .service-card .arrow-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ff3333;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            position: absolute;
            bottom: 40px;
            left: 30px;
             transition: 0.3s;
        }

        .service-card:hover .arrow-btn {
            background-color: #fff;
        }

        .service-card .arrow-btn::after {
            content: '→';
            color: #fff;
            font-size: 1.5rem;
            transition: color 0.4s ease;
        }

        .service-card:hover .arrow-btn::after {
            color: #ff3333;
             transition: 0.3s;
        }

        .service-image {
            position: absolute;
            bottom: 12px;
            right: 13px;
            width: 227px; 
            height: 110px;
            z-index: -1;
            border-radius: 6px;
            opacity: 1;
            transition: opacity 0.4s ease;
            object-fit: cover;
             transition: 0.3s;
        }

.service-card:hover .service-image {
    opacity: 0.3;
    width: 100%; 
    height: 100%;
    right: 0;
    bottom: 0;
    border-radius: 0;
    transition: 0.3s;
}

        .card-04 {
            background-color: #ff3333;
            border-color: #ff3333;
        }

        .card-04 .number,
        .card-04 .title,
        .card-04 .description {
            color: #fff;
        }

        .card-04 .arrow-btn {
            background-color: #fff;
        }

        .card-04 .arrow-btn::after {
            color: #ff3333;
        }

        .card-04 .service-image {
            opacity: 1;
        }
  
.feature-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.feature-box i {
  font-size: 40px;
  color: #ff2e2e;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.feature-box h5 {
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.feature-box p {
  color: #666;
  font-size: 15px;
  margin: 0;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff2e2e, #ff6b6b);
  transition: all 0.4s ease;
  z-index: 0;
  opacity: 0;
}

.feature-box:hover::before {
  top: 0;
  opacity: 1;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 46, 46, 0.3);
}

.feature-box:hover i,
.feature-box:hover h5,
.feature-box:hover p {
  color: #fff;
  position: relative;
  z-index: 1;
}

.feature-box:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* ========================================
   OWL CAROUSEL TESTIMONIALS STYLES
   ======================================== */

.testimonials-section {
    background: #f2f2f2;
    position: relative;
    overflow: hidden;
} 

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(255, 23, 68, 0.05));
    border-radius: 50%;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(255, 23, 68, 0.05));
    border-radius: 50%;
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

/* Main Testimonial Card */
.testimonial-card-main {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    margin: 20px 10px;
}

.testimonial-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.15);
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
}

.quote-icon i {
    font-size: 40px;
    color: white;
}

.testimonial-rating {
    text-align: center;
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 24px;
    margin: 0 3px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 35px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.author-info h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-color);
    margin-bottom: 5px;
    font-size: 15px;
}

.author-info .location {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.author-info .location i {
    margin-right: 5px;
}

/* Grid Testimonial Cards */
.testimonial-card-grid {
    background: white;
    padding: 30px;
    border-radius: 15px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 3px solid transparent;
    margin: 19px 0;
}

.testimonial-card-grid:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
    border-top-color: var(--primary-color);
}

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

.testimonial-header img {
    width: 60px !important;
    height: 60px; 
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.header-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.header-info p {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.rating-small {
    display: flex;
    gap: 2px;
}

.rating-small i {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-content {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
    min-height: 80px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
}

.testimonial-footer span {
    color: var(--gray-color);
}

.testimonial-footer i {
    margin-right: 5px;
}

.verified {
    color: #28a745 !important;
    font-weight: 600;
}

.verified i {
    color: #28a745;
}

/* Trust Section */
.trust-section {
    /*! background: white; */
    padding: 50px 0 0 0;  
    border-radius: 15px;
    /*! box-shadow: 0 5px 20px rgba(0,0,0,0.08); */
} 

.trust-section h4 {
    font-weight: 700;
    color: var(--dark-color);
}

.client-logo {
    display: flex;
    align-items: center; 
    justify-content: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    background: #fff;
}

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

.client-logo img {
    max-width: 100%;
    /*! height: 60px; */ 
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Rating Stats */
.rating-stats {
    /*! background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); */
    padding: 50px 40px;
    border-radius: 20px;
    /*! box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3); */
}

.stat-item {
    /*! color: white; */
}

.stat-number {
    font-size: 37px;
    font-weight: 800; 
    margin-bottom: 10px;
    /*! text-shadow: 2px 2px 4px rgba(0,0,0,0.2); */
}

.stat-stars {
    margin-bottom: 10px;
}

.stat-stars i {
    color: #ffc107;
    font-size: 20px;
    margin: 0 2px;
}

.stat-icon {
    margin-bottom: 10px;
}

.stat-icon i {
    font-size: 40px;
    opacity: 0.9;
}

.stat-item p {
    margin: 0;
    font-size: 16px;
    opacity: 0.95;
    font-weight: 500;
}

/* ========================================
   OWL CAROUSEL CUSTOM NAVIGATION
   ======================================== */

/* Main Carousel Navigation */
.testimonial-main-carousel .owl-nav {
    margin-top: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.testimonial-main-carousel .owl-nav button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.testimonial-main-carousel .owl-nav button.owl-prev {
    left: -80px;
}

.testimonial-main-carousel .owl-nav button.owl-next {
    right: -80px;
}

.testimonial-main-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.testimonial-main-carousel .owl-nav button i {
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.testimonial-main-carousel .owl-nav button:hover i {
    color: white;
}

/* Main Carousel Dots */
.testimonial-main-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.testimonial-main-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.testimonial-main-carousel .owl-dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 10px;
}

/* Grid Carousel Navigation */
.testimonial-grid-carousel .owl-nav {
    text-align: center;
    margin-top: 30px;
}

.testimonial-grid-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50% !important;
    margin: 0 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.testimonial-grid-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.testimonial-grid-carousel .owl-nav button i {
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.testimonial-grid-carousel .owl-nav button:hover i {
    color: white;
}

/* Grid Carousel Dots */
.testimonial-grid-carousel .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.testimonial-grid-carousel .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonial-grid-carousel .owl-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 8px;
}

/* Client Logo Carousel */
.client-logo-carousel .owl-stage {
    display: flex;
    align-items: center;
}

/* Owl Carousel Animation */
.owl-carousel .owl-item {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.owl-carousel .owl-item.active {
    opacity: 1;
}

.owl-carousel .owl-item.center {
    transform: scale(1.05);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .testimonial-main-carousel .owl-nav button.owl-prev {
        left: -30px;
    }
    
    .testimonial-main-carousel .owl-nav button.owl-next {
        right: -30px;
    }
}

@media (max-width: 992px) {
    .testimonial-card-main {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .testimonial-main-carousel .owl-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonials-section::before,
    .testimonials-section::after {
        width: 200px;
        height: 200px;
    }
    
    .testimonial-card-main {
        padding: 30px 20px;
    }
    
    .quote-icon {
        width: 60px;
        height: 60px;
        top: 20px;
        left: 20px;
    }
    
    .quote-icon i {
        font-size: 30px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        width: 70px;
        height: 70px;
    }
    
    .trust-section {
        padding: 30px 20px;
    }
    
    .rating-stats {
        padding: 40px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .testimonial-card-main {
        padding: 25px 15px;
        margin: 10px 5px;
    }
    
    .testimonial-rating i {
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-item p {
        font-size: 14px;
    }
    
    .testimonial-card-grid {
        margin: 5px;
    }
    
    .testimonial-content {
        min-height: auto;
    }
}

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

.owl-item.active .testimonial-card-main,
.owl-item.active .testimonial-card-grid {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   BLOG SECTION STYLES
   ======================================== */

/* Blog Section on Homepage */
.blog-section {
    background: white;
}

.blog-card {
    background: white;
    border-radius: 5px;
    overflow: hidden; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease; 
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 21px 12px;
}

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

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    width: 60px;
    height: 65px;
    border-radius: 10px;
    text-align: center;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.blog-date .day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
    margin-top: 5px;
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--gray-color);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h4 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-content h4 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.blog-read-more i {
    transition: all 0.3s ease;
}

/* Blog Carousel Navigation */
.blog-carousel .owl-nav {
    text-align: center;
    margin-top: 40px;
}

.blog-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50% !important;
    margin: 0 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.blog-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.blog-carousel .owl-nav button i {
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.blog-carousel .owl-nav button:hover i {
    color: white;
}

.blog-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.blog-carousel .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.blog-carousel .owl-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 8px;
}

/* ========================================
   BLOG LISTING PAGE
   ======================================== */

.blog-listing-section {
    background: #f8f9fa;
}

.blog-post-item {
    background: white;
    border-radius: 0;
    overflow: hidden;
    /*! box-shadow: 0 5px 20px rgba(0,0,0,0.08); */
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.blog-post-item:hover {
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
}

.blog-post-image {
    position: relative;
    overflow: hidden; 
    height: 300px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-post-item:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 40px;
}

.blog-post-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: var(--gray-color);
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-meta i {
    color: var(--primary-color);
}

.blog-post-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-post-content h2 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-post-content h2 a:hover {
    color: var(--primary-color);
}

.blog-post-content p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    padding: 19px;
    border-radius: 5px;
    /*! box-shadow: 0 5px 20px rgba(0,0,0,0.08); */
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color); 
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ececec;
    position: relative;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-dark);
}

/* Search Form */
.search-form .input-group {
    /*! box-shadow: 0 3px 10px rgba(0,0,0,0.1); */
    border-radius: 5px;
    overflow: hidden; 
    border: 1px solid #ddd;
}

.search-form .form-control {
    border: none;
    padding: 15px 25px;
    border-radius: 0;
} 

.search-form .btn {
    border-radius: 0;
    padding: 15px 25px;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.category-list a i {
    margin-right: 10px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-list a:hover i {
    color: white;
}

.category-list .count {
    background: white;
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.recent-post-content h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-content h6 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post-content h6 a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 12px;
    color: var(--gray-color);
}

.post-date i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    padding: 8px 20px;
    background: #f8f9fa;
    border-radius: 25px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--primary-color);
    color: white;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.newsletter-widget h4 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.newsletter-widget h4::after {
    background: white;
}

.newsletter-widget p {
    color: rgba(255,255,255,0.9);
}

.newsletter-widget .form-control {
    border-radius: 8px;
}

.newsletter-widget .btn {
    background: white;
    color: var(--primary-color);
    border: none;
}

.newsletter-widget .btn:hover {
    background: var(--dark-color);
    color: white;
}

/* Pagination */
.blog-pagination {
    margin-top: 40px;
}

.pagination {
    gap: 10px;
}

.page-link {
    border: none;
    background: white;
    color: var(--dark-color);
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: white;
}

.page-item.disabled .page-link {
    opacity: 0.5;
}

/* ========================================
   BLOG DETAIL PAGE
   ======================================== */

.blog-detail-section {
    background: #f8f9fa;
}

.blog-detail-content {
    /*! background: white; */
    border-radius: 0;
    overflow: hidden;
    /*! box-shadow: 0 5px 20px rgba(0,0,0,0.08); */
}

.blog-detail-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.blog-category-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-header {
    padding: 40px 0 20px;
}

.article-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: var(--gray-color);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: var(--primary-color);
}

.article-body {
    padding: 0; 
}

.article-body .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 30px;
}

.article-body h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 35px 0 20px;
}

.article-body p {
    color: var(--gray-color);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.article-body img {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.blog-quote {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-left: 5px solid var(--primary-color);
    padding: 30px 40px;
    margin: 30px 0;
    position: relative;
    border-radius: 10px;
}

.blog-quote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.2;
}

.blog-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--dark-color);
    margin: 0 0 15px 30px;
    font-weight: 500;
}

.blog-quote footer {
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 30px;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.custom-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--gray-color);
    font-size: 16px;
}

.custom-list li i {
    position: absolute;
    left: 0;
    top: 15px;
    color: #28a745;
    font-size: 18px;
}

.info-box {
    background: #e7f3ff;
    border-left: 4px solid #2196f3;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
}

.info-box i {
    font-size: 32px;
    color: #2196f3;
    flex-shrink: 0;
}

.info-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-box p {
    margin: 0;
    color: var(--dark-color);
}

.conclusion-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 35px;
    border-radius: 15px;
    margin: 40px 0;
}

.conclusion-box h4 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.conclusion-box p {
    color: white;
    margin: 0;
    line-height: 1.8;
}

/* Article Footer */
.article-footer {
    padding: 30px 50px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.article-tags strong {
    color: var(--dark-color);
}

.article-tags a {
    padding: 6px 18px;
    background: #f8f9fa;
    border-radius: 20px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.article-tags a:hover {
    background: var(--primary-color);
    color: white;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-share strong {
    color: var(--dark-color);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* Author Box */
.author-box {
    margin: 40px 50px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    object-fit: cover;
}

.author-info h5 {
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.author-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.author-info p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Comments Section */
.comments-section {
    padding: 50px;
    border-top: 2px solid #f0f0f0;
}

.comments-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 35px;
}

.comment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-of-type {
    border-bottom: none;
}

.comment-item.reply {
    margin-left: 80px;
}

.comment-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-header h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.comment-date {
    font-size: 13px;
    color: var(--gray-color);
}

.comment-content p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 12px;
}

.reply-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reply-btn:hover {
    color: var(--primary-dark);
}

.reply-btn i {
    margin-right: 5px;
}

/* Comment Form */
.comment-form {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    margin-top: 40px;
}

.comment-form h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
}

/* Related Posts */
.related-posts {
    padding: 50px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 40px;
}

.related-posts h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.related-posts-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary-color) !important;
    border-radius: 50% !important;
    opacity: 0.9;
}

.related-posts-carousel .owl-nav button:hover {
    opacity: 1;
}

.related-posts-carousel .owl-nav button i {
    color: white !important;
}

.related-posts-carousel .owl-nav .owl-prev {
    left: -20px;
}

.related-posts-carousel .owl-nav .owl-next {
    right: -20px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .blog-post-image {
        height: 300px;
    }
    
    .blog-post-content {
        padding: 30px;
    }
    
    .article-header,
    .article-body,
    .article-footer,
    .comments-section,
    .related-posts {
        padding: 30px;
    }
    
    .author-box {
        margin: 30px;
    }
}

@media (max-width: 768px) {
    .blog-detail-image {
        height: 300px;
    }
    
    .blog-category-badge {
        top: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .article-header h1 {
        font-size: 28px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .comment-item.reply {
        margin-left: 40px;
    }
    
    .article-header,
    .article-body,
    .article-footer,
    .comments-section,
    .related-posts {
        padding: 20px;
    }
    
    .author-box {
        margin: 20px;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .blog-date {
        width: 50px;
        height: 55px;
        padding: 5px;
    }
    
    .blog-date .day {
        font-size: 20px;
    }
    
    .blog-date .month {
        font-size: 10px;
    }
    
    .comment-item.reply {
        margin-left: 0;
    }
    
    .comment-form {
        padding: 20px;
    }
}
/* ========================================
   SERVICES PAGE STYLES
   ======================================== */
   .container-fluid a{
       text-decoration: none;
   }

/* Services Overview Section */
.services-overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-showcase-carousel .item {
    padding: 10px;
}

.service-showcase-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-showcase-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.2);
}

.service-showcase-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.service-showcase-card:hover .service-showcase-icon {
    transform: scale(1.1) rotate(360deg);
}

.service-showcase-icon i {
    font-size: 48px;
    color: white;
}

.service-showcase-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-showcase-card p {
    color: var(--gray-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Service Categories Tabs */
.service-categories {
    background: #f8f9fa;
}

.service-tabs {
    border: none;
    gap: 15px;
    flex-wrap: wrap;
}

.service-tabs .nav-link {
    background: white;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 15px 35px;
    color: var(--dark-color);
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-tabs .nav-link i {
    font-size: 20px;
    color: var(--primary-color);
}

.service-tabs .nav-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.2);
}

.service-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.service-tabs .nav-link.active i {
    color: white;
}

/* Service Tab Cards */
.service-tab-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.service-tab-card:hover {
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
}

.service-tab-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-tab-icon i {
    font-size: 40px;
    color: white;
}

.service-tab-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-tab-card p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.service-features-list li {
    padding: 12px 0;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

/* Service Detail Section */
.service-detail-section {
    padding: 60px 0;
    position: relative; 
    padding-top: 0;
}

.service-detail-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.service-detail-section:last-child::after {
    display: none;
}

.service-detail-image {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    /*! box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    height: 88vh;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.8), rgba(26, 26, 26, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.service-badge {
    text-align: center;
    color: white;
}

.service-badge i {
    font-size: 64px;
    margin-bottom: 15px;
    display: block;
}

.service-badge span {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-detail-content {
    position: relative;
}

.service-number {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 120px;
    font-weight: 800;
    color: rgba(220, 20, 60, 0.05);
    line-height: 1;
    z-index: 0;
}

.service-detail-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-detail-content .lead {
    font-size: 18px;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Service Accordion */
.service-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.service-accordion .accordion-button {
    background: #f8f9fa;
    color: var(--dark-color);
    font-weight: 600;
    padding: 18px 25px;
    border: none;
}

.service-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: none;
}

.service-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.service-accordion .accordion-body {
    padding: 20px 25px;
    background: white;
    border-top: 2px solid #f0f0f0;
}

/* Key Features */
.key-features {
    margin: 30px 0;
}

.feature-box-small {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-box-small:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.1);
}

.feature-box-small i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-box-small h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-box-small p {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

/* Process Steps */
.process-steps {
    margin: 30px 0;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray-color);
    margin: 0;
}

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

.benefit-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.15);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

/* Info Cards Row */
.info-cards-row {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.info-card-small {
    flex: 1;
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    text-align: center;
}

.info-card-small i {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.info-card-small h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-card-small p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

/* Highlight Box */
.highlight-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-box i {
    font-size: 32px;
    color: #ffc107;
    flex-shrink: 0;
}

.highlight-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.highlight-box p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
    margin: 30px 0;
}

.comparison-table .table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.comparison-table thead th {
    padding: 18px;
    border: none;
    font-weight: 700;
}

.comparison-table tbody td {
    padding: 15px 18px;
    border-color: #f0f0f0;
}

/* Service CTA */
.service-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Why Services Section */
.why-service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 36px;
    color: white;
}

.why-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.why-service-card p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

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

/* Owl Carousel for Services */
.services-showcase-carousel .owl-nav {
    text-align: center;
    margin-top: 40px;
}

.services-showcase-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50% !important;
    margin: 0 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.services-showcase-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.services-showcase-carousel .owl-nav button i {
    color: var(--primary-color);
    font-size: 18px;
}

.services-showcase-carousel .owl-nav button:hover i {
    color: white;
}

.services-showcase-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.services-showcase-carousel .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 6px;
}

.services-showcase-carousel .owl-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-number {
        font-size: 80px;
    }
    
    .service-detail-content h3 {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-tabs {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .service-showcase-card {
        height: auto;
        padding: 40px 25px;
    }
    
    .service-tabs .nav-link {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .service-tab-card {
        padding: 30px 25px;
    }
    
    .info-cards-row {
        flex-direction: column;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .service-cta .btn {
        width: 100%;
    }
    
    .service-detail-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .service-detail-content h3 {
        font-size: 24px;
    }
    
    .service-number {
        font-size: 60px;
    }
    
    .service-showcase-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-showcase-icon i {
        font-size: 36px;
    }
}

/* ========================================
   SUPPORT PAGE STYLES
   ======================================== */

/* Instant Support Banner */
.instant-support-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 40px 0;
    color: white;
}

.support-banner-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.support-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-icon-large i {
    font-size: 40px;
    color: white;
}

.support-banner-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.support-banner-content p {
    margin: 0;
    opacity: 0.95;
}

.pulse-button {
    animation: pulse 2s infinite;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

/* Contact Method Cards */
.contact-method-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.15);
    border-top-color: var(--primary-color);
}

.method-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
    position: relative;
}

.method-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.2;
    transform: scale(1.3);
}

.method-icon.phone {
    background: #4CAF50;
}

.method-icon.email {
    background: #2196F3;
}

.method-icon.whatsapp {
    background: #25D366;
}

.method-icon.chat {
    background: #FF9800;
}

.contact-method-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

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

.contact-link {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.contact-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.contact-link:hover i {
    margin-left: 10px;
}

.availability {
    display: inline-block;
    padding: 8px 20px;
    background: #f8f9fa;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-color);
}

.availability i.online {
    color: #4CAF50;
    margin-right: 5px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Department Cards */
.department-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.15);
}

.dept-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0 25px;
    text-align: center;
    display: flex;
    align-items: center;
}

.dept-icon {
    width: 70px; 
    height: 70px;
    /*! background: rgba(255,255,255,0.2); */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.dept-icon i {
    font-size: 32px;
    color: white;
}

.dept-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.dept-content {
    padding: 30px 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start; 
    gap: 15px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

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

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    color: var(--dark-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    font-size: 15px;
    color: var(--gray-color);
}

.contact-item a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary-dark);
}

/* Expert Cards */
.expert-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

.expert-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.expert-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border: 3px solid white;
    border-radius: 50%;
}

.online-status.away {
    background: #FFC107;
}

.expert-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.expert-role {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 20px;
}

.expert-contact {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.expert-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.expert-btn:hover {
    transform: scale(1.1);
}

.expert-btn.phone {
    background: #4CAF50;
}

.expert-btn.email {
    background: #2196F3;
}

.expert-btn.whatsapp {
    background: #25D366;
}

.expert-availability {
    font-size: 13px;
    font-weight: 600;
}

.expert-availability i.online {
    color: #4CAF50;
    margin-right: 5px;
}

.expert-availability i.away {
    color: #FFC107;
    margin-right: 5px;
}

/* Emergency Card */
.emergency-card {
    background: linear-gradient(135deg, #ff5252, #ff1744);
    color: white;
    padding: 50px;
    border-radius: 20px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.3);
}

.emergency-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-icon i {
    font-size: 50px;
    color: white;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.emergency-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.emergency-content p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.emergency-numbers {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.emergency-number {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.15);
    padding: 20px 25px;
    border-radius: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-number:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}

.emergency-number i {
    font-size: 32px;
}

.emergency-number strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.emergency-number span {
    font-size: 20px;
    font-weight: 700;
}

.emergency-note {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid white;
}

.emergency-note i {
    margin-right: 10px;
}

/* Office Cards */
.office-card {
    background: white; 
    padding: 35px 30px;
    border-radius: 5px;
    /*! box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #dddddd42;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.15);
}

.office-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.office-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.office-details {
    margin-bottom: 20px;
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

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

.office-item i {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.office-item p {
    margin: 0;
    color: var(--gray-color);
    line-height: 1.6;
}

.office-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.office-item a:hover {
    color: var(--primary-dark);
}

/* Inquiry Form Card */
.inquiry-form-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.form-header i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-header h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--gray-color);
    margin: 0;
}

/* Chat Modal */
.chat-info {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.agent-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.online-status-text {
    display: block;
    font-size: 13px;
    color: var(--gray-color);
}

.online-status-text i {
    color: #4CAF50;
    margin-right: 5px;
}

.chat-welcome {
    color: var(--gray-color);
    margin: 0;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.chat-messages {
    min-height: 300px;
    padding: 20px;
}

.chat-message {
    max-width: 70%;
    margin-bottom: 15px;
    padding: 12px 18px;
    border-radius: 15px;
}

.chat-message.received {
    background: #f0f0f0;
    color: var(--dark-color);
}

.chat-message p {
    margin: 0 0 5px;
}

.chat-message .time {
    font-size: 11px;
    color: var(--gray-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .support-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .emergency-numbers {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .support-banner-content h2 {
        font-size: 24px;
    }
    
    .inquiry-form-card {
        padding: 30px 20px;
    }
    
    .form-header h3 {
        font-size: 24px;
    }
    
    .emergency-card {
        padding: 30px 20px;
    }
    
    .emergency-content h3 {
        font-size: 24px;
    }
    
    .emergency-numbers {
        flex-direction: column;
    }
    
    .emergency-number {
        width: 100%;
        justify-content: center;
    }
    
    .expert-contact {
        gap: 8px;
    }
    
    .expert-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .contact-method-card {
        padding: 30px 20px;
    }
    
    .department-card {
        margin-bottom: 20px;
    }
    
    .dept-content {
        padding: 20px;
    }
    
    .office-card {
        padding: 25px 20px;
    }
}
/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Company Introduction Section */
.company-intro-section {
    background: white;
}

.section-badge-left {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-large {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 25px;
}

.intro-content p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 28px;
    color: white;
}

.highlight-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.highlight-item p {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

/* Image Grid */
.intro-image-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
}

.grid-item-1 {
    grid-column: 1 / 3;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.badge-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* What We Do Section */
.what-we-do-section {
    background: #f8f9fa;
}

.service-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

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

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(220, 20, 60, 0.05);
    line-height: 1;
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-feature-card:hover .feature-icon-box {
    transform: rotateY(360deg);
}

.feature-icon-box i {
    font-size: 36px;
    color: white;
}

.service-feature-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-feature-card p {
    color: var(--gray-color);
    line-height: 1.7;
    margin: 0;
}

/* Mission & Vision Cards */
.mission-vision-section {
    background: white;
}

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.4s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.2);
}

.mission-card {
    border-top: 5px solid var(--primary-color);
}

.vision-card {
    border-top: 5px solid var(--primary-dark);
}

.mv-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 40px;
    text-align: center;
}

.mv-icon i {
    font-size: 64px;
    margin-bottom: 0;
}

.mv-content {
    padding: 40px;
}

.mv-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.mv-content p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.mission-points li,
.vision-points li {
    padding: 12px 0;
    color: var(--dark-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-points i {
    color: #28a745;
    font-size: 18px;
}

.vision-points i {
    color: #ffc107;
    font-size: 18px;
}

/* Core Values */
.value-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-top: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.15);
    border-top-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(360deg);
}

.value-icon i {
    font-size: 36px;
    color: white;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.6;
}

/* Why Choose Section */
.why-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.why-features {
    margin-top: 30px;
}

.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.why-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-icon i {
    font-size: 28px;
    color: white;
}

.why-feature-item h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.why-feature-item p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.6;
}

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-info h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
    font-weight: 600;
}

/* Global Network */
.network-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.network-content p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

.network-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.network-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.network-item:hover {
    background: white;
    box-shadow: 0 3px 10px rgba(220, 20, 60, 0.1);
    transform: translateX(10px);
}

.network-item i {
    color: #28a745;
    font-size: 20px;
}

.network-item span {
    color: var(--dark-color);
    font-weight: 500;
}

.network-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.network-stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.network-stat {
    background: rgba(255,255,255,0.95);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    backdrop-filter: blur(10px);
}

.network-stat h4 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.network-stat p {
    font-size: 12px;
    color: var(--dark-color);
    margin: 0;
    font-weight: 600;
}

/* Value Added Services */
.value-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.value-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.15);
    border-top-color: var(--primary-color);
}

.vs-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vs-icon i {
    font-size: 40px;
    color: white;
}

.value-service-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-service-card p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.vs-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vs-features span {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--dark-color);
    font-weight: 600;
}

.vs-features i {
    color: #28a745;
    margin-right: 5px;
}

.value-added-footer {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
}

/* About CTA */
.about-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.about-cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

.cta-buttons .btn {
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title-large {
        font-size: 32px;
    }
    
    .intro-highlights {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
    }
    
    .badge-number {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .section-title-large {
        font-size: 28px;
    }
    
    .lead-text {
        font-size: 18px;
    }
    
    .intro-image-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-item-1 {
        grid-column: 1;
    }
    
    .experience-badge {
        bottom: 15px;
        right: 15px;
    }
    
    .mv-content {
        padding: 30px 25px;
    }
    
    .network-stats-overlay {
        flex-direction: column;
    }
    
    .about-cta-section h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .service-feature-card,
    .value-service-card {
        padding: 30px 20px;
    }
    
    .feature-number {
        font-size: 40px;
    }
}


/* ========================================
   POPULAR DESTINATIONS SECTION
   ======================================== */

.popular-destinations-section { 
    position: relative;
    overflow: hidden;
}

.popular-destinations-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.03), rgba(255, 23, 68, 0.03));
    border-radius: 50%;
    z-index: 0;
}

.popular-destinations-section .container {
    position: relative;
    z-index: 1;
}

/* Destination Card */
.destination-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    /*! box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
    transition: all 0.4s ease;
    /*! margin: 10px; */
    /*! height: 420px; */
    /*! display: flex; */
    /*! flex-direction: column; */
}

.destination-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.2);
}

/* Flag Container */
.flag-container {
    position: relative;
    height: 99px; 
    overflow: hidden;
    background: #f0f0f0;
    border: 1px solid #ddd;
}

.flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.destination-card:hover .flag-img {
    transform: scale(1.1);
}

.flag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.9), rgba(26, 26, 26, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.destination-card:hover .flag-overlay {
    opacity: 1;
}

.flag-overlay i {
    font-size: 24px;
    color: white;
    animation: planefly 2s infinite;
}

@keyframes planefly {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(20px) rotate(5deg);
    }
}

/* Destination Info */
.destination-info {
    padding: 10px 0;
    flex: 1;
    /*! display: flex; */
    /*! flex-direction: column; */
    text-align: center;
}

.destination-info h4 {
    font-size: 15px; 
    font-weight: 700;
    color: var(--dark-color); 
    margin-bottom: 0;
    position: relative;
    padding-bottom: 0;
}
 

.destination-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 14px;
}

.destination-info p i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Destination Stats */
.destination-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.destination-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
}

.destination-stats i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Destination Button */
.btn-destination {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
    margin-top: auto;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-destination:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
    color: white;
}

.btn-destination i {
    margin-right: 8px;
}

/* Destinations Carousel */
.destinations-carousel .owl-nav {
    text-align: center;
    margin-top: 40px;
}

.destinations-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50% !important;
    margin: 0 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.destinations-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.destinations-carousel .owl-nav button i {
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.destinations-carousel .owl-nav button:hover i {
    color: white;
}

.destinations-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.destinations-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.destinations-carousel .owl-dot.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 10px;
}

/* Special Flag Styling for Nepal (unique shape) */
.destination-card:has(.flag-img[alt="Nepal Flag"]) .flag-container {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-card:has(.flag-img[alt="Nepal Flag"]) .flag-img {
    object-fit: contain;
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .destination-card {
        height: auto;
    }
    
    .flag-container {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .destination-info h4 {
        font-size: 20px;
    }
    
    .destination-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .destination-stats span {
        width: 100%;
        justify-content: center;
    }
    
    .flag-container {
        height: 89px; 
    }
}

@media (max-width: 576px) {
    .destination-card {
        margin: 5px;
    }
    
    .destination-info {
        padding: 20px;
    }
}

/* Animation for cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.owl-item.active .destination-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Simple Partners Section */
.partners-simple-section {
    /*! background: #f8f9fa; */
    margin: 40px 0;  
}

.partner-logo-simple {
    padding: 30px;
    background: white;
    border-radius: 15px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    /*! box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
    transition: all 0.3s ease;
}

.partner-logo-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.15);
}

.partner-logo-simple img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain; 
    /*! opacity: 0.6; */
    transition: all 0.3s ease;
}
 
.partner-logo-simple:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Simple Carousel */
.partners-simple-carousel .owl-nav {
    display: none;
}

.partners-simple-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.partners-simple-carousel .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 6px;
}

.partners-simple-carousel .owl-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 8px;
}

/* =========================================================================
                    responsive-css
========================================================================= */

@media only screen and (min-width: 320px) and (max-width: 767px) {

    .top-info { 
	display: flex;
	align-items: center;
	font-size: 78%;
}
.top-info span {
    margin: 0 0 0 20px!important;
}
.navbar {
	padding: 0; 
}
.navbar .container-fluid {
	max-width: 100%;
}
.navbar-brand { 
	width: 151px;
}
.navbar-toggler {
	margin: 0 18px 0 0;
	padding: 7px 6px;
	border-radius: 3px;
    border: 2px solid #fff;
}
.navbar-toggler-icon { 
	width: 45px; 
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 
}
.fixed .navbar-toggler { 
    border: 2px solid #000;
}
.fixed .navbar-toggler-icon {  
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 
}
.navbar-collapse {
	flex-basis: 100%;
	flex-grow: 1;
	align-items: center;
	left: -6px;
	background: #fff;
	margin: 0;
	position: relative;
	padding: 0 20px;
}

.nav-link {
	color: #000 !important; 
	padding: 11px 20px !important; 
}
.carousel-control-prev{
    opacity: 0;
}
 
.carousel-control-next{
    opacity: 0;
}
 .main-title { 
	font-size: 2rem;  
	margin-bottom: 30px;
}
.row.mb-5 {
	margin-bottom: 20px !important;
}

.cta-section { 
	padding:30px 0;  
}.page-header h1 {
	font-size: 25px; 
}
.breadcrumb{
    display: none;
}

.section-header h2 {
	font-size: 24px;
	font-weight: bold;
}


.section-header.text-center.mb-5 {
    margin-bottom: 20px !important;
}
.service-detail-section {
	padding: 0 0 30px 0;
}

.service-detail-image { 
	height: 26vh;
}
.service-detail-content .lead {
	font-size: 15px;
	color: #000;
	line-height: inherit;
	margin-bottom: 30px;
	font-weight: 400;
}
.py-5 {
	padding-top: 1rem !important; 
}

.office-badge {
	position: relative;
	top: -6px;
	right: auto;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	color: white;
	padding: 6px 18px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
}

.partner-logo-simple {
	padding: 0; 
}

.partners-simple-section { 
	margin-bottom: 0;
}
.service-card { 
	padding: 4px 15px; 
}
.service-image {
    position: relative;
	bottom: 12px;
	right: auto;
	width: 100%;
	height: 110px; 
}

.carousel-indicators{
    display: none;
}

.service-card:hover .service-image { 
	height: 92px; 
}




.service-card:hover {
	background-color: #ff1744;
	border-color: #ff1744;
}







}













/* =========================================================================
                    responsive-css
========================================================================= */




















