/* Root Variables */
:root {
    --primary-color: #0066CC;
    --secondary-color: #00226C;
	--theme-color: #A92700;
	--white-color: #ffffff;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --light-bg: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #22356c 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size:1rem;
	font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
	color:var(--secondary-color);
}
main {
    position:relative;
	overflow: hidden;
}
/* Navigation Styles */
.header-topbar {
	min-height: 60px;
	display: flex;
	align-items: center;
	background-color: var(--secondary-color);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 16px;
  padding: 0 20px 0 20px;
}

.top-header-hindi {
    color: #ffff;
    letter-spacing: 1.2px;
    font-weight: 800;
    font-size: 18px;
    color: var(--theme-color);
    background: #fff;
    width: 50%;
    padding: 5px 5px 5px 20px;
}

.top-header-text {
	color: #ffff;
	letter-spacing: 1.2px;
	font-weight: 800;
	font-size: 23px;
}

.gigw-wrap{
	
	align-items: center;	
	position:relative;
}
.gigw-wrap:before {
    content: "";
    position: absolute;
    top: 0;
    left: 99%;
    background-color: #ffffff;
    height: 100%;
    width: 100vw;
}
.f-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	-webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(20% 0px, 100% 0, 100% 100%, 0% 100%);
	background-color: #ffffff;
	min-height: 60px;
	padding: 0 0 0 60px;
}
.f-icons .f-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	box-shadow: 0 0 0 1px var(--secondary-color) inset;
	transition: all 0.4s linear;
	cursor:pointer;
	outline:none;
	user-select: none; 
	-webkit-user-select: none; 
	-moz-user-select: none; 
	-ms-user-select: none;
	font-weight: 600;
}
.f-icons .f-icon+.f-icon{
	margin-left:10px;
}
.f-icon:hover {
  background-color: var(--secondary-color);
  color:#ffffff;
}

#navbarNav{
	flex-grow: inherit;
}
.navbar {
    background-color: #fff;
    padding: 0.725rem 0;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-md);
	position: sticky;
    top: 0; 
	transform: translateY(0);
	opacity: 1;
}

.transform {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.navbar.navbar-scrolled{
	position:fixed;
	width:100%;
	transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.navbar-brand img {
    transition: opacity 0.3s ease;
    width: auto;
}

.navbar-scrolled .navbar-brand img {
    opacity: 1;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 0.5rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link.active:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 80%;
    background: var(--primary-color);
}

.navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 0.25rem 0.5rem !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

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

.btn-login {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 0.6rem 2rem !important;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    color: #fff !important;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.dhr-text .ministry-health{
    font-size:0.52rem;
    color:#777
}

.min-w-150 {
  min-width: 250px !important;
}

.min-w-250 {
  min-width: 250px !important;
}

/* Hero Section */
.hero-section,
.hero-banner {
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* Carousel Styles */
.carousel-inner,
.carousel-item {
    height: 500px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

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

.carousel-indicators {
    bottom: 50px;
    display: none;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
}

.carousel-indicators button.active {
    background-color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

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

.hero-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	color: var(--white-color);
	
	background: linear-gradient(135deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-gradient {
    background: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--white-color);
    background-clip: unset;
}

.hero-subtitle {
    font-size: 1.50rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
	font-style: italic;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.marquee-wrap {
	position: relative;
	padding: 1rem 0;
	font-weight: bold;
}
.marquee-badge{
	margin-right: 10px;
	white-space: nowrap;
	color: #000;
	font-weight: bold;
	font-family: 'Raleway', sans-serif;
	font-size: 1.2rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-outline-light {
    border: 2px solid #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color) !important;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Services Section */
.services-section {
    background: var(--light-color);
}

.section-title {
    font-size: 1.825rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

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

/* Research Section */
.research-section {
    background: #fff;
}

.research-section .lead {
    font-size: 1.125rem;
    color: var(--text-light);
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.feature-item i {
    font-size: 1.25rem;
}

.research-image-wrapper {
    position: relative;
}

.research-image-wrapper img {
    width: 100%;
    height: auto;
}

.h-400px { 
    height: 400px !important; 
}

.research-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.research-badge i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

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

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.team-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-info .social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-info .social-links a {
    width: 35px;
    height: 35px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-info .social-links a:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-3px);
}

.card-hover-indicator {
    bottom: 15px;
    right: 40px;
    background: white;
    border-radius: 40px;
    padding: 0.25rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f3a57;
    box-shadow: 0 4px 8px rgba(0,0,0,0.02);
    border: 1px solid #e1eaf1;
}

.profile-card:hover .card-hover-indicator {
    opacity: 0.9;
    transform: translateY(0);
}

/*====== About and Gallery ======*/
.section{
	background: var(--light-color);
}
.subtitle {
	font-size: 1.1rem;
	color: var(--text-dark);
	margin: 0;
}


.marquee-container {
  width: 100%;
  height: 340px; 
  overflow: hidden; 
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  position: relative;
}

.marquee {
  list-style: none;
  padding-left: 20px;
  margin: 0;
  padding:0;
  display: inline-block;
  animation-duration: 10s; 
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.marquee-container:hover .marquee {
  animation-play-state: paused;
}

.marquee li {
	padding: 10px 10px;
	text-align: left;
	background: var(--light-color);
	transition: var(--transition);
	margin-bottom: 1rem;
	border-left: 4px solid var(--primary-color);
	border-radius: 6px 0 0 6px;
}

.marquee li:hover{
  transform: translateX(10px);
}

.marquee li p::first-letter {
  color: #ff6347;
  font-weight:500;
}

@keyframes scroll-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.gallery{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery li{
  list-style:none;
  border: 1px solid var(--secondary-color);
  padding: 6px;
  overflow:hidden;
}
.gallery li img{
	transition: var(--transition);
}
.gallery li img:hover{
	transform: scale(1.1);
}

.category-item h5{
	font-weight:500;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 3rem 0;
    color: #fff;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-section .btn-light {
    background: #fff;
    color: var(--primary-color);
    border: none;
}

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

.cta-section .btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.cta-section .btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 0 0 2rem;
}

.social-icons {
  margin-top: 20px;
}
.social-icons li a {
  display: block;
  height: 40px;
  width: 40px;
  color: #48bdc5;
  background: #fff;
  text-align: center;
  border-radius: 50%;
}
.social-icons li a i {
  line-height: 40px;
}

.gov-slider {
    background: var(--light-color);
    /* REDUCE PADDING: 4rem is too wide for mobile screens */
    padding: 2rem 0; 
    color: #fff;
    margin-bottom: 3.6rem;
    /* SAFETY: Ensure no overflow from this container */
    overflow: hidden; 
    width: 100%;
}

.owl-carousel .owl-item {
    background: var(--white-color);
    padding: 1rem;
    /* CHANGE: height: 100px can cause issues if the image is taller. 
       min-height is safer for flex centering. */
    min-height: 100px; 
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* IMPORTANT: Ensure padding doesn't add to the width */
    box-sizing: border-box; 
}

.owl-carousel .owl-item img {
    /* FIX: width: auto and max-width: 200px is good, 
       but add max-width: 100% so it never exceeds the phone screen */
    width: auto;
    max-width: 100%; 
    max-height: 100px; /* Keep logos consistent within the 100px item */
    object-fit: contain;
}
.gov-slider.bg-white .owl-carousel .owl-item{
	background: var(--light-color);
}

.footer-content {
    padding-bottom: 0;
}

.footer-logo-wrapper {
    margin-bottom: 1.5rem;
}

.footer-logo-wrapper img {
    /* Remove filter to show original logo colors */
    max-height: 100px;
    background-color: #fff;
    width: auto;
}

.footer-brand p {
	font-size: 1.2rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 400;
	letter-spacing: -0.5px;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: #fff;
    font-weight: 600;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    margin-right: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: #fff;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.breadcrumb-item {
    font-size: 1rem;
}

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

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "/";
    padding: 0 0.75rem;
}

/* Page Header Common Styles */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(0, 102, 204, 0.8) 100%), 
                url('../images/background/small-banner.jpg') center/cover;
    padding: 30px 0 30px;
    color: #fff;
    position: relative;
    margin-top: 0;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white-color);
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

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

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Map */
.footer-map {
    margin-top: 0.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    height: 250px;
}

.footer-map iframe {
    filter: brightness(0.8) contrast(1.1);
    transition: filter 0.3s ease;
    height: 100%;
}

.footer-map:hover iframe {
    filter: brightness(0.9) contrast(1.1);
}

/* Content Sections */
.content-section {
    position: relative;
    background: #fff;
}

.content-section.bg-light {
    background: var(--light-color);
}

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

.content-wrapper .lead {
    font-size: 1.105rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.8;
}

.content-wrapper p {
    color: var(--text-light);
    line-height: 1.8;
	text-align:justify;
}

.text-justify{
	text-align:justify;
}

/* Stats Inline */
.stats-inline {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stats-inline .stat-item {
    text-align: left;
}

.stats-inline .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stats-inline .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Service List */
.service-list {
    margin-top: 2rem;
}

.service-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    transition: var(--transition);
}

.bg-light .service-item {
    background: rgba(255, 255, 255, 0.8);
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.service-item i {
    font-size: 1.5rem;
    width: 40px;
    flex-shrink: 0;
}

.service-item h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

/* Research Areas */
.research-areas {
    margin-top: 2rem;
}

.research-item {
    padding: 1.25rem;
    background: var(--light-color);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.research-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    background: #fff;
}

.research-item h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.research-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

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

.rounded-custom {
    border-radius: 16px !important;
}

/* Responsive Design Updates */


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
	background: var(--primary-color);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.nowrap {
    white-space: nowrap;
}

.mega-menu {
position: static;
}

.mega-menu .dropdown-menu {
width: 100%;
left: 0;
right: 0;
border-radius: 8px;
}

.mega-title {
font-weight: 600;
margin-bottom: 12px;
color: #0d6efd;
}

.mega-links {
list-style: none;
padding: 0;
margin: 0;
}

.mega-links li {
margin-bottom: 6px;
}

.mega-links a {
text-decoration: none;
color: #444;
padding: 5px 0;
display: block;
transition: all 0.3s ease;
}

.mega-links a:hover {
color: #0d6efd;
padding-left: 6px;
}

.dropdown-menu {
animation: fadeDown 0.3s ease;
}

@keyframes fadeDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Utility Classes */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.project-type-toggle {
    display: flex;
    justify-content: center;
    margin: 2.8rem 0 2rem;
}

.toggle-group {
    background: #eef3f9;
    border-radius: 80px;
    padding: 0.4rem;
    display: inline-flex;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.04), 0 2px 4px rgba(0,30,60,0.05);
}

.toggle-btn {
    border: none;
    padding: 0.75rem 2.2rem;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    color: #3e607d;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-btn i {
    font-size: 1rem;
    color: #517a9b;
}

.toggle-btn.active {
    background: white;
    color: #1c3e5c;
    box-shadow: 0 4px 8px rgba(0,40,70,0.1);
}

.toggle-btn.active i {
    color: #1e4b73;
}

.toggle-btn .count {
    background: #dae5f0;
    color: #244c6e;
    border-radius: 40px;
    padding: 0.15rem 0.7rem;
    font-size: 0.9rem;
    margin-left: 6px;
}

.toggle-btn.active .count {
    background: #1c3e5c;
    color: white;
}

.table-width {
    width:85%; 
    margin: 0 auto;
}

table td {
    font-size: 1.03rem;
}

/* CTA / contact strip */
.contact-strip {
    background: linear-gradient(105deg, #00226C 0%, #1F81BE 100%);
    border-radius: 2.5rem;
    padding: 3rem 2.5rem;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0 1rem;
}

.contact-strip h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #fff;
}

.contact-strip p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-download {
    background-color: #1f5f92;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid #1f5f92;
    text-decoration: none;
}

.btn-download:hover {
    background-color: #0f4370;
}

a {
    text-decoration: none !important;
}

/* What's new css */
.floating-notification {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 1000;
}

.contact-us {
  position: fixed;
  top: 30px;
  right: 10px;
  z-index: 1000;
}

.notification-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  background-color: #1A1A2E;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  position: relative;
  transition: transform 0.2s;
}

.notification-button:hover {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4757;
  color: white;
  border-radius: 50%;
  padding: 3px 8px;
  font-size: 12px;
}

.notification-popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  max-height: 500px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  overflow: hidden;
}

.notification-popup h3 {
    color: #fff;
}

.popup-header {
  background-color: #1A1A2E;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-header h3 {
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.popup-content {
  padding: 15px;
  max-height: 400px;
  overflow-y: auto;
}

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

.notification-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-date {
  font-size: 12px;
  color: #666;
  display: block;
  margin-bottom: 5px;
}

.fancybox-content {
    height: 1026px !important;
}