@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Outfit:wght@100..900&display=swap');/* ===== CUSTOM STYLES FOR DIME WEBSITE ===== */

/* CSS Variables */
:root {
    --primary-red: #dc3545;
    --primary-red-dark: #c82333;
    --dark-grey: #1a1a1a;
    --dark-grey-light: #2a2a2a;
    --medium-grey: #3a3a3a;
    --light-grey: #f8f9fa;
    --text-white: #ffffff;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
/*     text-align: justify; */
}

body {
   font-family: "Outfit", sans-serif !important;
	
    background-color: var(--dark-grey-light);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
/*      font-family: "Cairo", sans-serif; */
	font-family: "Outfit", sans-serif !important;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 30px;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
}
.headerFix{
    top: 0;
    background-color: #242424;
    padding: .5rem 0;
}

.navbar-brand {
    color: var(--text-white) !important;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.5px;
    position: relative;
}
.navbar-brand img{max-width: 226px;position: relative;top: -5px;width: 100%;height: auto;}

/* .navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red) 0%, transparent 100%);
} */

.navbar-nav {
    margin-left: 3rem;
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    transition: var(--transition);
    font-weight: 400;
    font-family: "Cairo", sans-serif;
}
.navbar-nav .dropdown-toggle{
        font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    transition: var(--transition);
    font-weight: 400;
}
.search-icon{
    width: 30px;
    height: 30px;
    background-color: var(--primary-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 44%;
    right: -4px;
    width: 0;
    height: 2px;
/*     background-color: var(--primary-red); */
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
/*     width: 100%; */
}

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

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Header Icons and Buttons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon {
    color: var(--primary-red);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.header-icon:hover {
    transform: scale(1.1);
}

.contact-btn {
    background: linear-gradient(135deg, var(--text-white) 0%, #f8f9fa 100%);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px;
}
.hero-section img{width: 100%;}
.hero-section-content{
width: 100%;
    position: absolute;
    left: 0;
    bottom: 25%;
}
.hero-section .hero-section-content{
/*     max-width: inherit; */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #454545;
    z-index: -1;
}

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

.hero-content h1 {
font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-white) 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	text-align: left;
    text-transform: uppercase;
}

.hero-section-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem !important;
/*     opacity: 0.9; */
/*     line-height: 1.6; */
/* 	max-width: 600px; */
/*     margin: 0px auto; */
}

.explore-btn {
    background: linear-gradient(135deg, #911622 0%, #8a101c 100%);
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.4s ease-in-out, color 0.3s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

/* Hover animation */
.explore-btn:hover {
    background: linear-gradient(135deg, #ff1a2a 0%, #cc0f1f 100%);
    color: #fff; /* bright yellow text */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
}


/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 2rem 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
    line-height: 1.2;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
}
.about-section .section-title{
    font-size: 4rem;
    font-family: "Cairo", sans-serif;
}

.section-sub-content{
    color: #C4C4C4;
    font-size: 24px;
    line-height: 39px;
    font-weight: 200;
    text-align: justify;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    /* background: linear-gradient(90deg, var(--primary-red) 0%, transparent 100%); */
    border-radius: 2px;
}
.readmore-btn-row{
    width: 100%;
    display: flex;
    gap: 35px;
    align-items: center;
}
.readmore-btn-row hr{
    width: 100%;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--dark-grey-light);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.about-image {
    border-radius: 15px;
/*     overflow: hidden; */
    box-shadow: var(--box-shadow);
    position: relative;
}

.about-image img {
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content {
    padding-left: 3rem;
}

.read-more-btn {
    background-color: transparent;
    color: var(--text-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 200;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: var(--transition);
    border:solid 1px #666;
    text-decoration: none;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* ===== METRICS CARDS ===== */
.metrics-section {
    position: relative;
}

.metrics-card {
    background: linear-gradient(145deg, var(--medium-grey) 0%, #404040 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.metrics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -9999px;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, var(--primary-red) 0%, transparent 100%); */
    transition: 0.2s ease;
}
.metricard-img{
    
        background-size: 100.5% 100%;
    background-position: -1px;
        text-align: left;
}

.metrics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);

}
.metrics-card:hover::before {
    left: 0;
}

.metrics-card h3 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.metrics-number {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.metrics-card p {
font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 0rem;
    font-family: "Cairo", sans-serif;
}
.metrics-card .exp{
    max-width: 100px;
}

.principles-section .col-lg-4 h4{
        font-size: 48px;
}

.mechanical-section .section-sub-content-1{
        font-size: 16px;
    line-height: 26px;
}
.mechanical-section .section-title{
    font-size: 2.5rem;
}

.vision-section p{
   font-size: 16px;
    line-height: 26px;
    color: #C4C4C4;
    font-weight: 200;
}
.mission-section p{
   font-size: 16px;
    line-height: 26px;
    color: #C4C4C4;
    font-weight: 200;
}
.evolution-section p{
    font-size: 16px;
    line-height: 26px;
    color: #C4C4C4;
    font-weight: 200;
}

.evolution-section .section-title {font-size: 2.4rem;}
.mission-section .section-title {font-size: 2.4rem;}
.vision-section .section-title {font-size: 2.4rem;}


.metric-btn {
    background:#242424;
    color: var(--text-white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.25rem;
    transition: var(--transition);
}

.metric-btn:hover {
    background-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

/* ===== SERVICES SECTION ===== */
.service-card {
    background: linear-gradient(145deg, var(--medium-grey) 0%, #404040 100%);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    min-height: 350px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background-size: cover;
}
.service-card  div.d-flex{
    position: relative;
        min-height: 300px;
}
.service-card .arrow-icon{
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background-color: #2A2A2A;
    color: #fff;
}
.service-card:before{
    width: 100%;
    height: 100%;
    background-color: #3b3b3be8;;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
}
.service-card:hover:before{
    background-color: #89000ef1;
}
.service-crd-ico img{width: 60px !important;}



.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	background-size: 100% 98%;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 300;
}

.service-card .arrow-icon {
    color: var(--primary-red);
    font-size: 1.2rem;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex   ;
    border-radius: 30px;
    align-items: center;
    background-color: #2A2A2A;
    color: #FFE !important;
    justify-content: center;
    transform: rotate(-45deg);
}

.service-card:hover .arrow-icon {
    transform: translateX(5px);
}

/* ===== PROJECTS SECTION ===== */
.project-card {
    background:  transparent;
    border-radius: 24px;
    padding: 15px;
    height: 100%;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}



.project-card:hover {
    transform: translateY(1px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.project-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.project-logo {
    width: 60px;
    height: 40px;
    object-fit: contain;
    margin-right: 1rem;
    border-radius: 5px;
}

.project-year {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--text-white);
    padding: 0.3rem 1rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.project-card h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-white);
    display: flex;
    justify-content: space-between;
}

.project-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===== SECTORS SECTION ===== */
.sector-card {
    background: linear-gradient(145deg, var(--medium-grey) 0%, #404040 100%);
    border-radius: 15px;
    padding: 15px;
    height: 90%;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.sector-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.sector-card:hover .sector-icon {
    transform: scale(1.1);
}

.sector-card h4 {
    font-size: 1rem;
    font-weight: 4700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.sector-card p {
    font-size: 0.8rem;
    color: #eee;
    margin-bottom: 0;
    font-weight: 200;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
    color: var(--text-dark);
    position: relative;
}
.certifications-box{
    background-image: url(../images/certificate-bg.jpg);
    background-size: 100% 100%;
        border-radius: 50px !important;
}


.certification-badge {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    margin: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
        border-radius: 10px !important;
}
.certification-badge img{
    width: 100%;
}
.certification-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.certification-badge img{
        max-width: 200px;
    margin: auto;
}

.certification-badge h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* ===== STORIES SECTION ===== */
.stories-section {
    color: var(--text-dark);
    position: relative;
    }

.story-card {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
        border-radius: 20px;
}
.story-image img{
    border-radius: 20px;
    margin-top: -2px;
}
.story-card .text-white{
    padding-right: 60px !important;
    position: relative;
    color: #C4C4C4 !important;
}

.contact-us-box-address{
    background-color: #363636;
    padding:50px 0;
    padding: 70px 0 !important;
	display:inline-block;
	width:100%;
	text-decoration:none !important;
}
.contact-us-box-address a{
	text-decoration:none !important;
}
.contact-us-box-address:hover{
    background-color: var(--primary-red);
}
.contact-us-box-address:hover img{
/*     filter: invert(); */
	filter: brightness(0) invert(1);
}
.contact-us-box-address:hover .rounded-pill{
    background-color: #fff !important;
    color: #1a1a1a;
}

.contactRightCtn h3.text-white{
       font-family: "Outfit", sans-serif !important;
    font-weight: 200;
}

.story-card .arrow-icon{
    position: absolute;
    right: 20px;
    top: 20px;
     transform: rotate(-45deg);
}
.contact-us-box-address .rounded-pill{
    transform: rotate(-45deg);
    background-color: var(--dark-grey-light);
}
.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, transparent 50%);
}
.blogListSec .story-image {
    height: auto;
}


.story-content {
    padding: 1.5rem;
}

.story-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story-arrow {
    color: var(--primary-red);
    font-size: 1.2rem;
    transition: var(--transition);
}

.story-card:hover .story-arrow {
    transform: translateX(5px);
}

/* ===== FOOTER ===== */
.footer-top {
    padding: 3rem 0;
    padding-top: 110px !important;
    border-radius: 65px 65px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    width: 100%;
    height: 70px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
   background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
}

.footer-main {
    background: var(--text-white);
    color: var(--text-dark);
    padding: 4rem 0;
}

.footer-bottom {
    background: var(--dark-grey);
    color: var(--text-white);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom .list-inline-item a{
    font-size: 13px;
}
.footer-bottom .col-lg-4.col-md-12.text-end .text-secondary{
    font-size: 0.7rem !important;
}
.stories-section .text-white.text-decoration-none.me-3{
    border-bottom: 1px #ccc solid;
}

.social-icon {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 0 0.75rem;
    transition: var(--transition);
    opacity: 0.8;
}

.social-icon:hover {
    color: var(--text-white);
    opacity: 1;
    transform: translateY(-3px);
}

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

.footer-nav li {
    margin-bottom: 0;
    color: #BAB7B7;
    font-size: 15px;
    font-weight: 500;
}
.footer-nav li a{
    margin-bottom: 0;
    color: #BAB7B7;
    font-size: 15px;
    font-weight: 500;
}
.fa.fa-twitter{
	font-family:sans-serif;
}
.fa.fa-twitter::before{
	content:"𝕏";
	font-size:1.2em;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* ===== UTILITY CLASSES ===== */
.nav-arrow {
    width: 50px;
    height: 50px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.client-logo {
    filter: brightness(0) invert(1);
    height: 60px;
    margin: 1rem;
    transition: var(--transition);
    opacity: 0.7;
    width: auto !important;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}


.custom-owl-dots {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 32px;
    margin-bottom: 8px;
    min-height: 24px;
}
.custom-owl-dots:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 90%;
    height: 2px;
    background: #888;
    transform: translateY(-50%);
    z-index: 0;
}
.custom-owl-dots .owl-dot {
    position: relative;
    z-index: 1;
    margin-left: 12px;
    margin-right: 0;
}
.custom-owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #222;
    border: 2px solid #fff;
    transition: background 0.3s, border 0.3s;
}
.custom-owl-dots .owl-dot.active span {
    background: #fff;
    border: 2px solid #fff;
}

#services-carousel .custom-owl-dots{
    max-width: 50%;
}

.home-project-right-arrow{
   color: var(--primary-red);
    font-size: 1.2rem;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 30px;
    align-items: center;
    background-color: #2A2A2A;
    color: #FFE !important;
    justify-content: center;
    transform: rotate(-45deg);
}


/* Sectors We Cater To Section Styles */
.sectors-section {
    padding-top: 48px;
    padding-bottom: 48px;
}
.sectors-section .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #fff;
}
.sector-card {
    background: #222;
    border: 1.5px solid #fff;
    border-radius: 18px;
    padding: 32px 32px 24px 32px;
    margin-bottom: 32px;
    min-height: 170px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.sector-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.sector-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    margin-right: 12px;
        margin-left: 30px;
}
.sector-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.sector-card p {
    font-size: 1rem;
    color: #eee;
    margin-bottom: 0;
}

.sector-section .section-title::after{display: none;}




@media (max-width: 991px) {
    .sector-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 16px;
    }
    .sector-icon {
        margin-bottom: 8px;
        margin-right: 0;
    }
}
/* Project Carousel Card Styles */
.project-card {
    background: transparent;
/*     border-radius: 0; */
    padding: 0 0 24px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.project-header {
    width: 100%;
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.project-logo {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 24px;
    background: #fff;
}
.project-year-badge {
    position: absolute;
    left: 24px;
    bottom: 25px;
    background: #fff;
    color: #666;
    font-weight: 700;
    font-size: 12px;
    border-radius: 8px;
    padding: 4px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    letter-spacing: 1px;
}
.project-year-badge strong{
    width: 100%;
    display: inline-block;
     color: #dc3545;
    font-weight: 700;
    font-size: 1rem;
}
.project-details {
    width: 100%;
    padding: 0 20px;
    margin-top: 16px;
    text-align: left;
}
.project-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.project-meta {
    font-size:0.75rem;
    color: #c4c4c4;
    margin-bottom: 0;
}
.project-meta strong{color: #ccc;font-size: 14px;}
.project-meta div {
    margin-bottom: 4px;
}
/* Custom Owl Carousel Dots with Line for Projects Section */
.custom-owl-dots {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 32px;
    margin-bottom: 8px;
    min-height: 24px;
}
.custom-owl-dots:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 90%;
    height: 2px;
    background: #888;
    transform: translateY(-50%);
    z-index: 0;
}
.custom-owl-dots .owl-dot {
    position: relative;
    z-index: 1;
    margin-left: 12px;
    margin-right: 0;
}
.custom-owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #222;
    border: 2px solid #fff;
    transition: background 0.3s, border 0.3s;
}
.custom-owl-dots .owl-dot.active span {
    background: #fff;
    border: 2px solid #fff;
}





/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1400px) {
    .navbar-nav .nav-link{font-size: 13px;}
}
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    #services-carousel .custom-owl-dots{
        max-width: 100%;
    }
    #services-carousel  .custom-owl-dots:before{
            width: 40%;
    }
    .navbar-nav {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    .navbar{
        top: 0;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .footer-bottom .col-md-12.text-end{
        text-align: center !important;
    }
    .justify-content-end{
        justify-content:flex-start !important
    }
    .hero-section {
        margin-top: 70px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;

    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 2rem 0;
    }
    
    .metrics-number {
        font-size: 3rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .sector-icon {
        font-size: 2.5rem;
    }
    .navbar-collapse{
        background-color: #242424;
        padding-left: 20px;
    }
    .hero-section-inner{
            padding: 10px;
    margin-top: 80px;
    }
    .hero-slider .owl-item img {
    width: 100% !important;
    height: auto !important;
    display: block;
}
}

@media (max-width: 576px) {
    .hero-section{
        display: inline-block;
    }
    .hero-section-content{
        position: static;
        text-align: center;
    }
    .hero-section-content p.lead{
        text-align: center;
    }
    .hero-section-content .text-end{
        text-align: center !important;
    }
    .explore-btn{
            float: none;
    display: inline-block;
    }
    .hero-content h1 {
        font-size: 2rem;
        margin-top: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .explore-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

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

@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);
    }
}

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

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

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

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-dark);
}

/* ===== SELECTION STYLING ===== */
::selection {
    background: var(--primary-red);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--primary-red);
    color: var(--text-white);
}

/* ===== ABOUT US PAGE SPECIFIC STYLES ===== */

/* About Overlay */
.about-overlay {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 1rem 2rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Principles Section */


.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.principle-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}
.principle-icon img{
    max-width: 80%;
}

.principle-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.principle-content p {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 0;
    line-height: 1.5;
}

.principles-image img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-page-abt.about-section .section-title {
    font-size: 3.4rem;
}
.about-page-abt.about-section .section-subtitle{
        max-width: 530px;
            margin-bottom: 70px;
}
.about-page-abt.about-section p{
    font-weight: 100;
    font-size: 15px;
}

.metrics-section h2{
    font-weight: 600;
    text-align: left !important;
	font-size:1.9rem;
}


/* Video Section */


.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-placeholder {
    background: linear-gradient(135deg, #2a2a2a 0%, #404040 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    border: solid 2px #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Mechanical Section */


.mechanical-image img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Problems Section */


/* Vision Section */
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--dark-grey-light) 100%);
}

.vision-content {
    padding-right: 2rem;
}

/* Mission Section */


.mission-content {
    padding-left: 2rem;
}

/* Organization Section */


.organization-chart img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Journey Section */
}

.journey-content {
    padding-right: 2rem;
}

.journey-image img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Evolution Section */


.evolution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.evolution-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.evolution-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-white);
}

.evolution-image img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Clients Section */
.clients-section {
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--dark-grey-light) 100%);
}

.hero-section .owl-carousel .owl-item{
        border-radius: 30px;
    overflow: hidden;
}

.hero-section-inner{
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 20px;
    background-color: #454545;
}
.hero-section-inner img{width: 100%;}
.hero-section-inner .hero-content h1{
    width: 100%;
    font-size: 40px;
    margin-bottom: 10px;
	text-align:center;
}
.hero-section-inner .hero-content{
    margin: auto;
}
.section-sub-content-1{
    color: #C4C4C4;
    font-size: 22px;
    line-height: 30px;
    font-weight: 200;
}
.dark-bg-light{
    background: var(--dark-grey-light) !important;
}
.mission-section img{border-radius: 20px !important;}
.vision-section img{border-radius: 20px !important;}

.project_deliverd_top_filter{
    width: 100%;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.project_deliverd_top_filter a{
    color: #fff;
    text-decoration: none;
        font-size: 15px;
}
.related_head.section-title {
    font-size: 2.5rem;

}
.careersSecPage p{
        font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 0;
    line-height: 1.5;
}

.project_deliverd_top_filter a.active{
    border-bottom: 2px var(--primary-red) solid;
}

.project_highlight_txt strong{
    color: #fff;
     width: 100%;
    display: inline-block;
}
.project-card-box .fa-arrow-right{
        transform: rotate(-45deg);
}
.crtificate-box{
    text-align: left;
}
.openings-list .opening-row{
    background-color: #414141;
}
.openings-list .opening-row:hover{
    background-color: var(--primary-red);
}
.owl-carousel.owl-drag .owl-item img{transition: 0.2s ease;}
.owl-carousel.owl-drag .owl-item:hover img{transform: scale(1.02);}


/* Responsive adjustments for About Us page */
@media (max-width: 992px) {
    .hero-section-inner .hero-content h1{
            font-size: 20px;
    }
    .hero-section{
            padding: 0px;
    }
    .vision-content,
    .mission-content,
    .journey-content {
        padding-left: 0;
        padding-right: 0;
        margin-top: 2rem;
    }
    
    .principle-item {
        flex-direction: column;
        text-align: center;
    }
    
    .principle-icon {
        margin: auto;
        margin-bottom: 1rem;
    }
    
    .evolution-item {
        flex-direction: column;
        text-align: center;
    }
    
    .evolution-icon {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .about-overlay {
        position: static;
        writing-mode: horizontal-tb;
        text-orientation: initial;
        margin-top: 1rem;
        text-align: center;
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Evolution Accordion Custom Styles */
.evolution-accordion-custom .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #444;
}
.evolution-accordion-custom .accordion-button {
    background: transparent;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: none;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.evolution-accordion-custom .accordion-button:not(.collapsed) {
    color: #fff;
}
.evolution-accordion-custom .evo-arrow-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #232323;
    border: 2px solid #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.evolution-accordion-custom .evo-arrow-icon::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 1;
}
.evolution-accordion-custom .evo-arrow-icon i {
    position: relative;
    z-index: 2;
    color: var(--primary-red);
    font-size: 1rem;
    transition: transform 0.3s;
}
.evolution-accordion-custom .accordion-button.collapsed .evo-arrow-icon i {
    transform: rotate(0deg);
}
.evolution-accordion-custom .accordion-button:not(.collapsed) .evo-arrow-icon i {
    transform: rotate(180deg);
}
.evolution-accordion-custom .accordion-body {
    color: #ccc;
    background: transparent;
    font-size: 1rem;
}
.evolution-section .accordion-button:not(.collapsed)::after{
    display: none;
}

@media (max-width: 991px) {
    .evolution-accordion-custom .accordion-button {
        font-size: 1rem;
    }
    .evolution-accordion-custom .evo-arrow-icon {
        width: 22px;
        height: 22px;
    }
}

/* ===== SERVICES DETAILS PAGE STYLES ===== */

/* Services Overview Section */
.services-overview {
    background-color: var(--dark-grey-light);
    color: var(--text-white);
}

.services-overview h2 {
    color: var(--text-white);
    font-weight: 700;
}

.services-overview .key-points .point-item {
    color: var(--text-white);
}

.services-overview .key-points .point-icon i {
    font-size: 1.2rem;
}

/* Services Gallery Section */
.services-gallery {
    background-color: var(--dark-grey);
    color: var(--text-white);
}

.services-gallery h2 {
    color: var(--text-white);
    font-weight: 700;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 53, 69, 0.9), rgba(220, 53, 69, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.gallery-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Key Features Section */
.key-features {
    background-color: var(--dark-grey-light);
    color: var(--text-white);
}

.key-features h2 {
    color: var(--text-white);
    font-weight: 700;
}

.feature-card {
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--medium-grey);
    background-color: var(--dark-grey);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-red);
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-card h5 {
    color: var(--text-white);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Our Process Section */
.our-process {
    background-color: var(--dark-grey);
    color: var(--text-white);
}

.our-process h2 {
    color: var(--text-white);
    font-weight: 700;
}

.process-step {
    padding: 1.5rem 1rem;
}

.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h5 {
    color: var(--text-white);
    font-weight: 600;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services Details Section - Matching Attached Image */
.services-details-section {
    background-color: var(--dark-grey);
    color: var(--text-white);
}

.services-details-section h2 {
    color: var(--text-white);
    font-weight: 700;
}

.services-details-section p {
    color: var(--text-muted);
}

.process-item {
    padding: 1rem 0;
}


.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-content h5 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.services-details-images img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.services-details-images img:hover {
    transform: scale(1.02);
}

/* Additional Services Section */
.additional-services {
    background-color: var(--dark-grey-light);
    color: var(--text-white);
}

.additional-services h2 {
    color: var(--text-white);
    font-weight: 700;
}

.service-item {
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-item:hover {
    background-color: var(--dark-grey);
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-item h6 {
    color: var(--text-white);
    font-weight: 600;
}

.service-item p {
    font-size: 0.9rem;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
}

.cta-section h2 {
    font-weight: 700;
}

.cta-section .btn-light {
    background-color: white;
    color: var(--primary-red);
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-section .btn-light:hover {
    background-color: var(--light-grey);
    transform: translateY(-2px);
}

.certifications-section .subhead{
    margin: 20px 0;
    font-size: 23px !important;
}


@media (min-width: 1400px) {
    .container {
        max-width: 1400px !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section .section-title {
        font-size: 2rem;
    }
    .section-sub-content-1{
        font-size: 19px;
    }
    .section-subtitle {
    font-size: 1.2rem;
}
    .section-title{
        margin-bottom: 20px !important;
    }
    .services-overview .row {
        text-align: center;
    }
    
    .services-overview .services-overview-image {
        margin-top: 2rem;
    }
    
    .additional-services .row {
        text-align: center;
    }
    
    .additional-services .additional-services-image {
        margin-top: 2rem;
    }
    
    .cta-section .row {
        text-align: center;
    }
    
    .cta-section .text-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    .section-sub-content{
        font-size: 17px;
    line-height: 25px;
    }
    .certifications-section .section-title{
                font-size: 2rem !important;
    }
}



.certifications-section .section-title{
    max-width: 400px;
    font-size: 4rem;
}
.story-card a{
    text-decoration: none;
}
.footer-menu li a{
    text-transform: uppercase;
}
.service-card{
    text-decoration: none;
}
.project_deliverd_top_filter a{
    text-transform: uppercase;
}
.project-card{
    text-decoration: none;
}
.contact-map p{
    position: relative;
    height: 500px;
}
.contact-map p iframe{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.why-choose-us p{
    color: rgba(255, 255, 255, .5) !important;
}
.project-card-box{
    text-decoration: none !important;
}
.no-text-deco{
    text-decoration: none !important;
}
.fw-200{
    font-weight: 200 !important;
}
.homepage-service .service-card:hover {
    transform: translateY(0px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
/* 	transform: scale(1.2);  */
}

.openings-list span{
	max-width:85%;
}
.opening-row span p{
	font-weight:200;
	margin-top:10px;
}
.ma-width-btn{
	width:150px;
}

@media (max-width:600px){
    .opening-row{
                flex-direction: column;
        justify-content: start !important;
        align-items: start !important;
        gap: 10px;
    }
}

.footer-menu li{
	margin-right: .8rem !important;
}
.mechanical-content h4{
	font-family: "Outfit", sans-serif !important;
    font-weight: 600 !important;
}
.services-other p{
	    color: rgba(255, 255, 255, .5) !important;
}
.service-crd-cnt h4{
	font-family: "Outfit", sans-serif !important;
    font-weight: 500 !important;
	
}
.dropdown-item.active, .dropdown-item:active{
	background-color: var(--primary-red);
}
.hero-section video{
	width:100%;
	border-radius:25px;
}





/* Dropdown hover effect on desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    .navbar-nav .dropdown > .dropdown-toggle:active {
        pointer-events: none;
    }
}

/* Dropdown styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: background-color 0.3s;
}

.dropdown-item:hover {
    background-color: #dc3545;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .dropdown-menu {
        border: none;
        padding-left: 0px;
        box-shadow: none;
    }
    
    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
		right: 10px !important;
    }
}