:root {
    --primary-color: #1C3E5D;
    --secondary-color: #A4203F;
    --light-color: #FFFFFF;
    --gns-primary-color7: #1C3E5D;
    --gns-secondary-color7: #A4203F;
    --gns-light-color7: #FFFFFF;
    --gns-dark-color7: #333333;
    --gns-gray-7: #f8f9fa;

    --primary-color8: #4e73df;
    --secondary-color8: #1cc88a;
    --dark-color8: #5a5c69;
    --light-color8: #f8f9fc;
    --gradient-primary8: linear-gradient(135deg, #4e73df 0%, #224abe 100%);

    color: var(--gns-dark-color7);
}

a {
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #333;
}

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

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

.text-primary-custom {
    color: var(--primary-color);
}

.text-secondary-custom {
    color: var(--secondary-color);
}

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

.btn-primary-custom:hover {
    background-color: #15304a;
    color: white;
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.btn-secondary-custom:hover {
    background-color: #8a1a35;
    color: white;
}

/* navbar style start  */

/* gallery css  */
.project-card {
    cursor: pointer;
}

.project-card img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.hover-icon {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.project-card:hover .hover-icon {
    opacity: 1;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    z-index: 9999;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.glightbox-clean .gclose {
    top: 15px !important;
    right: 20px !important;
}

.glightbox-clean .gnext {
    top: 50% !important;
    right: 20px !important;
    transform: translateY(-50%);
}

.glightbox-clean .gprev {
    top: 50% !important;
    left: 20px !important;
    transform: translateY(-50%);
}

.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover,
.glightbox-clean .gclose:hover {
    opacity: 0.7;
}

/* galelry css end  */

.top-navbar {
    background-color: var(--primary-color);
    color: var(--light-color);
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.top-navbar.hidden {
    transform: translateY(-100%);
}

.main-navbar {
    background-color: var(--light-color);
    border-bottom: 2px solid var(--secondary-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-primary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #8C1C35;
    border-color: #8C1C35;
    color: var(--light-color);
}

.nav-item.dropdown {
    position: static;
    /* Set to static to allow mega menu to break out of container on desktop */
}

.mega-menu {
    display: none;
    /* Hide mega menu by default */
    position: absolute;
    width: 100%;
    left: 0;
    padding: 20px;
    background-color: var(--light-color);
    border-top: 2px solid var(--secondary-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.nav-item.dropdown:hover .mega-menu {
    display: block;
    /* Show mega menu on hover */
}

.mega-menu h6 {
    color: var(--primary-color);
    font-weight: bold;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.mega-menu .list-group-item {
    border: none;
    padding: 5px 0;
}

.mega-menu .list-group-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-menu .list-group-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Hero Section for demonstration */


/* Mobile specific styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--light-color);
        border-top: 2px solid var(--secondary-color);
    }

    .nav-item.dropdown {
        position: relative;
    }

    .mega-menu {
        position: relative;
        box-shadow: none;
        border-top: none;
    }

    .mega-menu .list-group {
        margin-bottom: 1rem;
    }
}

@media(max-width: 500px) {
    .top-navbar {
        display: none !important;
    }

    .main-navbar {
        position: fixed !important;
        top: 0 !important;

    }
}

/* navbar style end  */

/* Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-icon {
    padding: 1.5rem 1.5rem 0;
    text-align: center;
}

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

.card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.card-body h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-body p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.card-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.card-link:hover {
    color: #2980b9;
    transform: translateX(3px);
}

.card-link:after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.card-link:hover:after {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .mega-menu-content {
        position: static !important;
        box-shadow: none;
        padding: 1rem 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .mega-menu:hover .mega-menu-content,
    .mega-menu .dropdown-toggle:focus+.mega-menu-content {
        display: block;
    }

    .service-card {
        margin-bottom: 1rem;
    }

    .brand-name {
        font-size: 1.2rem;
    }
}

.mega-menu .dropdown-menu {
    width: 700px;
    border-radius: 8px;
    border: none;
    display: flex;
    margin: auto;
}

.mega-item {
    display: flex;
    align-items: center;
    padding: 8px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.mega-item img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.mega-item span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.mega-item:hover {
    background: #f5f5f5;
}

/* mega navbar css end  */
.hero-section {
    background: linear-gradient(rgba(28, 62, 93, 0.8), rgba(28, 62, 93, 0.8)), url('https://images.unsplash.com/photo-1605152276897-4f618f831968?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
    /* background: rgba(0, 0, 0, 0.9); */
    /* background:red; */


}

.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgba(28, 62, 93, 0.6), rgba(28, 62, 93, 0.8)); */
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 600px;
}

.hero-carousel img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    position: absolute;
    /* top: 60%; */
    top: 52%;
    /* left: -10%; */
    left: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    right: auto;
    bottom: auto;
    padding: 0 15%;


}

.carousel-caption h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.carousel-caption p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

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

.carousel-indicators button.active {
    background-color: var(--secondary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(164, 32, 63, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-size: 1.5rem;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    font-size: 2rem;
    animation-duration: 2s;
}

.scroll-down a {
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 0 10%;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }

    .carousel-caption .btn {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Services Section Styling */
.services-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(164, 32, 63, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(28, 62, 93, 0.03) 0%, transparent 25%);
    z-index: -1;
}

.section-title-bg {
    position: absolute;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(28, 62, 93, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: -1;
}



.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #A4203F, #1C3E5D);
    border-radius: 2px;
}

/* Services Intro */
.services-intro-image {
    position: relative;
    height: 400px;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(28, 62, 93, 0.6), transparent);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge-text {
    font-weight: 600;
    color: #1C3E5D;
}

/* Feature Items */
.feature-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    flex: 0 0 30px;
}

/* Service Cards - Modern Animated Version */
.service-card {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 16px;
    overflow: hidden;
    background: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow:
        0 4px 6px rgba(28, 62, 93, 0.05),
        0 1px 3px rgba(28, 62, 93, 0.1);
    border: 1px solid rgba(164, 32, 63, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A4203F 0%, #1C3E5D 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    background: linear-gradient(145deg, #ffffff 0%, #f5f7fa 100%);
    box-shadow:
        0 10px 25px -5px rgba(164, 32, 63, 0.15),
        0 7px 20px -8px rgba(28, 62, 93, 0.2),
        0 2px 10px 0 rgba(28, 62, 93, 0.1);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(164, 32, 63, 0.1) 0%, rgba(28, 62, 93, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .icon-wrapper {
    background: linear-gradient(135deg, #A4203F 0%, #1C3E5D 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(164, 32, 63, 0.3);
}

.icon-inner {
    transition: all 0.5s ease;
}

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

.service-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 50px;
}

.btn-outline-primary-custom {
    color: #1C3E5D;
    border: 2px solid #1C3E5D;
    background: transparent;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 500;
}

.btn-outline-primary-custom:hover {
    color: white;
    border-color: #A4203F;
}

.service-btn-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #A4203F 0%, #1C3E5D 100%);
    transition: width 0.4s ease;
    z-index: 0;
    border-radius: 50px;
}

.service-btn-wrapper:hover::before {
    width: 100%;
}

.text-primary-custom {
    color: #1C3E5D;
    transition: color 0.3s ease;
}

.service-card:hover .text-primary-custom {
    color: #A4203F;
}

.card-body {
    padding: 2rem !important;
}




/* Optional: Add subtle inner glow on hover for premium feel */
.service-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 15px rgba(164, 32, 63, 0.08);
    pointer-events: none;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-on-scroll[data-animation="fadeInUp"] {
    transform: translateY(30px);
}

.animate-on-scroll[data-animation="fadeInLeft"] {
    transform: translateX(-30px);
}

.animate-on-scroll[data-animation="fadeInRight"] {
    transform: translateX(30px);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 992px) {
    .section-title-bg {
        font-size: 2.8rem;
    }

    .services-intro-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .section-title-bg {
        font-size: 2.2rem;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
}

/* Counter Section Styling */
.counter-section {
    background: linear-gradient(135deg, #1C3E5D 0%, #0E2439 100%);
    color: white;
}

.counter-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(164, 32, 63, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 25%);
}

.counter-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.counter-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.counter-box:hover {
    transform: translateY(-10px);
    background: rgba(164, 32, 63, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(164, 32, 63, 0.3);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.counter-box:hover .icon-wrapper {
    background: #A4203F;
    transform: rotateY(180deg);
}

.counter-stats {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 10px;
}

.counter {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(to right, #ffffff, #f1f1f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.counter-box:hover .counter {
    background: linear-gradient(to right, #ffffff, #FFD700);
    -webkit-background-clip: text;
}

.counter-suffix {
    font-size: 1.8rem;
    font-weight: 600;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

.counter-title {
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
    position: relative;
}

.counter-border {
    width: 50px;
    height: 3px;
    background: #A4203F;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.counter-box:hover .counter-border {
    width: 80px;
    background: white;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-on-scroll[data-animation="zoomIn"] {
    transform: scale(0.8);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .counter {
        font-size: 2.8rem;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .counter {
        font-size: 2.2rem;
    }

    .counter-suffix {
        font-size: 1.4rem;
    }

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

/* Projects Section Styling */
.projects-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(164, 32, 63, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(28, 62, 93, 0.05) 0%, transparent 25%);
}

.section-title-bg {
    position: absolute;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(28, 62, 93, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: -1;
}



.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #A4203F, #1C3E5D);
    border-radius: 2px;
}

/* Project Filters */
.project-filters .nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.project-filters .nav-link {
    white-space: nowrap;
    border-radius: 30px;
    padding: 10px 20px;
    margin: 0 5px;
    color: #1C3E5D;
    background: rgba(28, 62, 93, 0.1);
    border: none;
    transition: all 0.3s ease;
}

.project-filters .nav-link.active {
    background: linear-gradient(to right, #A4203F, #1C3E5D);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(164, 32, 63, 0.3);
}

.project-filters .nav-link i {
    margin-right: 5px;
}

/* Project Cards */
.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

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

.project-image {
    position: relative;
    height: 100%;
}

.project-image::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s linear;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(28, 62, 93, 0.9), transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    opacity: 1;
    transition: all 0.3s ease;
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-badge.ongoing {
    background: #FFA500;
    color: white;
}

.project-badge.completed {
    background: #4CAF50;
    color: white;
}

.project-content {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.project-card:hover .project-content {
    transform: translateY(-20px);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    margin: 10px 0;
    opacity: 0.9;
}

.project-meta i {
    margin-right: 5px;
}

.project-desc {
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-hover-content {
    bottom: 0;
    opacity: 1;
}

/* View All Button */
.btn-primary-custom {
    position: relative;
    overflow: hidden;
    border: none;
    background: linear-gradient(to right, #1C3E5D, #A4203F);
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-primary-custom .btn-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #A4203F, #1C3E5D);
    z-index: -1;
    transition: all 0.4s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(164, 32, 63, 0.3);
}

.btn-primary-custom:hover .btn-hover-effect {
    left: 0;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-on-scroll[data-animation="fadeInUp"] {
    transform: translateY(30px);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .project-filters .nav-pills {
        flex-wrap: wrap;
        justify-content: center;
    }

    .project-filters .nav-link {
        margin: 5px;
    }

    .section-title-bg {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .section-title-bg {
        font-size: 2.2rem;
    }

    .project-card {
        height: 250px;
    }
}

.team-card {

    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
}

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

.team-img {
    height: 250px;
    object-fit: cover;
}

.social-icons {
    /* position: absolute; */
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: all 0.3s;
}

.team-card:hover .social-icons {
    bottom: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}




.client-logo {
    height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.contact-info-box {
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s;
}

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

.contact-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* footer css start  */
:root {
    --primary-bg3: #1c2331;
    --secondary-bg3: #283447;
    --accent-color3: #007bff;
    --text-light3: #f8f9fa;
    --text-muted3: #adb5bd;
    --border-color3: #3e4c62;
    --gns-primary-color4: #1C3E5D;
    --gns-secondary-color4: #A4203F;
    --gns-light-color4: #FFFFFF;
    --gns-dark-color4: #333333;
    --gns-gray-color4: #f8f9fa;
}



footer {
    background-color: var(--primary-bg3);
    color: var(--text-muted3);
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    width: 180px;
    height: auto;
    border-radius: 8px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

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

.footer-links h5 {
    color: var(--text-light3);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color3);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-links h5:hover::after {
    width: 80px;
}

.footer-links ul {
    padding-left: 0;
    list-style: none;
}

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

.footer-links ul li a,
.footer-contact p {
    color: var(--text-muted3);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--accent-color3);
    transform: translateX(5px);
}

.footer-contact .icon {
    color: var(--accent-color3);
    margin-right: 10px;
    width: 20px;
}

.social-icons-footer a {
    color: var(--text-muted);
    font-size: 1.5rem;
    margin-right: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-icons-footer a:hover {
    color: var(--accent-color3);
    transform: scale(1.2);
}

.copyright {
    border-top: 1px solid var(--border-color3);
    padding-top: 1.5rem;
    margin-top: 3rem;
    color: #888;
}

@media (max-width: 991.98px) {
    .footer-links h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-contact {
        text-align: center;
        margin-top: 2rem;
    }

    .social-icons-footer {
        text-align: center;
    }

    .social-icons-footer a {
        margin: 0 0.75rem;
    }
}

/* footer css end  */
/* about us css start  */

.about-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(164, 32, 63, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(28, 62, 93, 0.05) 0%, transparent 20%);
    z-index: -1;
}

.section-title-bg {
    position: absolute;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(28, 62, 93, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    white-space: nowrap;
    z-index: -1;
}

.section-title-text {
    position: relative;
    z-index: 1;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #A4203F, #1C3E5D);
    border-radius: 2px;
}

/* Mission Card */
.mission-card {
    background: white;
    border-left: 4px solid #A4203F;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(28, 62, 93, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.title-decoration {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: #A4203F;
}

/* About Image */
.about-image-container {
    position: relative;
    height: 400px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(28, 62, 93, 0.7), transparent);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge-years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #A4203F;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    color: #1C3E5D;
}


/* Unique Timeline Styles with 'sc-' prefix */
.sc-timeline-section {
    background-color: #f9fbfd;
    position: relative;
    z-index: 1;
}

.sc-timeline-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.sc-timeline-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(25, 103, 210, 0.05);
}

.sc-circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.sc-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    background: rgba(25, 103, 210, 0.03);
}

.sc-timeline-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%231967d2" opacity=".03"/></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 150px;
    bottom: 0;
    left: 0;
}

.sc-timeline-header {
    position: relative;
    z-index: 2;
}

.sc-timeline-main-title {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2b50;
    margin-bottom: 0.5rem;
}

.sc-title-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(25, 103, 210, 0.05);
    white-space: nowrap;
    z-index: -1;
}

.sc-title-front {
    color: #1a2b50;
}

.sc-timeline-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sc-timeline-v3 {
    position: relative;
    padding: 60px 0;
}

.sc-timeline-track {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #e9ecef;
    z-index: 1;
}

.sc-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #1C3E5D;
    transition: height 1s ease;
}

.sc-timeline-items {
    position: relative;
    z-index: 2;
}

.sc-timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.sc-timeline-card {
    position: relative;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
}

.sc-timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.sc-timeline-card-inner {
    position: relative;
}

.sc-timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1C3E5D;
    margin-bottom: 15px;
}

.sc-timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2b50;
    margin-bottom: 10px;
}

.sc-timeline-desc {
    color: #6c757d;
    margin-bottom: 15px;
}

.sc-timeline-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(25, 103, 210, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(120, 20, 45, 0.8);

    font-size: 1.25rem;
}

.sc-timeline-connector {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: #1C3E5D;


}

.sc-timeline-item:nth-child(odd) .sc-timeline-connector {
    right: -50px;
}

.sc-timeline-item:nth-child(even) .sc-timeline-connector {
    left: -50px;
}

.sc-timeline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid #1C3E5D;
    z-index: 3;
}

.sc-timeline-item:nth-child(odd) .sc-timeline-marker {
    right: -60px;
}

.sc-timeline-item:nth-child(even) .sc-timeline-marker {
    left: -60px;
}

/* Animation Classes */
.sc-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.sc-animate-on-scroll.sc-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .sc-timeline-track {
        /* left: 60px; */
    }

    .sc-timeline-item {
        padding-left: 80px;
    }

    .sc-timeline-card {
        margin-left: 0;
    }

    .sc-timeline-connector {
        left: -50px !important;
        right: auto !important;
    }

    .sc-timeline-marker {
        left: -10px !important;
        right: auto !important;
    }

    .sc-timeline-icon {
        position: absolute;
        top: 0 !important;

    }
}

@media (max-width: 767.98px) {
    .sc-timeline-main-title {
        font-size: 2rem;
    }

    .sc-timeline-icon {
        position: absolute;
        top: 0 !important;
        /* bottom: 200px; */
    }

    .sc-title-bg {
        font-size: 2.5rem;
    }

    .sc-timeline-year {
        font-size: 1.25rem;
    }

    .sc-timeline-title {
        font-size: 1.1rem;
    }

    .sc-timeline-desc {
        font-size: 0.9rem;
    }

    .sc-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .sc-timeline-connector {
        display: none;
    }

    .sc-timeline-marker {
        display: none;
    }
}

/* Director's Message */
.director-image-container {
    position: relative;
    height: 500px;
}

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

.director-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(28, 62, 93, 0.8), transparent);
}

.director-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
}

.director-title {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.director-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
}

.director-message {
    background: white;
    height: 100%;
}

.message-quote {
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.quote-icon {
    color: rgba(164, 32, 63, 0.3);
    font-size: 2rem;
}

.quote-icon.start {
    position: absolute;
    top: -10px;
    left: -20px;
}

.quote-icon.end {
    position: absolute;
    bottom: -20px;
    right: -10px;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-on-scroll[data-animation="fadeInUp"] {
    transform: translateY(30px);
}

.animate-on-scroll[data-animation="fadeInLeft"] {
    transform: translateX(-30px);
}

.animate-on-scroll[data-animation="fadeInRight"] {
    transform: translateX(30px);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 992px) {

    .timeline-item,
    .timeline-item.right {
        padding-left: 0;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .timeline-item.right .timeline-content {
        margin-left: 60px;
    }

    .timeline-progress {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-item.right .timeline-marker {
        left: 30px;
        right: auto;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .section-title-bg {
        font-size: 2.5rem;
    }

    .about-image-container,
    .director-image-container {
        height: 350px;
    }
}

/* about us css end  */
/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid var(--secondary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--primary-color);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--primary-color);
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--primary-color);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--primary-color) transparent transparent;
}

.right::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-container::before {
        left: 60px;
        border: medium solid var(--primary-color);
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--primary-color) transparent transparent;
    }

    .left::after,
    .right::after {
        left: 15px;
    }

    .right {
        left: 0%;
    }
}

/* auto scrollable css  */
.team-scroller {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.team-scroll-btn {
    width: 40px;
    height: 40px;
    z-index: 1;
    opacity: 0.8;
}

.team-scroll-btn:hover {
    opacity: 1;
}

/* Hide scrollbar but keep functionality */
.team-scroller::-webkit-scrollbar {
    display: none;
}

/* Advisors Section Styles */
.advisors-section {
    background: linear-gradient(135deg, #f9fbfd 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.advisor-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.03);
    filter: blur(50px);
    z-index: 1;
}

.advisor-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.advisor-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite 2s;
}

.advisor-section-title {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(13, 110, 253, 0.05);
    white-space: nowrap;
    z-index: -1;
    width: 100%;
}

.title-front-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #0d6efd, #6f42c1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.advisor-section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Advisor Card Styles */
.advisor-icon img {
    border-radius: 50%;
    height: 3.5rem !important;
    width: 3.5rem !important;

}

.advisor-card {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.advisor-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

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

.advisor-card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 16px;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #0d6efd, #6f42c1) border-box;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.advisor-card:hover .advisor-card-border {
    opacity: 1;
}

.advisor-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.advisor-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(111, 66, 193, 0.1));
    border-radius: 50%;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.advisor-card:hover .advisor-icon-bg {
    transform: scale(1);
    /* background: linear-gradient(135deg, #0d6efd, #6f42c1); */
    background: linear-gradient(135deg,
            rgba(164, 32, 63, 0.8),
            rgba(120, 20, 45, 0.8));
}

.advisor-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(120, 20, 45, 0.8);
    transition: all 0.4s ease;
}

.advisor-card:hover .advisor-icon {
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.advisor-content {
    flex: 1;
}

.advisor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.advisor-card:hover .advisor-name {
    /* color: #0d6efd; */
    color: #1C3E5D;
}

.advisor-title {
    font-size: 1rem;
    font-weight: 600;
    color: #6f42c1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.advisor-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, #6f42c1);
    transition: width 0.4s ease;
}

.advisor-card:hover .advisor-title::after {
    width: 80px;
}

.advisor-details {
    margin-bottom: 20px;
}

.advisor-details p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 15px;
}

.advisor-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
    background: rgba(13, 110, 253, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
}

.advisor-hover-content {
    height: 0;
    overflow: hidden;
    transition: height 0.6s ease;
}

.advisor-card:hover .advisor-hover-content {
    height: 120px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    /* background: rgba(13, 110, 253, 0.1); */
    background: rgba(120, 20, 45, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    /* background: linear-gradient(135deg, #0d6efd, #6f42c1); */
    background: #1C3E5D;
    color: white;
    transform: translateY(-3px);
}

.advisor-quote {
    position: relative;
    padding-left: 25px;
    font-style: italic;
    color: #495057;
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(13, 110, 253, 0.2);
    font-size: 1.5rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .advisor-card-inner {
        padding: 25px;
    }

    .advisor-icon-container {
        width: 70px;
        height: 70px;
    }

    .advisor-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .advisor-section-title {
        font-size: 2rem;
    }

    .title-bg-text {
        font-size: 3rem;
    }

    .advisor-section-subtitle {
        font-size: 1.1rem;
    }

    .advisor-card:hover .advisor-hover-content {
        height: 140px;
    }
}

/* client section css start

/* Clients Section Styles */
#clients {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.client-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.03);
    filter: blur(40px);
    z-index: 1;
}

.client-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.client-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.section-title {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
}

.title-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(13, 110, 253, 0.05);
    white-space: nowrap;
    z-index: -1;
    width: 100%;
}

.title-front-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #0d6efd, #6f42c1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Client Scroller Styles */
.client-scroller-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.client-scroller-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.client-scroller-track:hover {
    animation-play-state: paused;
}

.client-logo-group {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 15px;
}

.client-logo-item {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-item:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .client-logo-item {
        width: 150px;
        height: 80px;
    }

    .client-logo-group {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .title-bg-text {
        font-size: 3rem;
    }

    .client-logo-item {
        width: 120px;
        height: 70px;
        padding: 10px;
    }

    .client-scroller-track {
        animation-duration: 20s;
    }
}

/* client section csss end  */

/* equipment css start  */

.equipment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.equipment-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.03);
    filter: blur(50px);
    z-index: 1;
}

.equipment-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.equipment-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite 2s;
}

.equipment-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    animation: float 12s ease-in-out infinite;
}

.equipment-particle.particle-1 {
    width: 15px;
    height: 15px;
    top: 20%;
    left: 10%;
    animation-delay: 1s;
}

.equipment-particle.particle-2 {
    width: 10px;
    height: 10px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.equipment-section-title {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(13, 110, 253, 0.05);
    white-space: nowrap;
    z-index: -1;
    width: 100%;
}

.title-front-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #0d6efd, #6f42c1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.equipment-section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Equipment Card Styles */
.equipment-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    overflow: hidden;
}

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

.equipment-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(111, 66, 193, 0.1));
    border-radius: 50%;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.equipment-card:hover .icon-bg {
    transform: scale(1);
    /* background: linear-gradient(135deg, #0d6efd, #6f42c1); */
    background: rgba(120, 20, 45, 0.8);
}

.equipment-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    /* color: #0d6efd; */
    color: #8a1a35;
    transition: all 0.4s ease;
}

.equipment-card:hover .equipment-icon {
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.equipment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 25px;
    text-align: center;
    transition: color 0.3s ease;
}

.equipment-card:hover .equipment-title {
    color: #1C3E5D;
}

.equipment-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-item {
    background: rgba(13, 110, 253, 0.05);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.equipment-card:hover .stat-item {
    background: rgba(13, 110, 253, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1C3E5D;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    display: block;
}

.equipment-details-toggle {
    text-align: center;
    margin-top: 20px;
}

.btn-details {
    background: transparent;
    border: none;
    color: #1C3E5D;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-details:hover {
    color: #6f42c1;
}

.btn-details i {
    transition: transform 0.3s ease;
}

.equipment-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.equipment-card.active .equipment-details {
    max-height: 500px;
}

.equipment-card.active .btn-details i {
    transform: rotate(180deg);
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.equipment-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #e9ecef;
    color: #6c757d;
}

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

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

/* Responsive Styles */
@media (max-width: 992px) {
    .equipment-card {
        padding: 25px;
    }

    .equipment-icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .equipment-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .stat-item {
        padding: 12px;
    }

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

@media (max-width: 768px) {
    .equipment-section-title {
        font-size: 2rem;
    }

    .title-bg-text {
        font-size: 3rem;
    }

    .equipment-section-subtitle {
        font-size: 1.1rem;
    }

    .equipment-stats {
        grid-template-columns: 1fr;
    }
}

/* equipment css end  */



/* breadcrump css start  */

/* Hero background */
.breadcrumb-hero {
    position: relative;
    background: url('./../images/breadcrump.jpg') center/cover no-repeat;
    padding: 90px 0;
    color: white;
    overflow: hidden;
}

/* Semi-transparent dark layer */
.breadcrumb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Gradient overlay */
.breadcrumb-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(255, 215, 0, 0.15));
    z-index: 1;
}

/* Inner content */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* Page title */
.breadcrumb-content h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeSlideDown 1s ease forwards;
}

/* Breadcrumb bar */
.breadcrumb {
    background: transparent;
    padding: 0;
    display: inline-flex;
    gap: 8px;
    border-radius: 50px;
    animation: fadeSlideUp 1s ease forwards;
    animation-delay: 0.4s;
}

/* Breadcrumb buttons */
.breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect */
.breadcrumb-item a:hover {
    /* background: rgba(255, 215, 0, 0.25); */
    background: #2F5E8A;
    color: #dea3b1;
    /* box-shadow: 0 0 10px rgba(255,215,0,0.5); */
}

/* Active item */
.breadcrumb-item.active {
    background: rgba(47, 94, 138, 0.35);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

/* Remove default separator */
.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

/* Animation for each item */
.breadcrumb li {
    opacity: 0;
    transform: translateY(15px);
    animation: itemFadeUp 0.8s ease forwards;
}

.breadcrumb li:nth-child(1) {
    animation-delay: 0.6s;
}

.breadcrumb li:nth-child(2) {
    animation-delay: 0.8s;
}

.breadcrumb li:nth-child(3) {
    animation-delay: 1s;
}

/* Animations */
@keyframes fadeSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* testimonial css start  */

:root {
    --primary-color2: #1F3B59;
    --secondary-color2: #A4203F;
    --text-color-light2: #fff;
    --text-color-dark2: #4b5563;
    --font-title2: 'Titillium Web', sans-serif;
    --font-body2: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body2);
}

.testiPara {
    margin-top: 100px !important;
}

.testimonial-section-gwallek {
    overflow: hidden;
    background-color: var(--primary-color2);
}

.about-content-gwallek {
    color: var(--text-color-light2);
    padding: 5rem 2rem;
    position: relative;
    background-color: var(--primary-color2);
}

.about-content-gwallek::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color2);
    z-index: 1;
}

.layer-content-gwallek {
    position: relative;
    z-index: 2;
    height: 100%;
}

.section-title-gwallek h5 {
    color: #818a8f;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.section-title-gwallek h2 {
    font-family: var(--font-title2);
    font-weight: 300;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title-gwallek h2 strong {
    font-weight: 600 !important;
    display: block;
}

.heading-line-gwallek {
    position: relative;
    padding-bottom: 2rem;
}

.heading-line-gwallek::after {
    content: "";
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    width: 80px;
    border-bottom: 3px solid var(--secondary-color2);
}

.testimonial-box-gwallek {
    padding: 5rem 0;
    background-color: var(--secondary-color2);
}

.testimonial-container-gwallek {
    background-color: var(--secondary-color2);
    position: relative;
}

.testimonial-content-gwallek {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.13);
    position: relative;
    z-index: 1;
    height: 350px;
    display: flex;
    flex-direction: column;
    /* margin-top:  100px !important; */
}

.testimonial-caption-gwallek h6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.testimonial-caption-gwallek span {
    font-size: 0.8rem;
    color: #9f9f9f;
}

.owl-carousel .owl-item img {
    height: 100px !important;
    width: 100px !important;
    border-radius: 50% !important;
}

.testimonial-caption-gwallek::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color2);
    margin: 0.5rem auto 1rem;
}

.testimonial-content-gwallek p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-color-dark2);
    font-style: italic;
    margin-top: 1rem;
    overflow-y: auto;
    flex-grow: 1;
}

.testimonial-content-gwallek p::-webkit-scrollbar {
    width: 8px;
}

.testimonial-content-gwallek p::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-content-gwallek p::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.testimonial-content-gwallek p::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.testimonial-img-gwallek {

    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 2;
}

.testimonial-img-gwallek img {
    width: 100px;
    height: 100px;
    /* overflow: hidden; */
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
}



/* Owl Carousel Nav Override */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color2) !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    opacity: 1;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -20px;
}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
    font-size: 2rem;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .testimonial-box-gwallek {
        padding: 2rem 0;
    }

    .testimonial-section-gwallek .about-content-gwallek {
        padding: 3rem 2rem;
    }

    .testimonial-img-gwallek {
        position: static;
        margin-bottom: 1rem;
    }

    .testimonial-content-gwallek {
        height: auto;
        text-align: center;

    }

    .testimonial-caption-gwallek::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* contact section css start  */


:root {
    --primary-color5: #0d2c54;
    /* Deep blue from the logo */
    --secondary-color5: #f0f4f8;
    /* Light gray background */
    --accent-color5: #4a90e2;
    /* A brighter blue for accents */
    --text-color5: #333;
    --light-text-color5: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary-color5);
    color: var(--text-color5);
    line-height: 1.8;
}

.contact-section {
    padding: 80px 0;
}

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

.section-header h1 {
    font-weight: 700;
    font-size: 3rem;
    color: var(--primary-color5);
    position: relative;
    padding-bottom: 15px;
}


.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 15px auto 0;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-card .icon-circle {
    width: 70px;
    height: 70px;
    /* background: linear-gradient(135deg, var(--primary-color5), var(--accent-color5)); */
    background: var(--primary-color);
    color: var(--light-text-color5);
    font-size: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.contact-card:hover .icon-circle {
    /* background: linear-gradient(135deg, var(--accent-color5), var(--primary-color5)); */
    background: var(--primary-color);
}

.contact-card h5 {
    font-weight: 600;
    color: var(--primary-color5);
    margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
    color: #555;
    font-size: 1rem;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--accent-color5);
}

.contact-form-wrapper {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: var(--accent-color5);
    box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--primary-color5);
}

.btn-submit {
    background-color: var(--primary-color);
    border: none;
    color: var(--light-text-color5);

    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background-color: var(--primary-color5);
    transform: translateY(-3px);
    color: #fff !important;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

#success-message {
    display: none;
}


/* contact section css end  */

/* === SECTION HEADER === */
.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    color: #A4203F;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    color: #1C3E5D;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #A4203F, #1C3E5D);
    margin: 0 auto;
    border-radius: 2px;
}

/* === CONTACT CARDS === */
.contact-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 8px 32px rgba(28, 62, 93, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(28, 62, 93, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(28, 62, 93, 0.1), rgba(164, 32, 63, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1C3E5D;
    transition: all 0.5s ease;
}

.contact-card:hover .card-icon {
    background: linear-gradient(135deg, #1C3E5D, #A4203F);
    color: white;
    transform: rotateY(180deg);
}

.hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #A4203F, #1C3E5D);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: -1;
}

.contact-card:hover .hover-effect {
    transform: scaleX(1);
}

/* === FORM & MAP LAYOUT === */
.contact-content {
    display: flex;
    gap: 2rem;
}

.contact-form-container,
.contact-map-container {
    flex: 1;
}

/* === GLASS MORPHISM FORM === */
.form-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(28, 62, 93, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    position: relative;
}

.floating-input input,
.floating-input textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid #e0e6ed;
    background: transparent;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.floating-input textarea {
    min-height: 100px;
    resize: vertical;
}

.floating-input label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: #7a8ca1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-input input:focus~label,
.floating-input textarea:focus~label,
.floating-input input:not(:placeholder-shown)~label,
.floating-input textarea:not(:placeholder-shown)~label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: #A4203F;
}

.floating-input input:focus,
.floating-input textarea:focus {
    outline: none;
    border-bottom-color: #A4203F;
}

/* === GLOW BUTTON === */
.glow-button {
    background: linear-gradient(90deg, #1C3E5D, #A4203F);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(28, 62, 93, 0.3);
}

.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(164, 32, 63, 0.4);
}

.glow-button i {
    transition: transform 0.3s ease;
}

.glow-button:hover i {
    transform: translateX(5px);
}

/* === INTERACTIVE MAP === */
.map-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1px;
    box-shadow: 0 8px 32px rgba(28, 62, 93, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modern-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 16px;
    display: block;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #A4203F;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

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

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {

    .contact-cards,
    .contact-content {
        flex-direction: column;
    }

    .contact-card {
        max-width: 100%;
    }
}

/* contact section css end  */
/* detail project css  */


.gns-project-details body {
    color: var(--gns-dark-color4);
    overflow-x: hidden;
}

strong {
    color: white !important;
}

.gns-project-details h1,
.gns-project-details h2,
.gns-project-details h3,
.gns-project-details h4,
.gns-project-details h5,
.gns-project-details h6 {
    font-weight: 700;
}

.gns-heading-box {
    position: relative;
    margin-bottom: 50px;
}

.gns-heading-box h2 {
    font-size: 2.5rem;
    color: var(--gns-primary-color4);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.gns-heading-box h2 span {
    color: var(--gns-secondary-color4);
}

.gns-b-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gns-secondary-color4);
}

.gns-project-detail-card {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gns-project-detail-card figure {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.gns-project-detail-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gns-project-detail-card figure:hover img {
    transform: scale(1.05);
}

.gns-project-info {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(28, 62, 93, 0.9);
    color: var(--gns-light-color4);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    border-top-left-radius: 10px;
}

.gns-project-info h3 {
    color: var(--gns-light-color4);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.gns-project-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gns-secondary-color4);
}

.gns-project-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gns-project-info ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.gns-project-info ul li:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gns-light-color4);
    font-size: 12px;
}

.gns-project-info ul li strong {
    color: var(--gns-secondary-color4);
    font-weight: 600;
}

.gns-box-title {
    position: relative;
    margin-bottom: 20px;
}

.gns-box-title h3,
.gns-box-title h4 {
    position: relative;
    display: inline-block;
    color: var(--gns-primary-color4);
}

.gns-box-title h3:after,
.gns-box-title h4:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gns-secondary-color4);
}

.gns-text-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.gns-project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gns-project-gallery li {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gns-project-gallery li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gns-project-gallery li a {
    display: block;
    height: 150px;
    overflow: hidden;
}

.gns-project-gallery li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gns-project-gallery li:hover img {
    transform: scale(1.1);
}

/* Auto-scrolling related projects */
.gns-related-projects {
    position: relative;
    padding: 80px 0;
    background: var(--gns-gray-color4);
}

.gns-related-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding: 20px 0;
    margin: 0 -15px;
}




/* fancy css  */

.gns-related-carousel::-webkit-scrollbar {
    display: none;
}

.gns-project-item {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    min-width: 300px;
}

@media (max-width: 991px) {
    .gns-project-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .gns-project-item {
        flex: 0 0 100%;
    }
}

.gns-project-item:hover {
    transform: translateY(-10px);
}

.gns-project-item .gns-about-block {
    background: var(--gns-light-color4);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.gns-project-item figure {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.gns-project-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gns-project-item:hover figure img {
    transform: scale(1.1);
}

.gns-project-item .gns-text-box {
    padding: 20px;
}

.gns-project-item .gns-box-title h3 a {
    color: var(--gns-primary-color4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gns-project-item .gns-box-title h3 a:hover {
    color: var(--gns-secondary-color4);
}

.gns-project-item .gns-text-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

.gns-btn-text {
    color: var(--gns-secondary-color4);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.gns-btn-text:after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.gns-btn-text:hover {
    color: var(--gns-primary-color4);
}

.gns-btn-text:hover:after {
    transform: translateX(5px);
}

/* Carousel navigation */
.gns-carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.gns-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gns-carousel-dot.active {
    background: #A4203F !important;
    transform: scale(1.2);
}

/* Animation classes */
.gns-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.gns-animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .gns-project-info {
        position: relative;
        max-width: 100%;
        margin-top: -50px;
        border-radius: 0;
    }

    .gns-project-detail-card figure {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .gns-heading-box h2 {
        font-size: 2rem;
    }

    .gns-project-detail-card figure {
        height: 300px;
    }

    .gns-project-gallery {
        grid-template-columns: 1fr;
    }

    .gns-project-gallery li a {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .gns-project-detail-card figure {
        height: 250px;
    }

    .gns-project-info {
        padding: 20px;
    }
}

/* blog section css start  */
/* Add these styles to your existing CSS */
.gns-blog-carousel-container {
    overflow: hidden;
    position: relative;
    padding: 0 40px;
}

.gns-blog-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    margin: 0 -15px;
}

.gns-blog-carousel::-webkit-scrollbar {
    display: none;
}

.gns-blog-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    min-width: 300px;
}

.gns-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--gns-primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.gns-carousel-btn:hover {
    opacity: 1;
    background: var(--gns-secondary-color);
}

.gns-prev-btn {
    left: 0;
}

.gns-next-btn {
    right: 0;
}

.gns-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.gns-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gns-carousel-dot.active {
    background: var(--gns-secondary-color);
    transform: scale(1.2);
}

@media (max-width: 991.98px) {
    .gns-blog-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 767.98px) {
    .gns-blog-card {
        flex: 0 0 100%;
    }
}

/* Scoped CSS for GNS Blog Section */
.gns-blog-section {
    --gns-primary-color: #1C3E5D;
    --gns-secondary-color: #A4203F;
    --gns-light-color: #FFFFFF;
    --gns-dark-color: #333333;
    --gns-gray-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    background-color: var(--gns-light-color);
}

.gns-section-heading {
    position: relative;
    margin-bottom: 40px;
}

.gns-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gns-primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.gns-section-title span {
    color: var(--gns-secondary-color);
}

.gns-heading-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gns-secondary-color);
}

.gns-blog-card {
    background: var(--gns-light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.gns-blog-img {
    height: 220px;
}

.gns-blog-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gns-blog-content {
    padding: 25px;
}

.gns-blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gns-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.gns-blog-title:hover {
    color: var(--gns-secondary-color);
}

.gns-blog-excerpt {
    color: var(--gns-dark-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.gns-read-more {
    color: var(--gns-secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.gns-read-more i {
    transition: transform 0.3s ease;
}

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

.gns-blog-meta {
    color: #666;
    font-size: 0.875rem;
}

.gns-blog-meta i {
    color: var(--gns-secondary-color);
    width: 16px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .gns-section-title {
        font-size: 2rem;
    }

    .gns-blog-img {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .gns-blog-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575.98px) {
    .gns-section-title {
        font-size: 1.75rem;
    }

    .gns-blog-img {
        height: 180px;
    }
}

/* blog section css end  */


/* detail blog page css \ */
/* Scoped CSS for GNS Blog Detail */
.gns-blog-detail {}

/* Blog Content Styles */
.gns-blog-main {
    background: var(--gns-light-color7);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gns-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.gns-blog-meta a {
    color: var(--gns-secondary-color7);
    text-decoration: none;
    transition: color 0.3s;
}

.gns-blog-meta a:hover {
    color: var(--gns-primary-color7);
}

.gns-blog-meta i {
    margin-right: 5px;
}

.gns-social-share {
    display: flex;
    gap: 10px;
}

.gns-social-share a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gns-primary-color7);
    color: var(--gns-light-color7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;

}

.gns-social-share a:hover {
    background: var(--gns-secondary-color7);
    transform: translateY(-3px);
    color: white;
}

.gns-blog-title1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gns-primary-color7);
    margin-bottom: 25px;
    line-height: 1.3;
}

.gns-blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gns-secondary-color7);
    color: var(--gns-light-color7);
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
    line-height: 1.2;
}

.gns-blog-date span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.gns-blog-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.gns-blog-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

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

.gns-blog-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.gns-blog-quote {
    background: var(--gns-primary-color7);
    color: var(--gns-light-color7);
    padding: 30px;
    border-left: 5px solid var(--gns-secondary-color7);
    margin: 30px 0;
    font-style: italic;
    font-size: 1.1rem;
}

.gns-blog-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.gns-blog-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.gns-blog-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gns-secondary-color7);
    position: absolute;
    left: 0;
}

/* Author Section */
.gns-blog-author {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--gns-gray-color7);
    border-radius: 8px;
    margin: 40px 0;
    align-items: center;
}

.gns-author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.gns-author-info h5 {
    color: var(--gns-primary-color7);
    margin-bottom: 10px;
}

/* Comments Section */
.gns-comments-section {
    margin: 40px 0;
}

.gns-comment-title {
    color: var(--gns-primary-color7);
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.gns-comment-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gns-secondary-color7);
}

.gns-comment-list {
    list-style: none;
    padding: 0;
}

.gns-comment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.gns-comment-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.gns-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gns-comment-content {
    flex-grow: 1;
}

.gns-comment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    align-items: center;
}

.gns-comment-meta h6 {
    color: var(--gns-primary-color7);
    margin: 0;
    font-size: 1rem;
}

.gns-comment-date {
    font-size: 0.8rem;
    color: #666;
}

.gns-comment-reply {
    color: var(--gns-secondary-color7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.gns-comment-reply:hover {
    color: var(--gns-primary-color7);
}

.gns-comment-reply i {
    margin-right: 5px;
}

.gns-comment-replies {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 2px solid var(--gns-gray-color7);
    margin-top: 20px;
}

/* Comment Form */
.gns-comment-form {
    margin: 40px 0;
}

.gns-comment-form h4 {
    color: var(--gns-primary-color7);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.gns-comment-form h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gns-secondary-color7);
}

.gns-form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 15px;
    margin-bottom: 20px;
    width: 100%;
    transition: border-color 0.3s;
}

.gns-form-control:focus {
    border-color: var(--gns-primary-color7);
    outline: none;
    box-shadow: 0 0 0 2px rgba(28, 62, 93, 0.1);
}

.gns-form-textarea {
    min-height: 150px;
}

.gns-submit-btn {
    background: var(--gns-primary-color7);
    color: var(--gns-light-color7);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.gns-submit-btn:hover {
    background: var(--gns-secondary-color7);
    transform: translateY(-3px);
}

/* Sidebar Styles */
.gns-sidebar-widget {
    margin-bottom: 40px;
    background: var(--gns-light-color7);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gns-widget-title {
    color: var(--gns-primary-color7);
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.gns-widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gns-secondary-color7);
}

.gns-search-form {
    position: relative;
}

.gns-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding-right: 45px;
}

.gns-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: transparent;
    border: none;
    color: var(--gns-primary-color7);
}

.gns-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gns-categories-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

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

.gns-categories-list a {
    color: var(--gns-dark-color7);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.gns-categories-list a:hover {
    color: var(--gns-secondary-color7);
    padding-left: 5px;
}

.gns-recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

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

.gns-recent-img {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.gns-recent-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.gns-recent-title a {
    color: var(--gns-dark-color7);
    text-decoration: none;
    transition: color 0.3s;
}

.gns-recent-title a:hover {
    color: var(--gns-secondary-color7);
}

.gns-recent-meta {
    font-size: 0.8rem;
    color: #666;
}

.gns-recent-meta a {
    color: var(--gns-secondary-color7);
    text-decoration: none;
}

.gns-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gns-tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gns-gray-color7);
    color: var(--gns-dark-color7);
    border-radius: 4px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
}

.gns-tag-cloud a:hover {
    background: var(--gns-primary-color7);
    color: var(--gns-light-color7);
}

/* Navigation */
.gns-blog-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.gns-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gns-primary-color7);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.gns-nav-btn:hover {
    color: var(--gns-secondary-color7);
}

.gns-nav-btn i {
    transition: transform 0.3s;
}

.gns-prev-btn:hover i {
    transform: translateX(-5px);
}

.gns-next-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .gns-blog-title1 {
        font-size: 1.8rem;
    }

    .gns-author-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767.98px) {
    .gns-blog-main {
        padding: 25px;
    }

    .gns-blog-title1 {
        font-size: 1.6rem;
    }

    .gns-blog-author {
        flex-direction: column;
        text-align: center;
    }

    .gns-author-info {
        text-align: center;
    }

    .gns-comment-item {
        flex-direction: column;
    }

    .gns-comment-avatar {
        margin-bottom: 15px;
    }

    .gns-comment-replies {
        margin-left: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 575.98px) {
    .gns-blog-main {
        padding: 20px;
    }

    .gns-blog-title1 {
        font-size: 1.4rem;
    }

    .gns-blog-meta {
        flex-direction: column;
        gap: 8px;
    }

    .gns-social-share {
        margin-top: 10px;
    }
}

/* detail blog page css end  */

/* details service css  */
/* Hero Section with Parallax */
.gws-hero {
    position: relative;
    background: linear-gradient(rgba(28, 62, 93, 0.75), rgba(28, 62, 93, 0.75)), url('/images/hero1.jpg') center/cover fixed;
    color: white;
    text-align: center;
    padding: 140px 0 100px;
}

.gws-hero h1 {
    font-weight: bold;
    font-size: 3.2rem;
    animation: fadeInDown 1.2s ease-out;
}

.gws-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.gws-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    opacity: 0.7;
}

/* Glassmorphism Section Card */
.gws-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gws-glass:hover {
    transform: translateY(-5px);
}

/* Section Titles */
.gws-section {
    padding: 70px 0;
}

.gws-section h2 {
    font-weight: 700;
    color: #1C3E5D;
    margin-bottom: 20px;
    position: relative;
}

.gws-section h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #A4203F;
    margin-top: 10px;
    border-radius: 2px;
}

/* Highlight Box */
.gws-highlight {
    background: #fff0f3;
    border-left: 5px solid #A4203F;
    padding: 15px 20px;
    font-style: italic;
}

/* Images */
.gws-img {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

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

/* CTA */
.gws-cta {
    background: linear-gradient(135deg, #A4203F, #1C3E5D);
    color: white;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.gws-cta .btn {
    background: #fff;
    color: #1C3E5D;
    font-weight: bold;
    border-radius: 30px;
    padding: 12px 25px;
}

.gws-cta .btn:hover {
    background: #1C3E5D;
    color: white;
}

/* Shapes for Section Divider */
.gws-wave {
    position: relative;
}

.gws-wave::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('/images/hero1.jpg fill="%23f4f6f9" d="M0,0L1440,80L1440,0L0,0Z"></path></svg>') no-repeat center;
    background-size: cover;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

/* Scroll Fade-In Animation */
.gws-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.gws-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* details service css end  */



/* contact multibranch css  */


/* Unique CSS namespace to prevent conflicts */
.multi-branch-contact {
    background-color: #f8f9fc;
    position: relative;
    overflow: hidden;
}

.multi-branch-contact .text-gradient-primary {
    background: var(--gradient-primary8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.multi-branch-contact .divider-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary8);
    border-radius: 2px;
}

/* Branch Cards */
.multi-branch-contact .branch-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.multi-branch-contact .branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 2rem 0 rgba(58, 59, 69, 0.2);
}

.multi-branch-contact .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #934357 !important;
}

.text-contact {
    color: #1C3E5D !important;
}

/* Contact Form */
.multi-branch-contact .contact-form-wrapper {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.multi-branch-contact .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d3e2;
    border-radius: 0.35rem;
}

.multi-branch-contact .form-control:focus {
    border-color: #bac8f3;
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.multi-branch-contact .btn-primary-gradient {
    background: var(--gradient-primary8);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.multi-branch-contact .btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(78, 115, 223, 0.3);
}

/* Map Container */
.multi-branch-contact .map-container {
    height: 300px;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}

.multi-branch-contact .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Nav Pills */
.multi-branch-contact .nav-pills .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 50rem;
    transition: all 0.3s ease;
}

.multi-branch-contact .nav-pills .nav-link.active {
    background: var(--gradient-primary8);
    color: white !important;
    box-shadow: 0 0.5rem 1rem rgba(78, 115, 223, 0.3);
}

.multi-branch-contact .nav-pills .nav-link:not(.active):hover {
    color: var(--primary-color8);
    background: rgba(78, 115, 223, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {

    .multi-branch-contact .branch-card,
    .multi-branch-contact .contact-form-wrapper {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .multi-branch-contact .nav-pills .nav-link {
        padding: 0.5rem 1rem;
        margin: 0.25rem;
        font-size: 0.875rem;
    }

    .multi-branch-contact .display-4 {
        font-size: 2.5rem;
    }
}

/* /* testimonial css start  */
/* Project Testimonial Specific Styles */
.gns-project-testimonial {
    position: relative;
    overflow: hidden;
}

.gns-project-testimonial-card {
    border-radius: 12px;
    background: white;
    position: relative;
    transition: transform 0.3s ease;
}

.gns-project-testimonial-card:hover {
    transform: translateY(-5px);
}

.gns-testimonial-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid rgba(0, 0, 0, 0.1);
}

.gns-testimonial-quote i {
    font-size: 2.5rem;
    opacity: 0.2;
}

.gns-testimonial-text {
    position: relative;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.gns-testimonial-content {
    position: relative;
    padding-left: 30px;
}

.gns-rating {
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gns-testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .gns-testimonial-text {
        font-size: 1rem;
    }
}

/* testimonial css end  */


/* modal style css  */
/* ===== GNS QUOTE MODAL STYLES ===== */
/* GNS Split Modal Styles */
.gns-split-modal .modal-content {
    border: none;
    border-radius: 0;
    min-height: 400px;
    overflow: hidden;
}

.gns-split-modal .modal-dialog {
    max-width: 800px;
}

.gns-split-modal .gns-modal-image {
    background: url('/images/hero1.jpg') center/cover no-repeat;
    position: relative;
}

.gns-split-modal .gns-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 62, 93, 0.8) 0%, rgba(28, 62, 93, 0.6) 100%);
}

.gns-split-modal .gns-image-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    z-index: 1;
}

.gns-split-modal .gns-image-content h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gns-split-modal .gns-form-side {
    padding: 2rem;
}

.gns-split-modal .modal-header {
    padding: 0 0 1rem 0;
}

.gns-split-modal .modal-title {
    color: var(--primary-color);
    font-weight: 600;
}

.gns-split-modal .form-control,
.gns-split-modal .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.75rem;
}

.gns-split-modal .form-control:focus,
.gns-split-modal .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(164, 32, 63, 0.1);
}

.gns-split-modal .gns-submit-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem;
    width: 100%;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gns-split-modal .gns-submit-btn:hover {
    background-color: #8c1b34;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .gns-split-modal .gns-modal-image {
        display: none;
    }

    .gns-split-modal .gns-form-side {
        width: 100%;
    }
}

/* .......... faqq............. */
.faq-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-header {
    background-color: white;
    border: none;
    padding: 0;
}

.faq-button {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    font-weight: 600;
    color: #1a5276;
    background-color: white;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-button:not(.collapsed) {
    color: #d35400;
    background-color: rgba(211, 84, 0, 0.05);
    border-bottom-color: transparent;
}

.faq-button:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.3s;
}

.faq-button:not(.collapsed):after {
    transform: rotate(-180deg);
    color: #d35400;
}

.faq-body {
    padding: 20px 25px;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 80%;
    object-fit: cover;
    transition: transform 0.5s;
}

.faq-image:hover {
    transform: scale(1.02);
}

/* CTA Section */
.cta-card {
    background: linear-gradient(135deg, #0b2c4d, #123e6b);
    color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.cta-text {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    text-align: center;
}

.btn-cta {
    background-color: #f9b233;
    color: #000;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: #ffffff;
    color: #0b2c4d;
}
