@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    /* Color Variables */
    --primary-color: #FF421D;
    --secondary-color: #000000;
    --success-color: #279b00;
    --danger-color: #f72585;
    --warning-color: #f9c74f;
    --info-color: #4895ef;
    --dark-color: #000000;
    --light-color: #ffffff;

    /* Transition Variables */
    --transition-speed: 0.3s;
    --hover-scale: 1.05;

    /* Shadow Variables */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Border Radius Variables */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Body Styles */
body {
    background-color: #ffffff;
    color: var(--dark-color);
    font-family: "Inter", serif !important;
}

.container {
    max-width: 1170px;
}

.container-more-srinked {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-right: auto;
    margin-left: auto;
    max-width: 886px;
    overflow: hidden;
}

.highlight {
    color: var(--primary-color);
}

/* Section Styles */
.section-title {
    font-size: 2.1rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Button Styles */
.btn {
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.2rem;
    transition: all var(--transition-speed);
    border: none;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    margin: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px) scale(var(--hover-scale));
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

/* Card Styles */
.card {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed);
    background: white;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all var(--transition-speed) ease-in-out;
    transform: translateX(-50%);
}

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

.card:hover::after {
    width: 100%;
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Image Card Styles */
.image-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 3/2;
}

.image-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.image-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
}

.image-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateY(0);
    transition: transform var(--transition-speed);
}

.image-card-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-speed);
}

.image-card-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.image-card:hover .image-card-title {
    transform: translateY(-20px);
}

.image-card:hover .image-card-content {
    opacity: 1;
    transform: translateY(0);
}

.image-card .btn {
    transition: all var(--transition-speed);
}

.image-card .btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.image-card .btn-with-image {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--dark-color);
}

.image-card .btn-with-image img {
    filter: brightness(0);
}

.image-card .btn-with-image:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.image-card .btn-with-image:hover img {
    filter: brightness(0) invert(1);
}

/* Form Styles */
.form-control,
.form-select {
    border-radius: var(--radius-sm);
    border: 2px solid #e9ecef;
    transition: all var(--transition-speed);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Checkbox and Radio Styles */
.form-check-input {
    cursor: pointer;
    border: 2px solid #e9ecef;
}

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

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.15);
    border-color: var(--primary-color);
}

/* Element Group Spacing */
.element-group {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero-section {
    /* padding: 12rem 0 4rem; */
    padding: 200px 0 120px;
    background: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero_image_pattern1 {
    position: absolute;
    top: 4rem;
}

.hero_image_pattern2 {
    position: absolute;
    width: 120px;
    bottom: 1rem;
    left: -20px;
}

@media (max-width: 768px) {

    .hero_image_pattern1,
    .hero_image_pattern2 {
        display: none;
    }
}

/* .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 45%;
    height: 150%;
    background: rgba(255, 92, 92, 0.03);
    transform: rotate(-15deg);
    border-radius: 100px;
} */

/* .hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 35%;
    height: 100%;
    background: rgba(10, 22, 51, 0.03);
    transform: rotate(-15deg);
    border-radius: 100px;
} */

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
    position: relative;
}

/* .hero-section h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
} */

h6 {
    line-height: 28px !important;
    font-size: 1.1rem !important;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3.5rem;
    justify-content: center;
}

.hero-buttons-left {
    display: flex;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

/* .hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
} */

.floating-element {
    position: absolute;
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.floating-element.top-right {
    top: 10%;
    right: 5%;
}

.floating-element.bottom-left {
    bottom: 10%;
    left: 5%;
}

.floating-element i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-element .text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.btn-with-image {
    padding: 0.8rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-with-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
}

.btn-with-image img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: white;
}

.feature-card {
    padding: 2rem;
    height: 100%;
    text-align: center;
    background: white;
    border-radius: var(--radius-lg);
    /* box-shadow: var(--shadow-sm); */
    border: solid 1px #f9f2f5;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Services Section */
.services-section {
    background-color: #ffffff;
    padding: 7rem 0;
}

.service-card {
    /* border: none; */
    border: 1px solid #FFD6D66E;
    border-radius: var(--radius-md);
    /* box-shadow: var(--shadow-md); */
    transition: all var(--transition-speed);
    background: white;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    height: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all var(--transition-speed) ease-in-out;
    transform: translateX(-50%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-speed);
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

.service-card h3 {
    color: var(--dark-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-speed);
}

.service-link i {
    font-size: 0.9em;
    transition: transform var(--transition-speed);
    margin-left: 0.5rem;
}

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

@media (max-width: 991.98px) {
    .services-section {
        padding: 4rem 0;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.25rem;
    }
}

/* Trusted By Section */
.trusted-by-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.trusted-by-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.trusted-by-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

#clientCarousel {
    padding: 2rem 0;
}

#clientCarousel .carousel-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.4s ease;
    opacity: 0.75;
    margin: 0 auto;
    position: relative;
}

.client-logo::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    width: 1px;
    right: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.carousel-item .row>div:last-child .client-logo::after {
    display: none;
}

.client-logo img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: all 0.4s ease;
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

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

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

@media (max-width: 991px) {
    .client-logo {
        height: 100px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .client-logo {
        height: 80px;
    }

    .trusted-by-section {
        padding: 3rem 0;
    }
}

/* Carousel Controls */
#clientCarousel .carousel-control-prev,
#clientCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.7;
    top: 50%;
    transform: translateY(-50%);
}

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

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

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

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

/* Adjust spacing for carousel items */
#clientCarousel .carousel-item .row {
    margin: 0 40px;
}

@media (max-width: 768px) {

    #clientCarousel .carousel-control-prev,
    #clientCarousel .carousel-control-next {
        width: 30px;
        height: 30px;
    }

    #clientCarousel .carousel-control-prev-icon,
    #clientCarousel .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }

    #clientCarousel .carousel-item .row {
        margin: 0 20px;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--secondary-color);
    color: #fff;
}

.footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-brand p {
    opacity: 0.8;
}

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

.footer a {
    position: relative;
    text-decoration: none;
}

.footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.footer a:hover::after {
    width: 100%;
}

.footer .btn {
    position: relative;
}

.footer .btn::after {
    display: none;
}

.footer .social-links a::after {
    display: none;
}

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

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

.social-links a {
    color: #fff;
    font-size: 1.25rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}

.social-links a:last-child {
    margin-right: 0;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px) rotate(8deg);
    background: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 66, 29, 0.3);
}

.social-links a.linkedin:hover {
    background: #0077B5;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.social-links a.twitter:hover {
    background: #1DA1F2;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.social-links a.facebook:hover {
    background: #4267B2;
    box-shadow: 0 5px 15px rgba(66, 103, 178, 0.3);
}

.social-links a.instagram:hover {
    background: #E4405F;
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.3);
}

.social-links a {
    color: #fff;
    font-size: 1.25rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}

.social-links a:last-child {
    margin-right: 0;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px) rotate(8deg);
    background: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 66, 29, 0.3);
}

.social-links a.linkedin:hover {
    background: #0077B5;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.social-links a.twitter:hover {
    background: #1DA1F2;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.social-links a.facebook:hover {
    background: #4267B2;
    box-shadow: 0 5px 15px rgba(66, 103, 178, 0.3);
}

.social-links a.instagram:hover {
    background: #E4405F;
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.3);
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-top: 0.25rem;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.newsletter .input-group {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px;
}

.newsletter .form-control {
    background-color: transparent;
    border: none;
    color: #fff;
    padding: 10px 20px;
    height: auto;
    border-radius: 25px;
}

.newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter .form-control:focus {
    background-color: transparent;
    box-shadow: none;
}

.newsletter .btn {
    border-radius: 25px;
    padding: 10px 25px;
    margin-left: 5px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.newsletter .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--secondary-color);
}

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

.footer .list-inline-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .list-inline-item a:hover {
    color: var(--primary-color);
}

/* Responsive Footer Styles */
@media (max-width: 991.98px) {
    .footer-brand {
        margin-bottom: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding-bottom: 2rem;
    }

    .footer .list-inline {
        text-align: center;
        margin-top: 1rem;
    }

    .footer-links {
        text-align: left;
        padding-left: 1rem;
    }

    .footer-links h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

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

    .contact-info {
        text-align: left;
        padding-left: 1rem;
    }

    .contact-info li {
        margin-bottom: 1rem;
    }

    .contact-info i {
        width: 20px;
        text-align: center;
        margin-right: 0.5rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        line-height: 20px;
        font-size: 1.1rem;
    }

    .social-links a:last-child {
        margin-right: 0;
    }

    .newsletter {
        text-align: left;
        padding-left: 1rem;
    }

    .newsletter .input-group {
        flex-direction: column;
    }

    .newsletter .form-control {
        border-radius: 25px;
        margin-bottom: 0.5rem;
    }

    .newsletter .btn {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .footer h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer p,
    .footer li {
        font-size: 0.9rem;
    }

    .footer-links li a {
        font-size: 0.85rem;
    }

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .social-links a {
        margin-right: 0;
        width: 32px;
        height: 32px;
        line-height: 18px;
        font-size: 1rem;
    }

    .newsletter .form-control {
        font-size: 0.9rem;
    }

    .newsletter .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 8rem 0 3rem;
        text-align: center;
        min-height: 50vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* .hero-image {
        margin-top: 3rem;
        transform: none;
    } */

    .feature-card {
        margin-bottom: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Blog Section Styles */
.blog-card {
    background: var(--light-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: solid 1px #f9f2f5;
    /* box-shadow: var(--shadow-sm); */
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    height: 100%;
}

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

.blog-image {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color var(--transition-speed);
    position: relative;
    bottom: 0;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more i {
    transition: transform var(--transition-speed);
}

.read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 767.98px) {
    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-content {
        padding: 1.25rem;
    }
}

/* Career Section Styles */
.career-section {
    background-color: #f8f9fa;
}

.career-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-color);
    font-weight: 500;
}

.job-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    /* box-shadow: var(--shadow-sm); */
    border: solid 1px #f9f2f5;
    position: relative;
    transition: all var(--transition-speed);
    height: 100%;
    overflow: hidden;
}

.job-card::before,
.job-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all var(--transition-speed) ease-in-out;
}

.job-card::before {
    left: 50%;
    transform: translateX(-50%);
}

.job-card::after {
    right: 50%;
    transform: translateX(50%);
}

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

.job-card:hover::after {
    width: 100%;
}

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

.job-type {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.job-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.job-location {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.job-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-tags li {
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: #666;
}

@media (max-width: 991.98px) {
    .career-content {
        text-align: center;
    }

    .career-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .job-card {
        padding: 1.25rem;
    }
}

/* fonts sizee */
.font-12 {
    font-size: 12px;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.font-16 {
    font-size: 16px;
}

.underlied_btn {
    position: absolute;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    bottom: 20px;
    transition: color 0.3s ease;
}

.underlied_btn::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.underlied_btn:hover {
    color: var(--primary-color);
    font-weight: 600;
}

.underlied_btn:hover::before {
    width: 100%;
}

.inv_row .col-md-6 {
    padding-right: 2rem;
}

@media (max-width: 767.98px) {
    .inv_row .col-md-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .inv_row .col-md-6.img {
        text-align: center;
    }
}

.g-6 {
    --bs-gutter-y: 5rem;
}

.btn-with-image2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-speed);
    font-weight: 500;
    min-height: 38px;
}
.btn-with-image2 img {
    margin-top: 5px;
    width: 14px;
    height: 14px;
    object-fit: contain;
    transition: transform var(--transition-speed);
}

.btn-with-image2:hover img {
    transform: rotate(45deg);
}

.btn-white-special {
    background-color: white !important;
    color: var(--primary-color);
}
.mb-9{
    margin-bottom: 65px;
}

.card{
    border: 1px solid #fbc7c76e !important;
}
.btn-primary:hover{
    background-color:rgb(219, 40, 4);
}
.btn-outline-primary{
    border: 1px solid;
    border-color: rgb(219, 40, 4) !important;
    color: black !important;
}
.btn-outline-primary:hover{
    background-color: rgb(219, 40, 4) !important;
    color: white !important;
}