:root {
    --primary-blue: #2E5C8A;
    /* --primary-blue: #f27735; */
    --primary-orange: #f27735;
    --primary-green: #4CAF50;
    --light-green: #8BC34A;
    --dark-bg: #1a1a2e;
    --light-bg: #f5f5f5;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* scroll to top button start */
#scrollTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff873e 0%, #009128 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(255, 135, 62, 0.4);
    z-index: 1000;
    overflow: hidden;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#scrollTopBtn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 135, 62, 0.6);
}

#scrollTopBtn:active {
    transform: translateY(-2px) scale(1.05);
}

#scrollTopBtn::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(-45deg);
    margin-top: 5px;
    animation: arrowBounce 2s infinite;
}

#scrollTopBtn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease-out;
}

#scrollTopBtn:hover::after {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
}

@keyframes glowRing {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 135, 62, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 135, 62, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 135, 62, 0);
    }
}

#scrollTopBtn.show {
    animation: glowRing 2s infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: rotate(-45deg) translateY(0);
    }

    50% {
        transform: rotate(-45deg) translateY(-5px);
    }
}

.progress-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 66px;
    height: 66px;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 3;
    stroke-dasharray: 207;
    stroke-dashoffset: 207;
    transition: stroke-dashoffset 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

@media (max-width: 768px) {
    #scrollTopBtn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .progress-ring {
        width: 56px;
        height: 56px;
    }

    #scrollTopBtn::before {
        width: 16px;
        height: 16px;
    }
}

/* scroll to top button end */
/* Top Contact Bar - Header with logo and contact info */
.top-contact-bar {
    background: #ffffff;
    /* padding: 10px 0; */
}

.top-bar-content {
    width: 94%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 3px;
}

.top-logo img {
    margin-left: 14px;
    width: 60px;
    height: 60px;
}

.top-logo span {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-blue);
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

/* .contact-item i {
    color: var(--primary-blue);
    font-size: 20px;
} */

.contact-item i {
    height: 38px;
    background: #195d87;
    color: #ffffff;
    font-size: 18px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
}

.contact-item strong {
    color: #333;
}

.contact-item span {
    color: #666;
}

/* Navigation - Main menu with dropdowns */
.navbar {
    background: var(--primary-blue) !important;
    /* padding: 15px 0; */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: none;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s;
}

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

/* Dropdown Menu Styling */
.navbar-nav .dropdown-menu {
    background: var(--primary-blue);
    border: none;
    border-radius: 0;
    margin-top: 0;
    min-width: 250px;
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: white;
    padding: 10px 20px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background: var(--light-green);
    color: white;
    padding-left: 25px;
    border-left-color: white;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* .social-icons a {
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}  */

.social-icons a {
    padding: 6px;
    background-color: #fff;
    color: #195d87;
    font-size: 18px;
    transition: all 0.3s;
    height: 40px;
    border-radius: 82px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateY(-3px);
    background-color: #ff7e39;
}

/* Bootstrap Carousel Hero Section  */
w #heroCarousel {
    position: relative;
}

.carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.45) 0%, rgba(42, 82, 152, 0.45) 50%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    bottom: auto;
    right: auto;
}

.carousel-caption h1 {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
    color: white;
}

.carousel-caption .highlight {
    /* color: var(--light-green); */
    color: var(--primary-orange);
}

.carousel-caption p {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 300;
    color: white;
}

.carousel-item:nth-child(1) {
    background-image: url('../images/slider-img.png');
}

.carousel-item:nth-child(2) {
    background-image: url('../images/ippl.jpg');
}

.carousel-item:nth-child(3) {
    background-image: url('../images/consulting-firms-australia-1170x550-1.jpg');
}


/* Custom carousel controls styling */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

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

/* Carousel indicators styling */
.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    display: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s;
}

.carousel-indicators button.active {
    width: 30px;
    border-radius: 10px;
    background: white;
}

/* Simple Carousel Slide Animation */
.carousel-item {
    opacity: 0;
}

.carousel-item.active {
    opacity: 1;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        transform: scale(0.95) rotateY(5deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
    }
}

/* Text Animation */
.carousel-caption h1 {
    animation: slideDownCenter 0.8s ease-out 0.2s both;
}

.carousel-caption p {
    animation: slideDownCenter 0.8s ease-out 0.4s both;
}

.carousel-caption .btn-primary-custom {
    animation: slideDownCenter 0.8s ease-out 0.6s both;
}

@keyframes slideDownCenter {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary-custom {
    /* background: var(--primary-green); */
    background: var(--primary-orange);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary-custom:hover {
    background: var(--light-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    color: white;
}

/* Section Styling - Common section title styling */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    margin: 0 auto;
}

/* What We Do Section*/
.what-we-do {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #c6cfc8 0%, #818181 100%); */
    background: linear-gradient(135deg, #ededed 0%, #35694b4f 100%);
    color: rgb(0, 0, 0);
    position: relative;
}


.what-we-do .container {
    position: relative;
    z-index: 1;
}

.service-card {
    border-radius: 10px;
    transition: all 0.4s;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: white;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    transition: all 0.3s;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Welcome Section */
.welcome-section {
    background-image: url(../images/product-bg.jpg);
    padding: 80px 0;
    /* background: var(--light-bg); */
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.welcome-content h3 {
    font-size: 16px;
    color: var(--primary-green);
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 30px;
}

.welcome-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.welcome-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Products/Services Dark Section - Healthcare products showcase */
.products-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #1e5128 0%, #2d6a4f 100%); */
    background: linear-gradient(45deg, rgb(11 95 2 / 90%), rgb(0 19 71 / 90%));
    color: white;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&h=800&fit=crop') center/cover;
    opacity: 0.1;
}

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

.products-section h2,
.products-section h3 {
    color: white;
}

.products-section p {
    color: rgba(255, 255, 255, 0.9);
}

.product-icon-card {
    text-align: center;
    padding: 30px;
    transition: all 0.3s;
}

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

.product-icon-card i {
    font-size: 60px;
    color: var(--light-green);
    margin-bottom: 20px;
    transition: all 0.3s;
}

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

.product-icon-card h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

/* Team/Career Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-content h3 {
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 10px;
}

.team-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.team-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.team-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Chairman Section  */
.chairman-section {
    background: #2e5c8a36;
    padding: 80px 0;
}

.chairman-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

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

.chairman-card .row {
    align-items: stretch;
}

.chairman-card img {
    object-fit: cover;
    min-height: 350px;
}

.chairman-card .content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chairman-card h4 {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.chairman-card .position {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.chairman-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Footer Styles */
.footer {
    background: #f8f9fa;
    color: #333;
    padding: 0;
    background-image: url(../images/pattern.jpg);
}

.footer-top {
    /* padding: 60px 0 40px; */
    padding: 36px 0 20px;
    border-top: 1px solid #d7d7d7;
}

/* Align all columns to top */
.footer-top .row {
    align-items: flex-start;
}

.footer-top>.container>.row>div {
    display: flex;
    flex-direction: column;
}

.quick-heading {
    font-size: 18px;
    font-weight: bold;
    color: #2E5C8A;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    margin-top: 0;
}

/* Map Info */
.map-info {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-info iframe {
    width: 100%;
    height: 150px;
    border: none;
}

/* Logo Section */
.pst_logo {
    margin-bottom: 20px;
}

.pst_logo img {
    max-width: 150px;
    height: auto;
}

/* Address List */
.address-list {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    font-weight: normal;
}

.address-list span:first-child {
    margin-right: 10px;
    color: #2E5C8A;
    min-width: 20px;
}

.address-list span:first-child i {
    font-size: 16px;
}

.address-list a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.address-list a:hover {
    color: #f27735;
}

/* Footer Links Wrapper - Side by Side Lists */
.footer-links-wrapper {
    display: flex;
    gap: 40px;
}

/* Footer List */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

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

.footer-list li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-list li a:hover {
    color: #f27735;
    padding-left: 5px;
}

/* Social Media Listing */
.get-social-listing {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.get-social-listing li a {
    width: 40px;
    height: 40px;
    /* background: #2E5C8A; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: white; */
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
    background: #fff;
    color: #0076b7;
}

.get-social-listing li a:hover {
    background: #f27735;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(242, 119, 53, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    background: #1a1a1a;
    padding: 4px 0;
    margin-top: 0;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
}

/* Hidden class for mobile */
.hidden-xs {
    display: block;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .quick-heading {
        margin-top: 30px;
        font-size: 16px;
    }

    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-links-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .pst_logo img {
        max-width: 120px;
    }

    .map-info iframe {
        height: 200px;
    }

    .get-social-listing {
        justify-content: flex-start;
    }

    .quick-heading {
        font-size: 16px;
        margin-top: 25px;
    }

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

    .hidden-xs {
        display: none;
    }

    .footer-links-wrapper {
        flex-direction: column;
        gap: 10px;
    }
}

/* Responsive Design - Mobile and tablet optimizations */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    .social-icons {
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Carousel responsive */
    .carousel-item {
        height: 500px;
    }

    .carousel-caption h1 {
        font-size: 32px;
    }

    .carousel-caption p {
        font-size: 18px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    /* Top bar responsive */
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .top-logo {
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .contact-item {
        justify-content: center;
    }

    /* Section titles */
    .section-title h2 {
        font-size: 28px;
    }

    .welcome-content h2,
    .team-content h2 {
        font-size: 28px;
    }

    /* Service cards */
    .service-card {
        margin-bottom: 20px;
    }

    /* Chairman card responsive */
    .chairman-card img {
        width: 100%;
    }

    .chairman-card .content {
        padding: 30px 20px;
    }

    /* Spacing adjustments */
    .what-we-do,
    .welcome-section,
    .products-section,
    .team-section,
    .chairman-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 450px;
    }

    .carousel-caption h1 {
        font-size: 26px;
    }

    .carousel-caption p {
        font-size: 16px;
    }

    .btn-primary-custom {
        padding: 12px 25px;
        font-size: 14px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .product-icon-card i {
        font-size: 45px;
    }
}

/* Page Content Section */
.page-content-section {
    padding: 80px 0;
    /* background: #f8f9fa; */
    background: #fff7f2;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #f27735;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: bold;
    color: #2E5C8A;
    margin-bottom: 15px;
}

.page-underline {
    width: 80px;
    height: 4px;
    background: #f27735;
    margin: 0 auto;
    border-radius: 2px;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.content-box p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.content-box p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-content-section {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .content-box {
        padding: 30px 20px;
    }

    .content-box p {
        font-size: 15px;
    }
}

/* Page Content Section */
.page-content-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #f27735;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: bold;
    color: #2E5C8A;
    margin-bottom: 15px;
}

.page-underline {
    width: 80px;
    height: 4px;
    background: #f27735;
    margin: 0 auto;
    border-radius: 2px;
}

/* Philosophy Cards */
.philosophy-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.philosophy-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.philosophy-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.philosophy-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.philosophy-icon.vision {
    background: rgba(46, 92, 138, 0.1);
}

.philosophy-icon.mission {
    background: rgba(242, 119, 53, 0.1);
}

.philosophy-icon.values {
    background: rgba(76, 175, 80, 0.1);
}

.philosophy-icon.vision i {
    color: #2E5C8A;
    font-size: 24px;
}

.philosophy-icon.mission i {
    color: #f27735;
    font-size: 24px;
}

.philosophy-icon.values i {
    color: #4CAF50;
    font-size: 24px;
}

.philosophy-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #2E5C8A;
    margin: 0;
}

.philosophy-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.philosophy-card p:last-child {
    margin-bottom: 0;
}

/* Philosophy List */
.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.philosophy-list li {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.philosophy-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #f27735;
    font-size: 20px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .page-content-section {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .philosophy-card {
        padding: 25px 20px;
    }

    .philosophy-header {
        gap: 15px;
    }

    .philosophy-icon {
        width: 45px;
        height: 45px;
    }

    .philosophy-icon i {
        font-size: 20px;
    }

    .philosophy-card h3 {
        font-size: 20px;
    }

    .philosophy-card p,
    .philosophy-list li {
        font-size: 15px;
    }
}

/* ------------plicy ----------------- */
/* Page Content Section */
.page-content-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #f27735;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: bold;
    color: #2E5C8A;
    margin-bottom: 15px;
}

.page-underline {
    width: 80px;
    height: 4px;
    background: #f27735;
    margin: 0 auto;
    border-radius: 2px;
}

/* Policy Intro */
.policy-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.policy-intro p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

/* Policy Cards */
.policy-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.policy-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.policy-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy-icon.env {
    background: rgba(76, 175, 80, 0.1);
}

.policy-icon.safety {
    background: rgba(46, 92, 138, 0.1);
}

.policy-icon.quality {
    background: rgba(242, 119, 53, 0.1);
}

.policy-icon.tpm {
    background: rgba(76, 175, 80, 0.1);
}

.policy-icon.csr {
    background: rgba(46, 92, 138, 0.1);
}

.policy-icon.energy {
    background: rgba(242, 119, 53, 0.1);
}

.policy-icon.env i {
    color: #4CAF50;
    font-size: 24px;
}

.policy-icon.safety i {
    color: #2E5C8A;
    font-size: 24px;
}

.policy-icon.quality i {
    color: #f27735;
    font-size: 24px;
}

.policy-icon.tpm i {
    color: #4CAF50;
    font-size: 24px;
}

.policy-icon.csr i {
    color: #2E5C8A;
    font-size: 24px;
}

.policy-icon.energy i {
    color: #f27735;
    font-size: 24px;
}

.policy-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #2E5C8A;
    margin: 0;
}

.policy-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2E5C8A;
    margin-top: 20px;
    margin-bottom: 15px;
}

.policy-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-card p:last-child {
    margin-bottom: 0;
}

/* Policy List */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #f27735;
    font-size: 20px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .page-content-section {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .policy-intro {
        padding: 25px 20px;
    }

    .policy-intro p {
        font-size: 15px;
    }

    .policy-card {
        padding: 25px 20px;
    }

    .policy-header {
        gap: 15px;
    }

    .policy-icon {
        width: 45px;
        height: 45px;
    }

    .policy-icon i {
        font-size: 20px;
    }

    .policy-card h3 {
        font-size: 20px;
    }

    .policy-card h4 {
        font-size: 17px;
    }

    .policy-card p,
    .policy-list li {
        font-size: 15px;
    }
}

/* ------------plicy end----------------- */

/* Page Content Section */
.page-content-section {
    padding: 80px 0;
    /* background: #f8f9fa; */
    background: #e7ebe8;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #f27735;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: bold;
    color: #2E5C8A;
    margin-bottom: 15px;
}

.page-underline {
    width: 80px;
    height: 4px;
    background: #f27735;
    margin: 0 auto;
    border-radius: 2px;
    margin-bottom: 15px;
}

.page-description {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Contact Cards */
.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.contact-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(46, 92, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.contact-card:hover .contact-icon {
    background: #2E5C8A;
}

.contact-icon i {
    font-size: 28px;
    color: #2E5C8A;
    transition: all 0.3s;
}

.contact-card:hover .contact-icon i {
    color: white;
}

.contact-card h4 {
    font-size: 20px;
    font-weight: bold;
    color: #2E5C8A;
    margin-bottom: 15px;
}

.contact-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.contact-card a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-card a:hover {
    color: #f27735;
}

/* Company Name */
.company-name {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.company-name h2 {
    font-size: 36px;
    font-weight: bold;
    color: #2E5C8A;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-content-section {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .contact-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 24px;
    }

    .contact-card h4 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 15px;
    }

    .company-name {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .company-name h2 {
        font-size: 28px;
    }
}

/* Career Page Section */
.career-page-section {
    padding: 80px 0;
    /* background: #f8f9fa; */
    background: #e7ebe8;
    min-height: 60vh;
}

.career-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.career-page-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #f27735;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.career-page-header h1 {
    font-size: 42px;
    font-weight: bold;
    color: #2E5C8A;
    margin-bottom: 15px;
}

.career-page-underline {
    width: 80px;
    height: 4px;
    background: #f27735;
    margin: 0 auto;
    border-radius: 2px;
}

/* Career Image */
.career-page-image {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.career-page-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Career Content Box */
.career-content-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.career-content-box p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.career-content-box p:last-child {
    margin-bottom: 0;
}

.career-content-box a {
    color: #f27735;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.career-content-box a:hover {
    color: #2E5C8A;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .career-page-section {
        padding: 60px 0;
    }

    .career-page-header h1 {
        font-size: 32px;
    }

    .career-page-image {
        margin-bottom: 30px;
    }

    .career-content-box {
        padding: 30px 20px;
    }

    .career-content-box p {
        font-size: 15px;
    }
}

/* Key Management Section */
.key-management-section {
    padding: 80px 0;
    /* background: #f8f9fa; */
    background: #e7ebe8;
    min-height: 60vh;
}

.key-management-header {
    text-align: center;
    margin-bottom: 60px;
}

.key-management-header h1 {
    font-size: 42px;
    font-weight: bold;
    color: #2E5C8A;
    margin-bottom: 15px;
}

/* Management Card */
.management-card {
    max-width: 900px;
    margin: 0 auto 50px;
    background: white;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.management-card:last-child {
    margin-bottom: 0;
}

.management-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.management-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #2E5C8A;
    margin-bottom: 20px;
}

.management-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .key-management-section {
        padding: 60px 0;
    }

    .key-management-header h1 {
        font-size: 32px;
    }

    .management-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .management-image {
        width: 120px;
        height: 120px;
    }

    .management-card h3 {
        font-size: 20px;
    }

    .management-card p {
        font-size: 15px;
    }
}

/* Agro Page Section */
.agro-page-section {
    padding: 80px 0;
    /* background: #f8f9fa; */
    background: #e7ebe8;
}

/* Intro Box */
.agro-intro-box {
    max-width: 900px;
    margin: 0 auto 50px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.agro-intro-box h2 {
    font-size: 36px;
    font-weight: bold;
    color: #2E5C8A;
    margin-bottom: 20px;
}

.agro-intro-box p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

/* Agro Cards */
.agro-card {
    max-width: 900px;
    margin: 0 auto 40px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.agro-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.agro-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.agro-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.agro-icon.fish {
    background: rgba(46, 92, 138, 0.1);
}

.agro-icon.bee {
    background: rgba(242, 119, 53, 0.1);
}

.agro-icon.poultry {
    background: rgba(76, 175, 80, 0.1);
}

.agro-icon.power {
    background: rgba(46, 92, 138, 0.1);
}

.agro-icon.fish i {
    color: #2E5C8A;
    font-size: 24px;
}

.agro-icon.bee i {
    color: #f27735;
    font-size: 24px;
}

.agro-icon.poultry i {
    color: #4CAF50;
    font-size: 24px;
}

.agro-icon.power i {
    color: #2E5C8A;
    font-size: 24px;
}

.agro-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #2E5C8A;
    margin: 0;
}

.agro-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

/* Projects Section */
.agro-projects {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.agro-projects h3 {
    font-size: 24px;
    font-weight: bold;
    color: #2E5C8A;
    margin-bottom: 20px;
}

.agro-projects ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agro-projects ul li {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.agro-projects ul li:last-child {
    margin-bottom: 0;
}

.agro-projects ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 18px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .agro-page-section {
        padding: 60px 0;
    }

    .agro-intro-box,
    .agro-card,
    .agro-projects {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .agro-intro-box h2,
    .agro-card h3,
    .agro-projects h3 {
        font-size: 22px;
    }

    .agro-intro-box p,
    .agro-card p,
    .agro-projects ul li {
        font-size: 15px;
    }
}

/* IPPL Page Section */
.ippl-page-section {
    padding: 80px 0;
    /* background: #f8f9fa; */
    background: #e7ebe8;
}

/* Intro Box */
.ippl-intro-box {
    max-width: 900px;
    margin: 0 auto 50px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.ippl-intro-box h2 {
    font-size: 36px;
    font-weight: bold;
    color: #2E5C8A;
    margin-bottom: 20px;
}

.ippl-intro-box p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
}

.ippl-intro-box p:last-child {
    margin-bottom: 0;
}

/* Milestones Section */
.ippl-milestones {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.ippl-milestones h3 {
    font-size: 24px;
    font-weight: bold;
    color: #2E5C8A;
    margin-bottom: 20px;
}

.ippl-milestones ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ippl-milestones ul li {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.ippl-milestones ul li:last-child {
    margin-bottom: 0;
}

.ippl-milestones ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #f27735;
    font-size: 20px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .ippl-page-section {
        padding: 60px 0;
    }

    .ippl-intro-box,
    .ippl-milestones {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .ippl-intro-box h2,
    .ippl-milestones h3 {
        font-size: 22px;
    }

    .ippl-intro-box p,
    .ippl-milestones ul li {
        font-size: 15px;
    }
}

/* canvas header start */
/* Mobile Header Bar - Only visible on mobile */
.mobile-header-bar {
    display: none;
    background: #2E5C8A;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1040;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    color: #f27735;
}

.mobile-logo img {
    height: 45px;
    width: auto;
}

.mobile-call-btn {
    background: #f27735;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-call-btn:hover {
    background: #4CAF50;
    transform: scale(1.05);
    color: white;
}

/* Off-canvas Menu Styling */


.offcanvas-header {
    background: white;
    padding: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.offcanvas-logo {
    flex-grow: 1;
    text-align: center;
}

.offcanvas-logo img {
    height: 80px;
    width: auto;
}

.offcanvas .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    /* background: #f0f0f0; */
    opacity: 1;
    border-radius: 50%;
    filter: none;
    width: 32px;
    height: 32px;
}

.offcanvas .btn-close:hover {
    background: #2E5C8A;
}

.offcanvas-body {
    padding: 0;
    background: #ffffff;
}

/* Mobile Navigation Item (without dropdown) */
.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
    background: white;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

.mobile-nav-link i {
    margin-right: 12px;
    color: #2E5C8A;
    width: 20px;
    font-size: 16px;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: #2E5C8A;
    padding-left: 25px;
}

.mobile-nav-link:hover i {
    color: #f27735;
}

/* Bootstrap Accordion Customization */
.accordion-flush .accordion-item {
    border-bottom: 1px solid #f0f0f0;
    background: white;
}

.accordion-flush .accordion-item:first-child,
.accordion-flush .accordion-item:last-child {
    border-radius: 0;
}

.accordion-button {
    padding: 14px 20px;
    font-weight: 500;
    font-size: 15px;
    color: #333;
    background: white;
    border: none;
    box-shadow: none !important;
}

.accordion-button i {
    margin-right: 12px;
    color: #2E5C8A;
    width: 20px;
    font-size: 16px;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #2E5C8A;
}

.accordion-button:not(.collapsed) i {
    color: #f27735;
}

.accordion-button::after {
    margin-left: auto;
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.accordion-button:hover {
    background: #f8f9fa;
}

.accordion-button:not(.collapsed):hover {
    background: #f0f0f0;
}

.accordion-body {
    padding: 0;
    background: #fafafa;
}

/* Submenu Links */
.submenu-link {
    display: block;
    padding: 11px 20px 11px 52px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    background: #fafafa;
}

.submenu-link:hover {
    background: white;
    color: #2E5C8A;
    border-left-color: #f27735;
    padding-left: 54px;
}

/* Off-canvas Contact Section */
.offcanvas-contact {
    padding: 20px;
    background: #f8f9fa;
    margin-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.offcanvas-contact h6 {
    color: #2E5C8A;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offcanvas-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.offcanvas-contact-item i {
    color: #f27735;
    font-size: 14px;
    width: 18px;
}

.offcanvas-contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-word;
}

.offcanvas-contact-item a:hover {
    color: #2E5C8A;
}

/* Off-canvas Social Icons */
.offcanvas-social {
    display: flex;
    gap: 10px;
    padding: 15px 20px 20px;
    justify-content: center;
    background: #f8f9fa;
}

.offcanvas-social a {
    width: 36px;
    height: 36px;
    background: #2E5C8A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.offcanvas-social a:hover {
    background: #f27735;
    transform: translateY(-2px);
    color: white;
}

/* Hide desktop navigation on mobile, show mobile header */
@media (max-width: 991px) {
    .mobile-header-bar {
        display: block;
    }

    .top-contact-bar,
    .navbar {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .mobile-header-bar {
        display: none !important;
    }
}

.offcanvas-body {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

/* canvas header end */

/* custom animation  */
