/* 
==============================================
Techno - IT Solutions Website
==============================================
*/

/* General Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --transition: all 0.3s ease;
}

html {
overflow-x: hidden;}

body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.dropdown-menu a:hover {
    color: #0a58ca !important;
}

.btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: #0a58ca;
    border-color: #0a58ca;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0;
    text-decoration: none;
    transition: var(--transition);
}

.btn-link:hover {
    color: #0a58ca;
    text-decoration: none;
    transform: translateX(5px);
}

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

.py-lg-7 {
    padding-top: 9rem;
    padding-bottom: 9rem;
}

/* Section Headings */
.section-title {
    position: relative;
    text-align: center;
}

.section-title .subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.section-title h2 {
    font-weight: 800;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.2;
}

.section-title h2 .accent {
    color: var(--primary-color);
}

.section-title .divider {
    display: inline-block;
    position: relative;
    height: 5px;
    width: 80px;
    margin: 0 auto;
}

.section-title .divider:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 5px;
    width: 40px;
    background: #ccc;
    border-radius: 3px;
}

.section-title .divider:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 5px;
    width: 40px;
    background: var(--primary-color);
    border-radius: 3px;
}

.section-title .divider .dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 10px;
    width: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.section-title p {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--secondary-color);
}

.section-title.text-start {
    text-align: left;
}

.section-title.text-start .divider {
    margin: 0;
}

.section-title.text-start p {
    margin: 20px 0 0;
}

/* Animation for elements */
.fadeInUp {
    animation: fadeInUp 1s ease-in-out;
}

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

.min-vh-80 {
    min-height: 80vh;
}

/* Top Bar */
.top-bar {
    font-size: 14px;
}

.social-icons a {
    transition: var(--transition);
}

.social-icons a:hover {
    opacity: 0.8;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
}

.navbar-brand span {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 800;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color) !important;
    padding: 10px 15px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 70%;
}

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

.navbar.sticky-top {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

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

.hero-section h1, 
.hero-section h6,
.hero-section p {
    color: #fff;
}

.hero-section .appointment-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('../img/wave.png');
    background-size: cover;
    background-position: center;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    animation: pulse-animation 2s infinite;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    background: rgba(13, 110, 253, 0.3);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

.video-play-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Custom carousel indicators */
.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 5px !important;
    border: none !important;
    opacity: 1 !important;
}

.carousel-indicators button.active {
    background-color: var(--primary-color) !important;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

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

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

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

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-item {
    transition: transform 0.8s ease-in-out;
}

/* Video Play Button */
.video-play-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.video-play-button span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.video-play-button:hover {
    transform: scale(1.1);
    background-color: #0a58ca;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

/* Appointment Form */
.appointment-form {
    border-radius: 10px;
    transition: var(--transition);
    transform: translateY(0);
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.appointment-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.appointment-form p {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.appointment-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.form-control {
    padding: 15px 20px;
    border-radius: 5px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
    transition: var(--transition);
    font-size: 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background-color: #fff;
}

.appointment-form .btn {
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    background-color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.appointment-form .btn:hover {
    background-color: #0a58ca;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.service-card {
    background-color: #fff;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

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

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

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
    color: white;
}

.service-icon {
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background-color: var(--primary-color);
}

.service-card:hover .service-icon {
    color: white;
}

/* About Section with Tabs */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-tabs {
    border: none;
    margin-bottom: 30px;
    justify-content: center;
    gap: 10px;
}

.about-tabs .nav-item {
    margin: 0;
}

.about-tabs .nav-link {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    border-radius: 0;
    padding: 15px 30px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border-radius: 5px;
    min-width: 180px;
}

.about-tabs .nav-link:hover {
    background-color: #0a58ca;
    transform: translateY(-3px);
}

.about-tabs .nav-link.active {
    color: var(--primary-color) !important;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.about-tab-content {
    margin-top: 20px;
}

.about-tab-content .tab-pane {
    transition: all 0.3s ease;
}

.about-tab-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
}

.feature-list li {
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Feature Items (can be reused elsewhere) */
.feature-item {
    margin-bottom: 20px;
}

.feature-item .icon-box {
    width: 40px;
    height: 40px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .icon-box i {
    font-size: 18px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-image: url('../img/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: white;
  
}

.process-card {
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-icon-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.process-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.process-icon {
    font-size: 36px;
    color: var(--primary-color);
    transition: var(--transition);
}

.process-card:hover .process-icon-box {
    background-color: var(--primary-color);
}

.process-card:hover .process-icon {
    color: white;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.team-member-card {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    transition: var(--transition);
}

.team-info {
    padding: 20px 15px;
    position: relative;
    background-color: var(--primary-color);
}

.team-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--light-color);
}

.team-info .position {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    color: var(--light-color) !important;
}

.team-divider {
    height: 3px;
    width: 50px;
    background-color: var(--light-color);
    margin: 15px auto 0;
}

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

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

/* Team Social Icons */
.team-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 110, 253, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.team-member-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.team-member-card:hover .team-social a {
    transform: translateY(0);
    opacity: 1;
}

.team-member-card:hover .team-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.team-member-card:hover .team-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.team-member-card:hover .team-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px) !important;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f0f0f0;
    position: relative;
    padding: 100px 0;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 40px 30px 30px;
    height: 100%;
    position: relative;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C'; /* Opening quotation mark */
    position: absolute;
    top: -8px;
    left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgb(13, 109, 253);
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #105ff2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.15);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-text {
    margin-bottom: 30px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 15px;
    border-top: 1px dashed rgba(13, 110, 253, 0.2);
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

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

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

.testimonial-author-info p {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.testimonial-author-info p::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-align: center;
    line-height: 1.2;
}

.blog-date .day {
    font-size: 20px;
    font-weight: 700;
    display: block;
}

.blog-date .month {
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
}

.blog-category span {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

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

.blog-title a {
    color: var(--dark-color);
    transition: var(--transition);
}

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

.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.read-more:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.read-more:hover:after {
    width: 100%;
}

/* Blog Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-widget {
    margin-bottom: 30px;
    border-radius: 10px;
    transition: var(--transition);
    
}

.newsletter-widget{
    background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 109, 253, 0.404)), url('../img/img12.jpg');
    background-size: cover;
    background-position: center; 
}

.sidebar-widget:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

/* Search Widget */
.search-form .form-control {
    height: 50px;
    border-radius: 5px 0 0 5px;
    border: 1px solid #eee;
}

.search-form .btn {
    border-radius: 0 5px 5px 0;
    height: 50px;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list li:hover {
    padding-left: 10px;
}

.categories-list li a {
    color: #666;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories-list li a:hover {
    color: var(--primary-color);
}

/* Recent Posts Widget */
.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.recent-post-img {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-title {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.post-title a {
    color: #333;
    transition: var(--transition);
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 13px;
    color: #888;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
}

.tag-link {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    transition: var(--transition);
}

.tag-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

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

.page-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border: none;
    color: #666;
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

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

/* CTA Section */
.cta-section {
    position: relative;
    background-color: var(--primary-color);
    color: #fff;
    overflow: hidden;
    padding: 0 0 50px;
}

.about-cta-section {
    background: linear-gradient(rgba(13, 110, 253, 0.651), rgb(0, 0, 0)), url('../img/img11.jpg');
    background-size: cover;
    background-position: center; 
    overflow: hidden;
    padding: 0 0 50px;
}

.cta-phone {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-color);
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 90%;
    color: var(--light-color);
}

.cta-section .btn-light {
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-section .btn-light:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    position: relative;
    transition: var(--transition);
    z-index: 1;
}

.video-play-btn:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-border 1.5s ease-out infinite;
}

.video-play-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(13, 110, 253, 0.15), 0 0 0 30px rgba(13, 110, 253, 0.1);
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.counter-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.counter-item {
    padding: 20px 15px;
}

.counter-number {
    font-size: 55px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.counter-text {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: #F8F9FA;
}

.portfolio-filter {
    text-align: center;
}



.portfolio-filter li {
    padding: 8px 20px;
    font-weight: 600;
    color: #666;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 5px;
}

.portfolio-filter li.active,
.portfolio-filter li:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.portfolio-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.212);
    margin-bottom: 30px;
    height: 100%;
    background-color: var(--primary-color);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-overlay-content h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 14px;
}

.portfolio-link {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
}

.portfolio-link:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.portfolio-container {
    position: relative;
}

/* Footer */
.footer {
    padding: 100px 0 70px;
    /* background-color: var(--primary-color); */
    background: linear-gradient(rgb(0 0 0 / 74%), rgb(6 60 142)), url(../img/bg2.jpg);
    
    background-size: cover;
    background-position: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
}

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

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

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

.contact-info i {
    width: 20px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

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

.back-to-top:hover {
    background-color: #0a58ca;
    color: white;
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 36px;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .appointment-form {
        margin-top: 50px;
    }
    
    .py-lg-7 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 30px;
    }

    .page-header, .service-page-header, .blog-page-header, .contact-page-header, .portfolio-page-header  {
        height: 300px !important;
    }
        
    
    .top-bar span {
        display: block;
        margin-bottom: 5px;
    }
    
    .top-bar .social-icons {
        margin-top: 10px;
    }
    
    .process-card {
        margin-bottom: 30px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-in-out;
}

.fade-in-left {
    animation: fadeInLeft 1s ease-in-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-in-out;
}

.zoom-in {
    animation: zoomIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover Effects */
.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-shadow {
    transition: var(--transition);
}

.hover-shadow:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Custom Animations */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.rotating {
    animation: rotating 10s linear infinite;
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), #6610f2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Animated Border */
.animated-border {
    position: relative;
}

.animated-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), #6610f2);
    transition: width 0.5s ease;
}

.animated-border:hover::after {
    width: 100%;
}

/* Glowing Effect */
.glow-on-hover {
    transition: var(--transition);
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.6);
}

/* Typing Animation */
.typing-animation {
    overflow: hidden;
    border-right: 2px solid var(--primary-color);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--primary-color);
    }
}

.splide__slide {
    padding: 80px 0;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
  }

  .splide__pagination__page.is-active {
    background-color: var(--primary-color);
    width: 27px;
    border-radius: 4px;
    margin: 0 10px;
  }

  .splide__pagination__page {
    background-color: #a8a8a8;
    width: 27px;
    border-radius: 4px;
    margin: 0 10px;
  }

  .page-header{
    background: linear-gradient(rgba(13, 110, 253, 0.8), rgba(13, 109, 253, 0.26)), url('../img/img12.jpg');
    background-size: cover;
    background-position: center; 
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-page-header{
    background: linear-gradient(rgba(13, 110, 253, 0.8), rgba(13, 109, 253, 0.26)), url('../img/img8.jpg');
    background-size: cover;
    background-position: center center; 
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blog-page-header{
    background: linear-gradient(rgba(13, 110, 253, 0.8), rgba(13, 109, 253, 0.26)), url('../img/img15.jpg');
    background-size: cover;
    background-position: center center; 
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-page-header{
    background: linear-gradient(rgba(13, 110, 253, 0.8), rgba(13, 109, 253, 0.26)), url('../img/img17.jpg');
    background-size: cover;
    background-position: left center; 
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .portfolio-page-header{
    background: linear-gradient(rgba(13, 110, 253, 0.8), rgba(13, 109, 253, 0.26)), url('../img/img18.jpg');
    background-size: cover;
    background-position: center center; 
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blog-detail-section{
    padding: 100px 0;
  }

  .blog-detail-content{
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.11);
  }

  .breadcrumb-item+.breadcrumb-item::before{
    color: white !important;
  }

  /* Experience Badge */
  .experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
    padding: 20px;
    z-index: 1;
    animation: pulse-light 2s infinite;
  }

  .experience-badge .number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
  }

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

  @keyframes pulse-light {
    0% {
      box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
  }

  /* Additional Company Page Sections */
  .mission-vision-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .values-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .counter-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
  }

  .cta-content {
    padding: 50px;
    border-radius: 10px;
  }

  .cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .cta-text p {
    font-size: 18px;
    margin-bottom: 0;
    opacity: 0.9;
  }

  /* Service Box Styles */
  .service-box {
    position: relative;
    transition: var(--transition);
    border-radius: 10px;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

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

  .service-icon-wrap {
    margin-bottom: 20px;
  }

  .service-icon {
    width: 80px;
    height: 80px;
    /* background-color: var(--primary-color); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto 20px; */
    color: white;
    font-size: 32px;
    transition: var(--transition);
  }

  .service-box .service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    transition: var(--transition);
  }

  .service-box:hover .service-icon {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
  }

  .service-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    transition: var(--transition);
  }

  .service-box p {
    margin-bottom: 20px;
    color: #6c757d;
  }

  .btn-arrow {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
    position: absolute;
    bottom: 30px;
    right: 30px;
  }

  .service-box:hover .btn-arrow {
    background: var(--primary-color);
    color: white;
  }

  /* Feature Card Styles */
  .feature-card {
    background-color: #fff;
    border-radius: 10px;
    transition: var(--transition);
    height: 100%;
  }

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

  .feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--primary-color);
    font-size: 32px;
    transition: var(--transition);
  }

  .feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: #fff;
  }

  .feature-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
  }

  .why-choose-section {
    background-color: #f8f9fa;
    padding: 100px 0;
  }

  /* Feature Item Styles for Why Choose Us section */
  .feature-item {
    margin-bottom: 25px;
  }

  .feature-icon-box {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    flex-shrink: 0;
  }

  .feature-item:hover .feature-icon-box {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
  }

  .feature-content h5 {
    font-weight: 700;
    margin-bottom: 5px;
  }

  .feature-content p {
    margin-bottom: 0;
    color: #6c757d;
  }

  /* CTA Blue Section */
  .cta-blue-section {
    background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.8)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    color: #fff;
  }

  .cta-phone-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .cta-phone-number h4 {
    font-weight: 600;
  }

  .cta-blue-section h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
  }

  .cta-blue-section .btn {
    padding: 12px 30px;
    font-weight: 600;
  }

  .cta-play-btn-wrapper {
    position: relative;
  }

  .cta-play-btn {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .cta-play-btn::before {
    content: '';
    position: absolute;
    top: 39px;
    left: 39px;
    right: -64px;
    bottom: -63px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(0.9);
      opacity: 0.7;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.3;
    }
    100% {
      transform: scale(0.9);
      opacity: 0.7;
    }
  }

  /* Pricing Section Styles */
  .pricing-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
  }

  /* Pricing Switch */
  .pricing-switch-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .pricing-period-text {
    font-weight: 600;
    color: #6c757d;
  }

  .pricing-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
  }

  .pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
  }

  .pricing-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }

  input:checked + .pricing-slider {
    background-color: var(--primary-color);
  }

  input:focus + .pricing-slider {
    box-shadow: 0 0 1px var(--primary-color);
  }

  input:checked + .pricing-slider:before {
    transform: translateX(30px);
  }

  .pricing-badge {
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    margin-left: 10px;
  }

  /* Pricing Cards */
  .pricing-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    z-index: 1;
  }

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

  .pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
  }

  .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
  }

  .pricing-badge-popular {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 3;
  }

  .pricing-card-header {
    padding: 30px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .pricing-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
  }

  .pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
  }

  .pricing-price {
    margin-bottom: 20px;
  }

  .price-yearly {
    display: none;
  }

  .currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
    line-height: 1;
    color: #333;
  }

  .amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
  }

  .period {
    font-size: 16px;
    color: #6c757d;
  }

  .pricing-card-body {
    padding: 30px;
  }

  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
  }

  .pricing-features li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  }

  .pricing-features li:last-child {
    border-bottom: none;
  }

  .pricing-features li.disabled {
    color: #adb5bd;
  }

  .pricing-btn-wrapper {
    text-align: center;
  }

  .pricing-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(13, 110, 253, 0.3) 100%);
  }

  /* JavaScript for Pricing Toggle */
  body.yearly-pricing .price-monthly {
    display: none;
  }

  body.yearly-pricing .price-yearly {
    display: block;
  }

  /* Service Detail Page Styles */
  .service-detail-hero {
    padding: 80px 0;
    background-color: #f8f9fa;
  }

  .service-categories {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .category-list {
    margin-bottom: 20px;
  }

  .category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
  }

  .category-item:hover, .category-item.active {
    background-color: var(--primary-color);
    color: #fff;
  }

  .category-item i {
    font-size: 12px;
  }

  .company-presentation-btn {
    display: block;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 20px;
  }

  .company-presentation-btn:hover {
    background-color: #0b5ed7;
    color: #fff;
  }

  .help-box {
    background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 109, 253, 0.404)), url('../img/img12.jpg');
    background-size: cover;
    background-position: center;    padding: 30px;
    color: #fff;
    border-radius: 10px;
    text-align: center;
  }

  .help-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
  }

  .help-box p {
    margin-bottom: 20px;
    opacity: 0.9;
  }

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

  .save-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
  }

  .save-btn:hover {
    background-color: #0b5ed7;
    color: #fff;
  }

  .service-detail-content {
    padding: 80px 0;
  }

  .service-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
  }

  .service-description {
    color: #6c757d;
    margin-bottom: 30px;
  }

  .service-feature-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
  }

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

  .feature-icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 30px;
  }

  .service-feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
  }

  .service-feature-card p {
    color: #6c757d;
    margin-bottom: 0;
  }

  .additional-image {
    margin-bottom: 30px;
  }

  /* Blog Detail Styles */
  .blog-detail-img img {
      width: 100%;
      border-radius: 10px;
  }
  
  .blog-detail-title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.3;
  }
  
  .blog-detail-text p {
      margin-bottom: 20px;
      line-height: 1.8;
  }
  
  .blog-detail-text h2 {
      font-size: 28px;
      font-weight: 700;
      margin: 30px 0 20px;
  }
  
  .blog-detail-text h3 {
      font-size: 24px;
      font-weight: 700;
      margin: 25px 0 15px;
  }
  
  .blog-detail-text ul, .blog-detail-text ol {
      margin-bottom: 20px;
      padding-left: 20px;
  }
  
  .blog-detail-text ul li, .blog-detail-text ol li {
      margin-bottom: 10px;
  }
  
  .blog-detail-text img {
      max-width: 100%;
      border-radius: 8px;
      margin: 20px 0;
  }
  
  .blog-detail-text blockquote {
      border-left: 4px solid var(--primary-color);
      padding: 20px;
      background-color: #f8f9fa;
      margin: 20px 0;
      font-style: italic;
  }
  
  .blog-tags .tags-cloud {
      margin-top: 10px;
  }
  
  .blog-share .social-share a {
      width: 40px;
      height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: var(--transition);
  }
  
  .blog-share .social-share a:hover {
      transform: translateY(-3px);
  }
  
  /* Author Bio */
  .author-bio {
      margin: 30px 0;
  }
  
  .author-bio img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
  }
  
  .author-name {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 5px;
  }
  
  .author-designation {
      font-size: 14px;
      color: #666;
      margin-bottom: 15px;
  }
  
  .author-social a {
      display: inline-block;
      width: 35px;
      height: 35px;
      background-color: #f5f5f5;
      color: #666;
      border-radius: 50%;
      text-align: center;
      line-height: 35px;
      margin-right: 10px;
      transition: var(--transition);
  }
  
  .author-social a:hover {
      background-color: var(--primary-color);
      color: #fff;
  }
  
  /* Comments Section */
  .comments-section {
      margin-bottom: 30px;
  }
  
  .comment {
      margin-bottom: 25px;
  }
  
  .comment img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
  }
  
  .comment-author {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 5px;
  }
  
  .comment-date {
      font-size: 14px;
      color: #666;
      margin-bottom: 10px;
  }
  
  .comment-text {
      margin-bottom: 10px;
      line-height: 1.7;
  }
  
  .reply-btn {
      display: inline-block;
      color: var(--primary-color);
      font-weight: 600;
      transition: var(--transition);
  }
  
  .reply-btn:hover {
      color: var(--dark-color);
  }
  
  .comment-reply {
      margin-top: 20px;
      padding-left: 30px;
      border-left: 2px solid #eee;
  }
  
  /* Comment Form */
  .comment-form {
      margin-bottom: 30px;
  }
  
  .comment-form .form-control {
      height: 50px;
      border-radius: 5px;
      border: 1px solid #eee;
      padding: 10px 15px;
      margin-bottom: 20px;
  }
  
  .comment-form textarea.form-control {
      height: auto;
      resize: none;
  }
  
  .comment-form .btn {
      padding: 12px 30px;
      font-weight: 600;
  }

  /* Dropdown on Hover Styles */
  @media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
    }
  }
  
  .dropdown-toggle::after {
    display: none;
  }

  /* Portfolio Styles */
  
  .portfolio-filter ul {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.11);
  }
  
  .portfolio-filter li {
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 30px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.192);
  }
  
  .portfolio-filter li.active {
    background-color: var(--primary-color);
    color: white;
  }
  
  .portfolio-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .portfolio-img {
    position: relative;
    overflow: hidden;
  }
  
  .portfolio-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
  }
  
  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 110, 253, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .portfolio-card:hover .portfolio-overlay {
    opacity: 1;
  }
  
  .portfolio-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
  }
  
  .portfolio-overlay-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .portfolio-overlay-content p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
  }
  
  .portfolio-zoom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .portfolio-zoom:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  /* Portfolio Modal */
  .portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow: auto;
    justify-content: center;
    align-items: center;
  }
  
  .portfolio-modal.active {
    display: flex;
  }
  
  .portfolio-modal-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    margin: auto;
  }
  
  .portfolio-modal-content img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
  
  .portfolio-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .portfolio-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }


  .contact-info-section, .contact-form-section, .faq-section{
    padding: 100px 0;
  }

  .contact-cards-section{
    background: url('../img/img8.jpg') center center/cover;
    position: relative;
    padding: 100px 0;
  }
  
  /* Pulse Animation for Video Play Button */
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
  }

  /* Preloader Styles */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.6s ease-out;
  }

  .loader {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(13, 110, 253, 0.1);
    border-top: 4px solid var(--primary-color);
    animation: spin 1s linear infinite;
    position: relative;
  }

  .loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.2);
    animation: pulse 1.5s ease-out infinite;
  }

  .loading-text {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    animation: fadeInOut 1.5s ease-in-out infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
  }

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

  /* Hide preloader when content is loaded */
  .preloader-hide {
    opacity: 0;
    visibility: hidden;
  }