:root {
    --body-font: 'calabri', sans-serif;
    --section-text: #c31d17;
    --head-text: #1f1f1f;
    --paragraph-font: 'Roboto', sans-serif;
    --color-blue: #64acff;
    --body-color: #373e58;
    --paragraph-color: #565e7c;
    --head-color: #616161;
    --color-white: #ffffff;
    --card-hover-color: #c31d17;
}

/* 
@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1700px !important;
    }
} */

/* 🔹 Small Mobile Devices (max-width: 480px) */
@media only screen and (max-width: 480px) {
    .hero-slide {
        height: 40vh !important;
        /* Reduce height */
        padding: 10px;
    }

    .hero-slide .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
        position: relative;
        z-index: 2;
    }

    .hero-slide h1 {
        font-size: 24px;
    }

    .hero-slide p {
        font-size: 12px;
    }

    .default-btn2 {
        padding: 6px 12px;
        font-size: 12px;
        overflow: hidden;
    }
   
}

body {
    overflow-x: hidden !important;
}

.lh-45 {
    line-height: 45px !important;
}

.section-text span {
    font-size: 35px;
    color: var(--section-text);
    font-weight: 500;
}

.section-text h2 {
    color: var(--head-text);

    padding-top: 3px;
    margin-bottom: 20px;
}

/* Navbar Styling */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Ensures it stays above other elements */
    background: white;
    /* Ensures background remains solid */
}

/* Push Content Down to Prevent Overlapping */
body {
    padding-top: 70px;
    /* Adjust based on navbar height */
}

/* Navbar Padding */
.navbar {
    padding: 10px 0;
}

/* Navbar Logo */
.navbar-brand img {
    height: 50px;
}

/* Navbar Hover Effect */
.navbar-nav .nav-item .nav-link {
    color: var(--head-text);
    font-size: 18px;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
}

/* Hover & Active Effect */
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
    color: var(--section-text) !important;
    /* Red color */
    padding-bottom: 14px;
    /* Expands by 4px */
    border-bottom: 2px solid var(--section-text);
    /* Underline */
}


/* Hero Banner Styling */
#hero-banner {
    position: relative;
    width: 100%;
    padding: 240px 0px;
}
#hero-banner h1{
    font-size: 50px;
}
#heroCarousel {
    cursor: grab;
}

/* Slide Styling */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}

/* Carousel Control button setting */

.carousel-control-prev,
.carousel-control-next {
    z-index: 2;
}

/* Background Images for Each Slide */
.slide-1 {
    background:  url(../img/Cover\ Banner-04.jpg) no-repeat center center / cover;
}

.slide-2 {  
    background: url('../img/Banner-02.png') no-repeat center center/cover;
}

.slide-3 {
    background: url('../img/Banner-03.png') no-repeat center center/cover;
}

/* ✅ Ensure Overlay Issue is Fixed */
.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.3); */
    /* Light overlay for readability */
}

/* Content Styling */
.hero-slide .container {
    /* padding-left: 240px !important; */
    position: relative;
    z-index: 2;
}

.hero-slide h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-slide p {
    font-size: 18px;
    font-weight: 400;
}

/* Button Styling */
.default-btn2 {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: #c31d17;
    border: none;
    transition: background 0.2s ease-in-out;
    z-index: 2;
    overflow: hidden;
}

.default-btn2::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1f1f1f;
    transition: top 0.2s ease-in-out;
    z-index: -1;
}

.default-btn2:hover::before {
    top: 0;
}

.default-btn2,
.default-btn2:hover {
    color: white !important;
    position: relative;
    z-index: 2;
}

.carousel-item p {
    max-width: 600px;
}

/* ✨ Responsive Design */

/* 🔹 Tablets (max-width: 1024px) */
@media only screen and (max-width: 1024px) {
    .hero-slide {
        height: 75vh;
        /* Adjust height for tablets */
    }

    .hero-slide h1 {
        font-size: 36px;
        /* Reduce font size */
    }

    .hero-slide p {
        font-size: 16px;
    }

    .default-btn2 {
        padding: 10px 20px;
        font-size: 14px;
        overflow: hidden;
    }
}

/* 🔹 Mobile Devices (max-width: 768px) */
@media only screen and (max-width: 768px) {
    .hero-slide {
        height: 40vh !important;
        /* Adjust height for mobile */
        padding: 20px;
    }

    .hero-slide .container {
        padding-left: 70px !important;
        padding-right: 345px !important;
        position: relative;
        z-index: 2;
    }

    .hero-slide h1 {
        font-size: 28px;
        /* Smaller font size */
    }

    .hero-slide p {
        font-size: 14px;
        max-width: 90%;
        /* Ensure text doesn't overflow */
    }

    .default-btn2 {
        padding: 8px 16px;
        font-size: 13px;
        overflow: hidden;
    }
}

/* 🔹 Small Mobile Devices (max-width: 480px) */
@media only screen and (max-width: 480px) {
    .hero-slide {
        height: 40vh !important;
        /* Reduce height */
        padding: 10px;
    }

    .hero-slide .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
        position: relative;
        z-index: 2;
    }

    .hero-slide h1 {
        font-size: 24px;
    }

    .hero-slide p {
        font-size: 12px;
    }

    .default-btn2 {
        padding: 6px 12px;
        font-size: 12px;
        overflow: hidden;
    }

    /* home page css */

    /* features section */
    #features-section::after {
        width: 335px !important;
        height: 335px !important;
        top: 0 !important;
        filter: brightness(2.5) !important;
    }
    .feature-list li {
         margin-left: 0px!important;
    }

    #hero-banner {
        padding: 90px 0px;
    }

    .about_us {
        padding: 40px 0 !important;
    }
}


/* Custom Feature Card Styling */
.feature-card {
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: var(--color-white);
    padding: 20px;
    /* Default padding */
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
    overflow: hidden;
    /* Prevents content overflow */
}

/* Hover Effect (Applies only to hovered card) */
.feature-card:hover {
    background: rgb(44, 44, 44);
    /* Change background */
    transform: scale(1.05);
    /* Slight zoom effect */
    color: var(--color-white);
    /* Change text color */
}

/* Keep text and icon colors the same */
.feature-card:hover .feature-card-title,
.feature-card:hover .feature-card-text {
    color: var(--color-white);
}

/* Ensure icon size remains consistent */
.feature-card-icon img {
    transition: transform 0.3s ease-in-out;
}

/* Slight scale effect on icon */
.feature-card:hover .feature-card-icon img {
    transform: scale(1.1);
}

/* Feature Section Icons */
.feature-card-icon .fas,
.feature-card-icon .fab {
    font-size: 50px !important;
    /* Feature section icon size */
    transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

/* Default Icon Styling */
.fa-style {
    color: var(--section-text);
    /* Default color */
    border-radius: 50%;
    padding: 10px;
}

/* Change icon color when hovering on the entire card */
.feature-card:hover .fa-style {
    color: var(--color-white);
    /* Change icon color on card hover */
}

/* ==========================================
   MODULE SECTION STYLES
   ========================================== */

/* Module Section with Background Image */
#module-section {
    position: relative;
    background: url('../img/CTD.png') no-repeat center center/cover;
    padding: 80px 0;
    overflow: hidden;
}

/* Blur Overlay */
#module-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.377);
    /* Dark overlay */
    backdrop-filter: blur(10px);
    /* Blur effect */
    z-index: 0;
}

/* Ensure content remains above the overlay */
#module-section .container {
    position: relative;
    z-index: 2;
}

/* Module Section Titles */
.module-title h2 {
    /* font-size: 36px; */
    font-weight: bold;
    color: var(--color-white);
}

.module-text {
    font-size: 18px;
    color: var(--color-white);
}

/* ==========================================
   MODULE CARDS STYLES (Updated)
   ========================================== */

/* Module Cards */
.module-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover Effect */
.module-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Module Icons */
.module-icon {
    font-size: 40px;
    color: var(--section-text);
    transition: color 0.3s ease-in-out;
}

/* Change icon color on hover */
.module-card:hover .module-icon {
    color: var(--card-hover-color);
}

/* Module Card Titles */
.module-card-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-white);
    margin-top: 10px;
}

/* Module Card Text */
.module-card-text {
    font-size: 16px;
    color: var(--color-white);
}

/* Scroll Animation: Show cards when in viewport */
.show-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* ==========================================
   BENEFIT CARDS STYLES (Updated)
   ========================================== */

/* Default Benefit Card Styling */
.benefit-card {
    opacity: 0;
    /* transform: translateY(30px); */
    border-radius: 10px;
    background: var(--color-white);
    border: 2px solid transparent;
    /* Initial border to enable transition */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: var(--head-text);
    transition: opacity 0.5s ease, background-color 0.5s ease, border 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
    /* Specify all transitioning properties */
}

.benefit-card:hover {
    background-color: #2c2c2c;
    border: 2px solid var(--card-hover-color);
    color: var(--color-white);
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.1);
}

/* Show Cards on Scroll */
.show-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease;
    /* Match the animation duration */
}

/* ==========================================
   DEMO SECTION STYLES
   ========================================== */

/* Section Styling */
#demo-section {
    position: relative;
    background: url('../img/demo-bg.jpg') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
}

/* Section Title */
.demo-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--section-text);
    display: block;
    margin-bottom: 10px;
}

.demo-text {
    font-size: 18px;
    color: var(--head-text);
}

/* ==========================================
   DEMO CARDS STYLES
   ========================================== */

/* Demo Cards */
.demo-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    opacity: 1;
    transform: translateY(8px);
}

/* Hover Effect */
.demo-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    border: 2px solid var(--card-hover-color);
}

/* Demo Card Titles */
.demo-card-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--head-text);
    margin-top: 10px;
}

/* Demo Card Text */
.demo-card-text {
    font-size: 16px;
    color: var(--head-text);
}

/* Scroll Animation: Show cards when in viewport */
.show-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* ==========================================
   FOOTER SECTION STYLING
   ========================================== */

footer {
    background: #1f1f1f;
    /* Dark Gray */
    color: white;
    padding: 40px 0;
}

/* Footer Links */
footer a {
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: var(--card-hover-color);
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

footer {
    background: #1f1f1f;
    /* Dark Gray */
    color: white;
    padding: 40px 0;
}

/* Footer Links */
footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}

footer a:hover {
    color: var(--card-hover-color) !important;
    /* Change color to red */
    font-weight: bold;
    /* Make text bold */
}



/* ==========================================
   FOOTER SOCIAL MEDIA ICONS
   ========================================== */

.footer-icons a {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--color-white);
    color: var(--section-text);
    transition: all 0.3s ease-in-out;
}

/* Icon Size */
.footer-icons a i {
    font-size: 18px !important;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.footer-icons a:hover {
    background-color: #c31d17 !important;
    /* Red background */
    border-radius: 50% !important;
    /* Circle shape */
    color: #ffffff !important;
    /* White icon color */
}

/* Ensure Icon Color Changes on Hover */
.footer-icons a:hover i {
    color: #ffffff !important;
}

/* ==========================================
   VERTICAL LINE FOR FOOTER SECTIONS
   ========================================== */

.vertical-line h5 {
    position: relative;
    padding-left: 15px;
    /* Space for vertical line */
}

/* Vertical Line */
.vertical-line h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    /* Width of vertical line */
    background-color: var(--card-hover-color);
    /* Red */
    border-radius: 2px;
    /* Slightly rounded edges */
}

/* Below Footer Section - Add a Light Grey Separator */
.below-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Light grey line */
}


.after-footer {
    color: #118be6;
    transition: .2s ease;
}

.after-footer:hover {
    color: var(--section-text);
    font-weight: bolder;
}



/* new about us page css start */
.bg-banner1{
    background-image: linear-gradient(to left, #00000080, #c31d17), url(../img/about-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: top;
}

.about-page h2{
    font-size: 40px;
}

.cust-head {
    padding-bottom: 140px;
    padding-top: 100px;
    color: #fff;
    text-align: center;
    background-image:url(../img/home7.jpg); 
    background-position: bottom;
}

.cust-head-points{
    margin-top: -100px;
    padding-bottom: 100px;
}

.cust-head-points .row{
    gap: 20px;
}

.founder .main-content{
    background-color: #c31d17;
    text-align: center;
    border-radius: 25px;
    padding: 140px 30px 40px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.media{
    display: flex;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-bottom: 20px;
} 
.media .icon_image{
    margin-right: 20px;
    max-width: 30px;
}

.founder img{
    max-width: 390px;
    clip-path: circle(35%);
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
    margin: 0px auto;
}

.founder h2{
    margin-top: 8px;
    margin-bottom: 15px;
}

.why-ectd{
    background-color: var(--section-text);
    padding: 25px;
    color: #fff;
    max-width: 315px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.why-ectd:before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg, transparent, transparent 30%, rgb(35 31 32));
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.why-ectd:hover{
    transform: scale(1.05);
    box-shadow: 0 0 20px rgb(35 31 32);
}

.why-ectd:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
  }

.about-page img{
    max-width: 500px;
  } 

  .founder{
    padding-bottom: 100px;
    padding-top: 20px;
  }
  
/* new about us page css end */


/*==============================================================
                     ABOUT PAGE STARTS HERE
===============================================================*/

.section-padding{
    padding-top: 120px;
}

.bg-color1 {
    background-color: #171818;
}

.bg-shape1 {
    position: relative;
}

.bg-shape1::before {
    content: "";
    position: absolute;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table {
    display: table !important;
}

.d-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.d-table-cell {
    display: table-cell !important;
}

.inner-banner .inner-title {
    padding-top: 150px;
    padding-bottom: 130px;
    position: relative;
}

.text-center {
    text-align: center !important;
}

.inner-banner .inner-title h3 {
    font-size: 45px;
    color: #c31d17;
}

/*  */
.inner-banner1 .inner-title1 {
    /* padding-top: 150px;
    padding-bottom: 130px; */
    position: relative;
}

.inner-banner1 .inner-title1 ul li {
    font-size: 18px;
    color: #ffffff;
    display: inline-block;
    margin-right: 15px;
}

.text-center {
    text-align: center !important;
}

.inner-banner1 .inner-title1 h3 {
    font-size: 45px;
    color: var(--color-white);
}

@media (min-width: 1200px) {

    h3,
    .h3 {
        font-size: 1.75rem;
    }
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bs-heading-color);
}

.inner-banner .inner-title ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol,
ul {
    padding-left: 2rem;
}

.inner-banner .inner-title ul li {
    font-size: 18px;
    color: #ffffff;
    display: inline-block;
    margin-right: 15px;
}

.inner-banner .inner-title ul li a {
    color: #ffffff;
}

.inner-banner .inner-title ul li i {
    font-size: 16px;
}

.inner-banner .inner-title .fa-solid,
.fas {
    font-weight: 900;
}

.inner-banner .inner-title ul li:last-child {
    margin-right: 0;
}

#About {
    padding: 75px;
    background-image: url(../img/about-img.jpg);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
}

#About p {
    font-size: 16px;
    color: var(--color-white)
}

#About li {
    font-size: 16px;
    color: var(--color-white)
}

.abt-bg {
    background-color: #000000d5;
    border-radius: 10px;
}

/*==============================================================
                     ABOUT PAGE ENDS HERE
===============================================================*/

/*==============================================================
                     CONTACT PAGE STARTS HERE
===============================================================*/
.contact-bnr-img {
    background-image: linear-gradient(to left, #00000080, #c31d17),url(../img/contact-us.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: right;
}

.inner-banner .inner-title {
    padding-top: 200px;
    padding-bottom: 200px;
    position: relative;
}

.inner-banner .inner-title h3 {
    font-size: 45px;
    color: var(--color-white);
}

.inner-banner .inner-title ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner-banner .inner-title ul li {
    font-size: 18px;
    color: #ffffff;
    display: inline-block;
    margin-right: 15px;
}

.inner-banner .inner-title ul li a {
    color: #ffffff;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-100 {
    padding-top: 100px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* Contact Title Styling */
.contact-title h2 {
    font-size: 35px;
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Card - Hover Effect */
.contact-card-hov {
    transition: 0.3s ease-in-out;
}

/* Change Everything Inside on Hover (Except Icon Background) */
.contact-card-hov:hover {
    background-color: #2c2c2c !important;
    border-radius: 6px;
    color: #ffffff !important;
}

/* Ensure Contact Item Text Changes on Hover */
.contact-card-hov:hover .contact-item h3,
.contact-card-hov:hover .contact-item a {
    color: #ffffff !important;
}

/* Contact Item Styling */
.contact-item {
    text-align: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 50px 25px;
    margin-bottom: 30px;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
}

/* Icon Styling - Keep Background Same */
.contact-item .icon-contact {
    width: 50px;
    height: 50px;
    background-color: #c31d17;
    /* Icon background remains unchanged */
    line-height: 50px;
    color: #ffffff !important;
    font-size: 25px;
    text-align: center;
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

/* Ensure Icon Text Stays White (No Color Change on Hover) */
.contact-item .icon-contact i {
    color: #ffffff !important;
}

/* Contact Item Heading */
.contact-item h3 {
    font-size: 20px;
}

/* Link & Text Styling */
.contact-item a,
.contact-item h3 a {
    color: var(--head-text);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

/* Ensure Links Change Color on Hover */
.contact-card-hov:hover .contact-item a {
    color: #ffffff !important;
}

/* Contact Icons */
.txt-cntc {
    color: #ffffff;
    transition: color 0.3s ease-in-out;
}

/* Contact Heading Styling */
.txt-cntc-1 {
    color: var(--head-text);
    transition: color 0.3s ease-in-out;
}

/* Ensure Heading Changes Color on Hover */
.contact-card-hov:hover .txt-cntc-1 {
    color: #ffffff !important;
}

/* Initially, move elements off-screen */
.slide-in {
    opacity: 0;
    transform: translateX(-100px);
    /* Move from left */
    transition: all 0.8s ease-in-out;
}

/* When element is visible, move to its position */
.slide-in.show {
    opacity: 1;
    transform: translateX(0);
}


.header-bar {
    background-color: var(--head-text);
    color: #ffffff;
    padding: 8% !important;
    text-align: center;
    font-family: Arial, sans-serif;
}

.header-title {
    color: var(--section-text);
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.breadcrumb {
    justify-content: center;
    color: #ffffff;
    font-size: 0.9em;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Ensure Banner Content is Centered */
.tnc-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    /* Make it full viewport height */
}

/* Center Title Content */
.tnc-banner .tnc-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    /* Adjust for header spacing */
    padding-bottom: 100px;
    position: relative;
}

/* Style the Heading */
.tnc-banner .tnc-title h3 {
    color: var(--color-white);
    font-size: 45px;
}

.tnc-banner .tnc-title i {
    color: var(--color-white);
    font-size: 15px;
}

/* Remove Bullet Points in <ul> */
.tnc-banner .tnc-title ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add spacing between list items */
.tnc-banner .tnc-title ul li {
    margin: 0 10px;
    font-size: 18px;
}

/* Remove default link styles */
.tnc-banner .tnc-title ul li a {
    text-decoration: none;
    color: var(--color-white);
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.tnc-banner .tnc-title ul li a:hover {
    color: var(--card-hover-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th,
td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* Add this to create the overlay with blur effect */
/* .blog-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
} */

.post-item img {
    max-width: 140px;
    margin-right: 20px;
}

.post-item{
    display: flex;
    flex-direction: row;
     margin-bottom: 20px;
}
.blog-post h2 a{
    color: #000;
    text-decoration: none;
} 
.content a, .meta-top a{
    color: #C31D17;
    text-decoration: none;
}
.post-item a{
    text-decoration: none;
    color: #000;
}
.post-item time{
    color: #C31D17;
}

 .blog-details .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5) !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.blog-main-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    object-position: center;
}

.recent-post-item {
    display: flex;
    flex-direction: row;
    padding: 15px;
} 
.recent-post-item a{
    text-decoration: none;
    color: #C31D17;
}
.recent-post-item img {
    /* max-width: 80px; */
    margin-right: 20px;
}
.blog-details .content h2,.references h2{
    color: #C31D17;
}
.references a{
    text-decoration: none;
    color: #000;
}
.references a:hover{
    color: #C31D17;
}
#blog-date-link{
    color: #000;
    text-decoration: none;
}
.blog-banner {
    position: relative;
    background-image:linear-gradient(to left, #00000080, #c31d17), url(../img/blog-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}
.main-head {
    padding-top: 120px;
    padding-bottom: 120px;
}
.page-title__main{
    width: 100%;
    max-width: 700px;
    color: #fff;
}
/* Ensure content stays above the overlay */
.inner-title,
.d-table-cell {
    position: relative;
    z-index: 2;
    /* Content above the overlay */
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(5px)) {
    .blog-banner::before {
        background: rgba(0, 0, 0, 0.6);
        /* Darker fallback without blur */
    }
}
/* feature section */

.feature-list {
    flex: 0 0 48%;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    color: #fff;
  }
  
  .feature-list li {
    margin-bottom: 39px;
    max-width: 535px;
    display: flex;
    flex-direction: row;
    margin-left: 100px;
  }
  
  .feature-list li h5 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .feature-list li p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  @media (max-width: 768px) {
    .feature-list {
      flex: 0 0 100%;
    }
  }

  .feature-list img{
     max-width: 50px;
     height: 100%;
     width: 100%;
     filter: brightness(15.5);
  }

  .feature-list div {
    padding-left: 25px;
}



/* modules section */
.modules ul li {
    max-width: 302px;
    width: 100%;
    padding: 25px 15px;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 30px;
}
.modules{
    padding: 80px 0px;
    align-items: center;
}





/* new benefits section css */
/* Reset styles (simplified from compass/reset) */
/* html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
} */

/* HTML5 display-role reset for older browsers */
/* article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
 */


@font-face {
  font-family: 'Genericons';
  src: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/53819/genericons-regular-webfont.eot');
  src: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/53819/genericons-regular-webfont.woff') format('woff'),
       url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/53819/genericons-regular-webfont.eot') format('truetype');
  font-weight: normal;
  font-style: normal;
}

[class*="genericon"] {
  display: inline-block;
  width: 16px;
  height: 16px;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1;
  font-family: 'Genericons';
  text-decoration: inherit;
  font-weight: normal;
  font-style: normal;
  vertical-align: top;
}

/* IE7 */
/* [class*="genericon"] {
  *overflow: auto;
  *zoom: 1;
  *display: inline;
} */

/* .container {
  margin: 100px auto;
} */
/* Load FontAwesome *//* Load FontAwesome */
@import url("/app/dist/fontawesome.all.min.css");

/* Simplified reset */

/* .container {
 
  max-width: 1400px; /
} */



.section-text h5 {
  font-size: 1.2em;
  color: grey;
}

.benefits .accordion {
  background: white; /* Replaced #5ab2ca with white */
  width: 100%;
  display: block;
  list-style-type: none;
  overflow: visible; /* Changed to prevent clipping */
  height: 200px;
  font-size: 0;
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  margin: 100px 0px 120px 0px;
  position: relative;
    z-index: 1;
    padding-left: 0;
}

.tabs {
  display: inline-block;
  background-color: var(--section-text); /* Replaced #6dc5dd with grey */
  border-right: black 1px solid; /* Replaced #5ab2ca with black */
  width: 80px;
  /* width: 100%; */
  height: 200px;
  overflow: hidden;
  position: relative;
  margin: 0;
  font-size: 16px;
  transition: width 0.4s 0.1s ease-in-out;
  width: 87px;
}

.tabs:hover {
  width: 450px;
  z-index: 1; /* Ensure hovered tab is above others */
}

.tabs .social-links a:before, 
.tabs .social-links a:after {
    transition: all 0.4s 0.1s ease-in-out;
    max-width: 90px;
    width: 100%;
    height: 200px;
    position: absolute;
    text-indent: 0;
    padding-top: 90px;
    padding-left: 25px;
    display: block;
    font: normal 30px 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ffffff;
}
.tabs.active .social-links a:before,
.tabs.active .social-links a:after{
    color: #000;
}

.tabs .social-links a:after {
  font-size: 48px;
  padding-left: 20px;
  padding-top: 80px;
  margin-left: 85px;
}

.tabs:hover .social-links a:before {
  margin-left: -100px;
}

.tabs:hover .social-links a:after {
  margin-left: -5px;
  color:#000
}

.tabs:hover, .tabs.active {
    width: 440px;
  z-index: 1; /* Ensure hovered/active tab is above others */
}

.tabs:hover .social-links a:before, .tabs.active .social-links a:before {
  margin-left: -100px;
}

.tabs:hover .social-links a:after, .tabs.active .social-links a:after {
  margin-left: -5px;
}

.tabs .paragraph {
    position: relative;
    width: 325px;
    margin-left: 85px;
    padding: 50px 0 0 5px;
    height: 200px;
    background: white;
}
.tabs .paragraph h1 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #c42220;
}

.tabs .paragraph p {
  font-size: 18px;
  line-height: 1.5em;
  padding-right: 30px;
  color: black;
}

.social-links {
  display: block;
}

.social-links a {
  display: block;
  text-indent: -9999px;
  font-size: 0;
  line-height: 0;
}

.stream-icon a:before,
.stream-icon a:after {
  content: '\f03a'; /* fa-stream */
}

.efficiency-icon a:before,
.efficiency-icon a:after {
  content: '\f3fd'; /* FontAwesome fa-tachometer-alt */
}

.user-icon a:before,
.user-icon a:after {
  content: '\f108'; /* FontAwesome fa-users */
}

.collaboration-icon a:before,
.collaboration-icon a:after {
  content: '\f0c0'; /* FontAwesome fa-users */
}

.reporting-icon a:before,
.reporting-icon a:after {
  content: '\f080'; /* FontAwesome fa-chart-bar */
}

.updates-icon a:before,
.updates-icon a:after {
  content: '\f0f3'; /* FontAwesome fa-bell */
}

.compliance-icon a:before,
.compliance-icon a:after {
  content: '\f058'; /* FontAwesome fa-check-circle */
}

.cost-icon a:before,
.cost-icon a:after {
  content: '\f155'; /* FontAwesome fa-dollar-sign */
}

.security-icon a:before,
.security-icon a:after {
  content: '\f3ed'; /* FontAwesome fa-shield-alt */
}

.workflow-icon a:before,
.workflow-icon a:after {
  content: '\f085'; /* FontAwesome fa-cogs */
}

.template-icon a:before,
.template-icon a:after {
  content: '\f15b'; /* FontAwesome fa-file-alt */
}

.template-icon a:after,.support-icon a:after,.workflow-icon a:after,.security-icon a:after,.cost-icon a:after ,.compliance-icon a:after,.updates-icon a:after,.reporting-icon a:after,.collaboration-icon a:after,.user-icon a:after,.efficiency-icon a:after,.stream-icon a:after{
    /* background-image: linear-gradient(red, white);0 */
    background-color: #fff;
}

.support-icon a:before,
.support-icon a:after {
  content: '\f1cd'; /* FontAwesome fa-headset */
}

/* accordion css */
.benefits{
    position: relative;
    /* background-color: grey; */
    background-color: rgb(246, 246, 249);
    padding: 50px 0px;
}
.side-img{
    position: absolute;
    top: 20%;
    right: 0;
    z-index: 1;
}
section.benefits::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(42% 1%, 100% -159%, 100% 100%, 0% 100%);
    background: #C31D17;
    background: linear-gradient(-21deg, rgba(195, 29, 23, 1) 0%, rgba(0, 0, 0, 1) 100%);
    max-width: 40%;
}


/* 2nd scetion css  start*/
.about_img_1 .img {
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
}

[data-animation^="img-blur"] {
    position: relative;
    overflow: hidden;
}
.about_img_1 p {
    color: #000;
    margin-top: 15px;
}
.about_img_1 h3{
    color: #c31d17;
    font-weight: 600;
}
.about_img_2 {
    height: 410px;
    margin-top: 150px;
    position: relative;
    z-index: 1;
}
[data-animation^="img-blur"] {
    position: relative;
    overflow: hidden;
}
.about_img_2 img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
}
/* .about_img_2::after {
    position: absolute;
    content: "";
    background: url(../images/about_shapes.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 275px;
    height: 300px;
    top: -115px;
    right: -145px;
    z-index: -1;
    animation: rotate_animi linear 4s infinite alternate;
    -webkit-animation: rotate_animi linear 4s infinite alternate;
} */
.section_heading h2 {
    font-size: 53px;
    font-weight: 600;
    /* line-height: 74px; */
    margin-top: 20px;
    color: #c31d17;
    
}
/* 2nd scetion css  end*/
#features-section{
    position: relative;
    z-index: 0;
    /* background: linear-gradient(to left, rgb(0, 0, 0, 0), rgb(195 29 23 / 22%)) !important; */
    background: linear-gradient(-21deg, rgba(195, 29, 23, 1) 0%, rgba(0, 0, 0, 1) 125%);
}



#features-section::after{
    position: absolute;
    content: "";
    width: 500px;
    height: 500px;
    top: 87px;
    left: -197px;
    z-index: -1;
    filter: brightness(3.5);
    background: url(../img/about_shapes.png) center center / cover no-repeat;
    background-position: center center;
    animation: rotate_animi 7s linear infinite alternate;
    -webkit-animation: rotate_animi 7s linear infinite alternate;
}

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

.home{
    width: 100%;
    max-width: 700px;
    /* padding-left: 479px; */
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
}
.home p{
    text-align: center;
}



