/*====================================================

AMROS PROJECTS LLP
Premium Corporate Website
Style V2

======================================================*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

/*====================================================

ROOT

======================================================*/

:root {
  --primary: #0b3c5d;
  --primary-dark: #061d2d;
  --secondary: #d97706;
  --accent-saffron: #ff9933;
  --accent-green: #138808;
  --dark: #061d2d;
  --black: #0f172a;
  --text: #334155;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #dce3eb;
  --gradient: linear-gradient(135deg, #0b3c5d, #061d2d);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --radius: 6px;
}

/*====================================================

RESET

======================================================*/

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;

  font-size: 16px;

  color: var(--text);

  background: #fff;

  overflow-x: hidden;

  line-height: 1.8;
}

img {
  max-width: 100%;

  display: block;
}

ul {
  padding: 0;

  margin: 0;

  list-style: none;
}

a {
  text-decoration: none;

  transition: 0.4s;
}

section {
  padding: 60px 0;

  position: relative;
}

.container {
  max-width: 1320px;
}

/*====================================================

TYPOGRAPHY

======================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;

  font-weight: 800;

  color: var(--dark);

  line-height: 1.2;
}

.section-heading span {
  display: inline-block;

  padding: 10px 22px;

  background: #eaf5ff;

  border-radius: 50px;

  color: var(--primary);

  font-weight: 700;

  letter-spacing: 1px;

  font-size: 13px;

  margin-bottom: 16px;

  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 38px;

  margin-bottom: 22px;
}

.section-heading p {
  font-size: 17px;

  max-width: 650px;
}
.hero-sec-button a{
  color: #000 ;
text-decoration: none;
}
.contact-connect a{
  font-size: 16px;
    line-height: 1.9;
    color: #667085;
    text-decoration: none;
}
.contact-card:hover a{
  color:#fff;
}


/*====================================================

BUTTONS

======================================================*/

.btn-primary-custom {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 14px 40px;

  background: var(--gradient);

  color: #fff;

  border: 2px solid #0468c5;

  border-radius: 60px;

  font-weight: 700;

  box-shadow: var(--shadow);

  transition: 0.4s;
}

.btn-primary-custom:hover {
  transform: translateY(-5px);

  color: #fff;
}

.btn-outline-custom {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 14px 40px;

  border: 2px solid #fff;

  color: #fff;

  border-radius: 60px;

  margin-left: 15px;

  font-weight: 600;

  transition: 0.4s;
}

.btn-outline-custom:hover {
  background: #fff;

  color: var(--dark);
}

/*====================================================

LOADER

======================================================*/

.loader {
  position: fixed;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 999999;
}

.loader-ring {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  border: 6px solid #e8eef5;

  border-top: 6px solid var(--primary);

  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/*====================================================

TOPBAR

======================================================*/

.topbar {
  background: var(--dark);

  padding: 8px 0;

  color: #fff;

  font-size: 14px;
}

.top-contact {
  display: flex;

  gap: 35px;
}

.top-contact li {
  display: flex;

  align-items: center;

  gap: 8px;
}

.top-right {
  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 30px;
}

.social {
  display: flex;

  gap: 10px;
}

.social a {
  width: 35px;

  height: 35px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: #fff;
}

.social a:hover {
  background: var(--primary);
}

/*====================================================

NAVBAR

======================================================*/

.amros-navbar {
  padding: 20px 0;

  transition: 0.4s;

  background: transparent;

  top: 49px;
}

.amros-navbar.scrolled {
  background: #fff;

  padding: 12px 0;

  box-shadow: var(--shadow);

  top: 0;
}

.navbar-brand img {
  height: 60px;
}

.navbar-nav {
  gap: 8px;
}

.nav-link {
  font-weight: 600;

  color: #fff;

  position: relative;
}

.amros-navbar.scrolled .nav-link {
  color: var(--dark);
}

.nav-link:hover{
    color: var(--primary) !important;
}

.nav-link.active{
    color: var(--primary) !important;
}

/* .nav-link::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0px;

  width: 0;

  height: 2px;

  background: var(--primary);

  transition: 0.4s;
} */

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.dropdown-menu {
  border: none;

  /* padding: 20px; */

  border-radius: 20px;

  box-shadow: var(--shadow-lg);
}

.dropdown-menu a {
  display: block;

  padding: 3px 10px;

  color: var(--dark);

  border-radius: 12px;
}

.dropdown-menu a:hover {
  background: #f5f9fc;
}

/* Hide default Bootstrap caret */
.amros-navbar .dropdown-toggle::after {
  display: none !important;
}


.dropdown-toggle::after{
  display: none !important;
}




/* Custom chevron rotate transition */
.amros-navbar .nav-link .bi-chevron-down {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Dropdown Hover behavior for screens >= 1200px (Desktop) */
@media (min-width: 1200px) {
  .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-nav .nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-item.dropdown:hover .dropdown-toggle .bi-chevron-down {
    transform: rotate(180deg);
  }
}

/* Rotate chevron when dropdown is open on click (primarily mobile/tablet) */
.navbar-nav .nav-item.dropdown .dropdown-toggle.show .bi-chevron-down {
  transform: rotate(180deg);
}

.quote-btn {
  padding: 10px 15px;

  background: var(--gradient);

  color: #fff;

  border-radius: 60px;

  font-weight: 700;

 

}

.quote-btn:hover {
  color: #fff;

  transform: translateY(-3px);
}

/*====================================================

HERO

======================================================*/

.hero {
  position: relative;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(8, 28, 52, 0.92),
    rgba(8, 28, 52, 0.5)
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  color: #fff;
}

.hero-tag {
  display: inline-block;
  padding: 8px 24px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  border-radius: 60px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 30px !important;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero h1 span {
  color: #57b4ff;
}

.hero p {
  font-size: 16px !important;
  color: #e6eef7;
  max-width: 600px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/*====================================================

HERO RIGHT
======================================================*/

.hero-right {
  position: relative;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.hero-main-image {
  width: 100%;
  max-width: 440px;
  max-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  transition: 0.4s;
}

.floating-card:hover {
  transform: translateY(-6px);
}

.floating-card img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
}

.floating-card h5 {
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--dark);
}

.floating-card span {
  font-size: 12px;
  color: var(--text);
}

.card-one {
  left: 0;
  top: 5%;
}

.card-two {
  right: 0;
  bottom: 5%;
}

/* .card-three {
  left: 60px;

  bottom: 40px;
} */

/*====================================================

HERO MINI COUNTER

======================================================*/

.hero-bottom {
  display: flex;

  gap: 40px;

  margin-top: 20px;
}

.hero-mini h3 {
  font-size: 32px;

  color: #fff;

  margin-bottom: 5px;
}

.hero-mini span {
  font-size: 14px;

  letter-spacing: 1px;

  color: #dce9f8;

  text-transform: uppercase;
}

/*====================================================

HERO COUNTER SECTION

======================================================*/

.hero-counter-section {
  background: var(--dark);

  padding: 80px 0;

  position: relative;

  z-index: 10;
}

/*====================================================

SCROLL INDICATOR

======================================================*/

.scroll-indicator {
  position: absolute;

  left: 50%;

  bottom: 30px;

  transform: translateX(-50%);

  z-index: 20;
}

.scroll-indicator span {
  display: block;

  width: 34px;

  height: 56px;

  border: 2px solid rgba(255, 255, 255, 0.7);

  border-radius: 50px;

  position: relative;
}

.scroll-indicator span::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 10px;

  width: 8px;

  height: 8px;

  background: #fff;

  border-radius: 50%;

  transform: translateX(-50%);

  animation: scroll 1.6s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;

    transform: translate(-50%, 0);
  }

  100% {
    opacity: 0;

    transform: translate(-50%, 22px);
  }
}

/*====================================================

ABOUT

======================================================*/

.about-section {
  background: #fff;
}

.about-images {
  position: relative;

  padding-right: 70px;
}

.about-images img {
  border-radius: 32px;

  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;

  right: 0;

  bottom: 50px;

  background: #fff;

  padding: 30px;

  border-radius: 24px;

  box-shadow: var(--shadow);

  text-align: center;

  width: 220px;
}

.experience-badge h2 {
  font-size: 44px;

  margin-bottom: 5px;

  color: var(--primary);
}

.experience-badge span {
  font-weight: 600;

  color: var(--text);
}

.about-features {
  margin-top: 45px;
}

.feature-box {
  display: flex;

  flex-direction: column;

  gap: 16px;

  padding: 24px;

  border-radius: 22px;

  background: #fff;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);

  height: 100%;

  transition: 0.35s;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-header {
  display: flex;

  align-items: center;

  gap: 16px;
}

.feature-icon {
  width: 50px;

  height: 50px;

  background: var(--gradient);

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;
}

.feature-icon i {
  font-size: 20px;

  color: #fff;
}

.feature-box h5 {
  font-size: 20px;

  margin: 0;
}

.feature-box p {
  font-size: 15px;

  margin: 0;
}

.about-btn {
  margin-top: 45px;
}

/*====================================================

GROUP SECTION

======================================================*/

.group-section {
  background: var(--light);
}

.group-gallery img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 28px;

  box-shadow: var(--shadow);

  transition: 0.5s;
}

.group-gallery img:hover {
  transform: scale(1.03);
}

.group-list {
  margin-top: 24px;
}

.group-list li {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 4px;

  font-weight: 600;
}

.group-list i {
  color: var(--primary);

  font-size: 20px;
}

/*====================================================

DIVISION SECTION

======================================================*/

.division-section {
  background: #fff;
}

.division-card {
  background: #fff;

  border-radius: 28px;

  overflow: hidden;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);

  transition: 0.4s;

  height: 100%;
}

.division-card:hover {
  transform: translateY(-12px);
}

.division-image {
  overflow: hidden;
}

.division-image img {
  width: 100%;

  height: 250px;

  object-fit: cover;

  transition: 0.6s;
}
.division-card:hover img {
  transform: scale(1.1);
}

.division-content {
  padding: 20px;
}

.division-content span {
  display: inline-block;

  font-size: 40px;

  font-weight: 800;

  color: #005baa;


}

.division-content h4 {
  font-size: 22px;

  margin-bottom: 10px;
}

.division-content p {
  margin: 0;
}

/*====================================================

PRODUCT CATEGORY

======================================================*/

.product-category {
  background: #f8fbfd;
}

.product-box {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  height: 460px;

  box-shadow: var(--shadow);
}

.product-box img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

.product-box:hover img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  padding: 35px;

  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.product-overlay h3 {
  color: #fff;

  font-size: 22px;

  margin-bottom: 15px;
}

.product-overlay a {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 14px 30px;

  border-radius: 50px;

  background: #fff;

  color: var(--primary);

  font-weight: 700;

  transition: 0.35s;
}

.product-overlay a:hover {
  background: var(--primary);

  color: #fff;
}

/*====================================================

APPLICATIONS

======================================================*/

.applications-section {
  background: #fff;
}

.application-card {
  position: relative;

  overflow: hidden;

  border-radius: 28px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);

  transition: 0.4s;

  height: 100%;

  background: #fff;
}

.application-card:hover {
  transform: translateY(-10px);
}

.application-card img {
  width: 100%;

  height: 260px;

  object-fit: cover;

  transition: 0.6s;
}

.application-card:hover img {
  transform: scale(1.08);
}

.application-content {
  padding: 15px;
}

.application-content i {
  width: 70px;

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 20px;

  background: var(--gradient);

  font-size: 22px;

  color: #fff;

  margin-bottom: 10px;
}

.application-content h4 {
  font-size: 20px;

  margin-bottom: 15px;
}

.application-content p {
  margin: 0;

  color: var(--text);
}

/*====================================================

WHY AMROS

======================================================*/

.why-amros {
  background: #f7fafd;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;

  border-radius: 32px;

  box-shadow: var(--shadow-lg);
}

.why-list {
  margin-top: 40px;
}

.why-item {
  display: flex;

  align-items: flex-start;

  gap: 22px;

  padding: 22px;

  border-radius: 22px;

  background: #fff;

  margin-bottom: 20px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);

  transition: 0.35s;
}

.why-item:hover {
  transform: translateX(8px);
}

.why-icon {
  width: 65px;

  height: 65px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--gradient);

  border-radius: 18px;

  flex-shrink: 0;
}

.why-icon i {
  font-size: 20px;

  color: #fff;
}

.why-item h5 {
  font-size: 21px;

  margin-bottom: 8px;
}

.why-item p {
  margin: 0;
}

/*====================================================

MANUFACTURING

======================================================*/

.manufacturing {
  background: #fff;
}

.manufacturing-gallery img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 24px;

  box-shadow: var(--shadow);

  transition: 0.5s;
}

.manufacturing-gallery img:hover {
  transform: scale(1.03);
}

.manufacturing-counter {
  display: flex;

  gap: 25px;

  margin-top: 45px;
}

.counter-box {
  flex: 1;

  background: var(--gradient);

  padding: 35px;

  border-radius: 24px;

  color: #fff;

  text-align: center;

  box-shadow: var(--shadow);
}

.counter-box h2 {
  font-size: 40px;

  margin-bottom: 8px;

  color: #fff;
}

.counter-box span {
  font-size: 15px;

  font-weight: 600;

  letter-spacing: 0.5px;
}

/*====================================================

QUALITY

======================================================*/

.quality-section {
  background: var(--light);
}

.quality-card {
  background: #fff;

  padding: 45px 25px;

  border-radius: 24px;

  text-align: center;

  transition: 0.35s;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);

  height: 100%;
}

.quality-card:hover {
  transform: translateY(-10px);

  background: var(--gradient);
}

.quality-card:hover i,
.quality-card:hover h4 {
  color: #fff;
}

.quality-card i {
  font-size: 58px;

  color: var(--primary);

  margin-bottom: 22px;

  transition: 0.35s;
}

.quality-card h4 {
  font-size: 22px;

  margin: 0;

  transition: 0.35s;
}

/*====================================================

GLOBAL

======================================================*/

.global-section {
  background: #fff;
}

.map-image img {
  width: 100%;

  border-radius: 30px;

  box-shadow: var(--shadow-lg);
}

.country-list {
  display: flex;

  flex-wrap: wrap;

  gap: 16px;

  margin-top: 35px;
}

.country-list span {
  padding: 14px 22px;

  background: #f4f8fc;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.35s;

  border: 1px solid var(--border);
}

.country-list span:hover {
  background: var(--primary);

  color: #fff;

  transform: translateY(-5px);
}

/*====================================================

DOWNLOAD SECTION

======================================================*/

.download-section {
  background: #f8fbfd;
}

.download-card {
  background: #fff;

  padding: 20px 20px;

  border-radius: 28px;

  text-align: center;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);

  transition: 0.35s;

  height: 100%;
}

.download-card:hover {
  transform: translateY(-12px);
}

.download-card i {
  font-size: 17px;

  color: #e53935;

  /* margin-bottom: 25px; */
}

.download-card h4 {
  font-size: 20px;

  margin-bottom: 20px;
}

.download-card a {
  display: inline-flex;

  padding: 10px 30px;

  border-radius: 50px;

  background: var(--gradient);

  color: #fff;

  font-weight: 700;
}

.download-card a:hover {
  opacity: 0.9;

  color: #fff;
}

/*====================================================

CTA

======================================================*/

.cta-section {
  background: #fff;

  
}

.cta-box {
  background: var(--gradient);

  border-radius: 36px;

  padding: 70px;

  color: #fff;

  overflow: hidden;

  position: relative;

  box-shadow: var(--shadow-lg);
}

.cta-box::before {
  content: "";

  position: absolute;

  width: 320px;

  height: 320px;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  top: -120px;

  right: -120px;
}

.cta-box::after {
  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  background: rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  bottom: -80px;

  left: -80px;
}

.cta-box > * {
  position: relative;

  z-index: 2;
}

.cta-box h2 {
  font-size: 28px;

  color: #fff;

  margin-bottom: 15px;
}

.cta-box p {
  font-size: 16px;

  margin: 0;

  color: #eaf4ff;
}

.cta-box .btn-primary-custom {
  background: #fff;

  color: var(--primary);

  box-shadow: none;
}

.cta-box .btn-primary-custom:hover {
  background: #f4f8fc;
}

/*====================================================

FOOTER

======================================================*/

.footer {
  background: #081c34;

  padding: 80px 0 35px;

  position: relative;

  overflow: hidden;

  color: #fff;
}

.footer::before {
  content: "";

  position: absolute;

  right: -180px;

  top: -180px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);
}

.footer::after {
  content: "";

  position: absolute;

  left: -150px;

  bottom: -150px;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.03);
}

.footer .container {
  position: relative;

  z-index: 2;
}

.footer-logo {
  height: 65px;

  margin-bottom: 30px;
}

.footer p {
  color: #bfd2e4;

  line-height: 1.9;

  margin-bottom: 25px;
}

.footer h4 {
  font-size: 18px;

  color: #fff;

  margin-bottom: 28px;
}

.footer ul {
  padding: 0;

  margin: 0;

  list-style: none;
}

.footer ul li {
  margin-bottom: 16px;
}

.footer ul li a {
  color: #c7d7e8;

  transition: 0.35s;
}

.footer ul li a:hover {
  color: #fff;

  padding-left: 8px;
}

.footer ul li i {
  margin-right: 10px;

  color: #57b4ff;
}

.footer-social {
  display: flex;

  gap: 14px;

  margin-top: 20px;
}

.footer-social a {
  width: 46px;

  height: 46px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  color: #fff;

  transition: 0.35s;
}

.footer-social a:hover {
  background: var(--gradient);

  transform: translateY(-5px);
}

/*====================================================

FOOTER CONTACT ADDRESSES (COMPACT)

======================================================*/

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-address-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: #c7d7e8;
}

.footer-address-item i {
  color: #57b4ff;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-address-item strong {
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  margin-right: 3px;
  font-size: 16px;
}

.footer-address-item span {
  color: #c7d7e8;
  font-size: 16px;
}

.footer-contact-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-meta a {
  color: #c7d7e8;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.35s;
}

.footer-contact-meta a:hover {
  color: #ffffff;
}

.footer-contact-meta i {
  color: #57b4ff;
  font-size: 14px;
}

/*====================================================

COPYRIGHT

======================================================*/

.footer hr {
  border-color: rgba(255, 255, 255, 0.08);

  margin: 60px 0 25px;
}

.copyright {
  color: #afc3d7;

  font-size: 15px;
}

.copyright a {
  color: #57b4ff;
}

/*====================================================

BACK TO TOP

======================================================*/

.back-top {
  position: fixed;

  right: 30px;

  bottom: 30px;

  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--gradient);

  border-radius: 50%;

  font-size: 22px;

  color: #fff;

  cursor: pointer;

  box-shadow: var(--shadow-lg);

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  transition: 0.4s;

  z-index: 999;
}

.back-top.show {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-6px);

  color: #fff;
}

/*====================================================

WHATSAPP

======================================================*/

.whatsapp-btn {
  position: fixed;

  left: 30px;

  bottom: 30px;

  width: 62px;

  height: 62px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #25d366;

  color: #fff;

  font-size: 22px;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);

  z-index: 999;

  transition: 0.35s;
}

.whatsapp-btn:hover {
  transform: scale(1.08);

  color: #fff;
}

/*====================================================

CUSTOM SCROLLBAR

======================================================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #edf3f8;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);

  border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
  background: #004785;
}

/*====================================================

COMMON UTILITIES

======================================================*/

.radius-20 {
  border-radius: 20px;
}

.radius-30 {
  border-radius: 30px;
}

.shadow-primary {
  box-shadow: var(--shadow);
}

.shadow-large {
  box-shadow: var(--shadow-lg);
}

.bg-light {
  background: #f8fbfd;
}

.text-primary {
  color: var(--primary) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.overflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
}

.w-fit {
  width: fit-content;
}

.section-space {
  padding: 120px 0;
}

/*====================================================

IMAGE HOVER

======================================================*/

.image-hover {
  overflow: hidden;

  border-radius: 28px;
}

.image-hover img {
  transition: 0.6s;
}

.image-hover:hover img {
  transform: scale(1.08);
}

/*====================================================

GRADIENT TEXT

======================================================*/

.gradient-text {
  background: var(--gradient);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;
}

/*====================================================

GLASS CARD

======================================================*/

.glass {
  background: rgba(255, 255, 255, 0.14);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.18);
}

/*====================================================

FLOAT ANIMATION

======================================================*/

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.float {
  animation: float 6s ease-in-out infinite;
}

/*====================================================

ROTATE

======================================================*/

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.rotate {
  animation: rotate 18s linear infinite;
}

/*====================================================

FADE UP

======================================================*/

@keyframes fadeUp {
  0% {
    opacity: 0;

    transform: translateY(40px);
  }

  100% {
    opacity: 1;

    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

/*====================================================

PULSE

======================================================*/

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 3s infinite;
}

/*====================================================

SELECTION

======================================================*/

::selection {
  background: var(--primary);

  color: #fff;
}

/*====================================================

FORM ELEMENTS

======================================================*/

input,
textarea,
select {
  width: 100%;

  padding: 16px 20px;

  border: 1px solid var(--border);

  border-radius: 16px;

  font-size: 15px;

  transition: 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;

  border-color: var(--primary);

  box-shadow: 0 0 0 4px rgba(0, 91, 170, 0.12);
}

/*====================================================

PLACEHOLDER

======================================================*/

::placeholder {
  color: #98a8b8;
}

/*====================================================

BOOTSTRAP OVERRIDES

======================================================*/

.btn:focus,
.form-control:focus {
  box-shadow: none;
}

.navbar-toggler {
  border: none;

  box-shadow: none !important;
}

.navbar-toggler i {
  font-size: 34px;

  color: #fff;
}

.amros-navbar.scrolled .navbar-toggler i {
  color: var(--dark);
}

/*=========================================
PAGE BANNER & BREADCRUMBS
=========================================*/

.page-banner {
  position: relative;

  height: 520px;

  display: flex;

  align-items: center;

  overflow: hidden;

  padding: 0;
}

.page-banner-bg {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  z-index: 1;
}

.page-banner-bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.page-overlay {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    90deg,
    rgba(8, 28, 52, 0.92),
    rgba(8, 28, 52, 0.6)
  );

  z-index: 2;
}

.page-content {
  position: relative;

  z-index: 5;

  padding-top: 90px;

  color: #fff;
}

.page-content span {
  display: inline-block;

  padding: 8px 24px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(20px);

  border-radius: 50px;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 12px;
}

.page-content h1 {
  font-size: 44px;

  font-weight: 800;

  color: #fff;

  margin-bottom: 25px;

  line-height: 1.15;
}

.breadcrumb-list {
  display: flex;

  align-items: center;

  gap: 14px;

  padding: 0;

  margin: 0;

  list-style: none;
}

.breadcrumb-list li {
  color: #fff;

  font-size: 15px;

  font-weight: 500;
}

.breadcrumb-list a {
  color: #57b4ff;

  font-weight: 600;

  transition: 0.35s;
}

.breadcrumb-list a:hover {
  color: #fff;
}

.page-banner img {
  transition: 0.5s;
}

.page-banner:hover img {
  transform: scale(1.05);
}

/*====================================================

GOVERNMENT & OFFICIAL ENTERPRISE DESIGN SYSTEM

======================================================*/

/* 1. Tricolor Top Ribbon */
.gov-top-ribbon {
  display: flex;
  height: 4px;
  width: 100%;
}
.gov-top-ribbon .ribbon-saffron { flex: 1; background-color: #FF9933; }
.gov-top-ribbon .ribbon-white { flex: 1; background-color: #FFFFFF; }
.gov-top-ribbon .ribbon-green { flex: 1; background-color: #138808; }

/* 2. Top Utility Bar */
.gov-topbar {
  background: #061D2D;
  color: #E2E8F0;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.gov-top-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gov-top-contact li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #CBD5E1;
}
.gov-top-contact i {
  color: #F59E0B;
}
.gov-lang-select a {
  color: #CBD5E1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.gov-lang-select a.active, .gov-lang-select a:hover {
  color: #F59E0B;
  font-weight: 700;
}
.gov-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.gov-accessibility {
  display: flex;
  align-items: center;
  gap: 10px;
}
.access-label a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 12px;
}
.access-label a:hover {
  color: #FFFFFF;
}
.font-resizer {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.font-resizer button {
  background: transparent;
  border: none;
  color: #FFF;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.font-resizer button:last-child {
  border-right: none;
}
.font-resizer button:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #F59E0B;
}
.gov-theme-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.gov-theme-toggle:hover {
  background: #F59E0B;
  color: #000;
}
.gov-top-search {
  display: flex;
  align-items: center;
  position: relative;
}
.gov-top-search input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 3px 30px 3px 10px;
  color: #FFF;
  font-size: 12px;
  width: 180px;
  transition: width 0.3s ease;
}
.gov-top-search input::placeholder {
  color: #94A3B8;
}
.gov-top-search input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-color: #F59E0B;
  width: 230px;
}
.gov-top-search button {
  position: absolute;
  right: 6px;
  background: transparent;
  border: none;
  color: #CBD5E1;
  font-size: 12px;
  cursor: pointer;
}
.gov-top-search button:hover {
  color: #F59E0B;
}

/* 3. Main Branding Header */
.gov-brand-header {
  background: #FFFFFF;
  padding: 16px 0;
  border-bottom: 1px solid #DCE3EB;
}
.gov-branding-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}
.gov-main-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 3px;
}
.gov-title-block {
  display: flex;
  flex-direction: column;
}
.gov-title-en {
  font-size: 22px;
  font-weight: 800;
  color: #0B3C5D;
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0.5px;
}
.gov-title-hi {
  font-size: 17px;
  font-weight: 700;
  color: #D97706;
  margin: 2px 0 0 0;
  line-height: 1.15;
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.gov-subtitle {
  font-size: 12px;
  color: #64748B;
  margin: 4px 0 0 0;
  font-weight: 500;
}
.gov-header-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.gov-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #0B3C5D;
  line-height: 1.2;
}
.gov-badge-item i {
  font-size: 18px;
  color: #0B3C5D;
}
.gov-badge-item.badge-accent {
  border-color: #FCD34D;
  background: #FFFBEB;
}
.gov-badge-item.badge-accent i {
  color: #D97706;
}

/* 4. Official Navbar */
.gov-navbar {
  background: #0B3C5D;
  padding: 0;
  border-bottom: 3px solid #D97706;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.gov-navbar .navbar-nav .nav-item .nav-link {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 13.5px;
  padding: 14px 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.gov-navbar .navbar-nav .nav-item:first-child .nav-link {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.gov-navbar .navbar-nav .nav-item .nav-link:hover,
.gov-navbar .navbar-nav .nav-item .nav-link.active {
  background: #061D2D;
  color: #fff !important;
}
.gov-navbar .dropdown-menu {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  margin-top: 0;
}
.gov-navbar .dropdown-item {
  color: #1E293B;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 18px;
  transition: all 0.2s;
}
.gov-navbar .dropdown-item:hover,
.gov-navbar .dropdown-item.active {
  background: #F1F5F9;
  color: #0B3C5D;
  font-weight: 700;
  padding-left: 22px;
}
.gov-btn-tender {
  background: #D97706;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s;
}
.gov-btn-tender:hover {
  background: #B45309;
}
.navbar-toggler-text {
  color: #FFF;
  font-weight: 700;
  font-size: 14px;
}

/* 5. Ticker Marquee Bar */
.gov-ticker-bar {
  background: #F1F5F9;
  border-bottom: 1px solid #CBD5E1;
  padding: 6px 0;
}
.gov-ticker-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gov-ticker-badge {
  background: #0B3C5D;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.gov-ticker-content {
  flex: 1;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.gov-marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeAnimation 30s linear infinite;
}
.gov-marquee span {
  font-size: 13px;
  color: #1E293B;
}
@keyframes marqueeAnimation {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.ticker-pause-btn {
  background: #CBD5E1;
  border: none;
  color: #0F172A;
  border-radius: 3px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
}
.ticker-pause-btn:hover {
  background: #94A3B8;
}

/* 6. Quick Service Portals Grid (Clean & Structured) */
.gov-portal-card {
  background: #FFFFFF;
  border: 1px solid #DCE3EB;
  border-top: 4px solid #0B3C5D;
  border-radius: 6px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.gov-portal-card:hover {
  border-top-color: #D97706;
  box-shadow: 0 8px 24px rgba(11, 60, 93, 0.1);
  transform: translateY(-3px);
}
.gov-portal-icon {
  width: 50px;
  height: 50px;
  background: #EFF6FF;
  color: #0B3C5D;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  border: 1px solid #DBEAFE;
}
.gov-portal-card:hover .gov-portal-icon {
  background: #FEF3C7;
  color: #D97706;
  border-color: #FDE68A;
}
.gov-portal-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0B3C5D;
  margin-bottom: 8px;
}
.gov-portal-card p {
  font-size: 13.5px;
  color: #475569;
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.6;
}
.gov-portal-link {
  font-size: 13px;
  font-weight: 700;
  color: #0B3C5D;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.gov-portal-link:hover {
  color: #D97706;
}

/* 7. Government Table Styling */
.table-gov {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #DCE3EB;
  font-size: 13.5px;
}
.table-gov thead th {
  background: #0B3C5D;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border: 1px solid #082C46;
}
.table-gov tbody td {
  padding: 12px 16px;
  border: 1px solid #E2E8F0;
  color: #334155;
  vertical-align: middle;
}
.table-gov tbody tr:nth-child(even) {
  background-color: #F8FAFC;
}
.table-gov tbody tr:hover {
  background-color: #F1F5F9;
}
.gov-status-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.status-active { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.status-open { background: #DBEAFE; color: #1E40AF; border: 1px solid #BFDBFE; }
.status-closed { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }

/* 8. Government Footer Styling */
.gov-footer {
  background: #061D2D;
  color: #CBD5E1;
  font-size: 13.5px;
}
.gov-footer-main {
  padding: 50px 0 35px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.gov-footer-logo {
  height: 55px;
  width: auto;
  border-radius: 4px;
  background: #FFF;
  padding: 3px;
  margin-bottom: 12px;
}
.gov-footer-brand h5 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.gov-footer-desc {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.6;
}
.gov-iso-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FCD34D;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 10px;
}
.gov-footer-heading {
  color: #F59E0B;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}
.gov-footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: #F59E0B;
}
.gov-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gov-footer-links li {
  margin-bottom: 8px;
}
.gov-footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}
.gov-footer-links a:hover {
  color: #F59E0B;
  padding-left: 4px;
}
.gov-address-box {
  display: flex;
  gap: 10px;
  font-size: 12.5px;
  margin-bottom: 10px;
  color: #94A3B8;
}
.gov-address-box i {
  color: #F59E0B;
  font-size: 14px;
  margin-top: 2px;
}
.gov-address-box strong {
  color: #FFFFFF;
  display: block;
}
.gov-contact-meta a {
  color: #FCD34D;
  text-decoration: none;
  font-size: 13px;
  margin-right: 14px;
}
.gov-contact-meta a:hover {
  color: #FFFFFF;
}
.gov-policy-strip {
  background: #041420;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.gov-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gov-policy-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 12px;
}
.gov-policy-links a:hover {
  color: #FFFFFF;
}
.gov-social-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #94A3B8;
  font-size: 12px;
}
.gov-social-links a {
  color: #CBD5E1;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.gov-social-links a:hover {
  background: #F59E0B;
  color: #000;
}
.gov-badges-bar {
  background: #09253A;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.gov-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: #E2E8F0;
}
.gov-copyright-bar {
  background: #020B12;
  padding: 14px 0;
  color: #94A3B8;
  font-size: 12px;
}
.gov-visitor-count {
  font-size: 12px;
  color: #CBD5E1;
}

/* 9. Accessibility High Contrast Mode */
body.gov-high-contrast {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}
body.gov-high-contrast .gov-topbar,
body.gov-high-contrast .gov-brand-header,
body.gov-high-contrast .gov-navbar,
body.gov-high-contrast .gov-ticker-bar,
body.gov-high-contrast .gov-portal-card,
body.gov-high-contrast .gov-footer,
body.gov-high-contrast section,
body.gov-high-contrast nav,
body.gov-high-contrast div {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}
body.gov-high-contrast a,
body.gov-high-contrast button {
  color: #FFFF00 !important;
}
body.gov-high-contrast h1,
body.gov-high-contrast h2,
body.gov-high-contrast h3,
body.gov-high-contrast h4,
body.gov-high-contrast h5,
body.gov-high-contrast h6 {
  color: #00FFFF !important;
}

/* 10. Clean Micro-Animations & Government Product Category Cards */
.gov-product-cat-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  border: 1px solid #DCE3EB !important;
}

.gov-product-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(11, 60, 93, 0.12) !important;
  border-color: #0B3C5D !important;
}

.gov-product-cat-card .transition-img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gov-product-cat-card:hover .transition-img {
  transform: scale(1.06);
}

/* Subtle Accordion Customization for Government Theme */
.accordion-button:not(.collapsed) {
  background-color: #EFF6FF !important;
  color: #0B3C5D !important;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #0B3C5D;
}

/* Topbar Social Links */
.gov-top-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gov-top-social a {
  color: #CBD5E1;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.gov-top-social a:hover {
  color: #F59E0B;
  transform: translateY(-1px);
}

/*====================================================

INDIAN TIRANGA UNIFIED COLOR SYSTEM & CLEAN DESIGN

======================================================*/

/* 1. Global Color Enforcement */
:root {
  --primary: #0B3C5D;          /* Ashoka Navy Blue */
  --primary-dark: #061D2D;     /* Dark Header Navy */
  --secondary: #D97706;        /* Tiranga Saffron Accent */
  --accent-saffron: #FF9933;   /* Pure Saffron */
  --accent-green: #138808;     /* Tiranga India Green */
  --accent-green-dark: #166534;/* Deep Forest Green */
  --dark: #061D2D;
  --text: #334155;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --border: #DCE3EB;
}

/* 2. Global Section Headings & Badges */
.section-heading span,
.section-tag {
  background: #FFFBEB !important;
  color: #D97706 !important;
  border: 1px solid #FCD34D !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 6px 14px !important;
  border-radius: 4px !important;
}

.section-heading h2,
.section-heading h3 {
  color: #0B3C5D !important;
  font-weight: 800 !important;
}

/* 3. Global Buttons (Tiranga Navy & Saffron) */
.btn-primary-custom,
.btn-primary,
.gov-btn-tender {
  background-color: #0B3C5D !important;
  border-color: #0B3C5D !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
}

.btn-primary-custom:hover,
.btn-primary:hover,
.gov-btn-tender:hover {
  background-color: #D97706 !important;
  border-color: #D97706 !important;
  color: #FFFFFF !important;
}

.btn-outline-custom,
.btn-outline-primary {
  border: 2px solid #0B3C5D !important;
  color: #0B3C5D !important;
  font-weight: 700 !important;
  background: transparent !important;
  border-radius: 4px !important;
}

.btn-outline-custom:hover,
.btn-outline-primary:hover {
  background: #0B3C5D !important;
  color: #FFFFFF !important;
}

/* 4. Global Badges (Strictly Saffron, Green, Navy) */
.badge.bg-primary,
.badge-primary {
  background-color: #0B3C5D !important;
  color: #FFFFFF !important;
  padding: 15px 25px !important;
  border-radius: 10px !important;
}

.badge.bg-warning,
.badge-warning {
  background-color: #FEF3C7 !important;
  color: #B45309 !important;
  border: 1px solid #FCD34D !important;
}

.badge.bg-success,
.badge-success {
  background-color: #DCFCE7 !important;
  color: #166534 !important;
  border: 1px solid #BBF7D0 !important;
}

/* 5. Page Banners Overlay & Breadcrumbs */
.page-banner {
  position: relative;
  background-color: #061D2D !important;
}

.page-overlay {
  background: linear-gradient(135deg, rgba(6, 29, 45, 0.94), rgba(11, 60, 93, 0.88)) !important;
}

.page-content span,
.breadcrumb-list li.text-warning,
.breadcrumb-list li a {
  color: #FCD34D !important;
}

/* 6. Clean Card Styling (No Odd Rainbow Backgrounds) */
.card,
.gov-portal-card,
.feature-box,
.division-card,
.product-box,
.showcase-card,
.application-card,
.why-item,
.quality-card,
.download-card,
.disclosure-card,
.officer-card {
  background: #FFFFFF !important;
  border: 1px solid #DCE3EB !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 16px rgba(11, 60, 93, 0.05) !important;
}

.card:hover,
.gov-portal-card:hover,
.feature-box:hover,
.showcase-card:hover {
  border-color: #0B3C5D !important;
  border-top-color: #D97706 !important;
  box-shadow: 0 10px 25px rgba(11, 60, 93, 0.12) !important;
}

/* 7. Icons Colors (Saffron / Navy / Green Only) */
i.text-primary,
.feature-icon i,
.why-icon i {
  color: #0B3C5D !important;
}

i.text-warning,
.gov-top-contact i,
.gov-address-box i {
  color: #D97706 !important;
}

i.text-success {
  color: #138808 !important;
}

/* 8. Table Styling (Ashoka Navy Header) */
.table-gov thead th,
.table thead th,
.tenders-table thead th {
  background-color: #0B3C5D !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  border-color: #061D2D !important;
}

.table-gov tbody td,
.table tbody td,
.tenders-table tbody td {
  border-color: #E2E8F0 !important;
  color: #334155 !important;
}

/* Status Badges */
.status-active, .status-open {
  background: #DCFCE7 !important;
  color: #166534 !important;
  border: 1px solid #BBF7D0 !important;
}

.status-eval, .status-closed {
  background: #FEF3C7 !important;
  color: #92400e !important;
  border: 1px solid #FCD34D !important;
}

/*====================================================

HERO CAROUSEL CUSTOM STYLING (LEFT SLIDE MOTION)

======================================================*/

#heroCarousel .carousel-item {
  transition: transform 0.8s ease-in-out;
}

#heroCarousel .carousel-indicators {
  bottom: 25px;
  z-index: 10;
  margin-bottom: 0;
  gap: 8px;
}

#heroCarousel .carousel-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 0.7;
  transition: all 0.4s ease;
  margin: 0;
}

#heroCarousel .carousel-indicators .active {
  width: 38px;
  border-radius: 20px;
  background-color: #d97706;
  border-color: #ffffff;
  opacity: 1;
  box-shadow: 0 0 12px rgba(217, 119, 6, 0.6);
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 55px;
  height: 55px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 60, 93, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  opacity: 0.85;
  transition: all 0.3s ease;
  z-index: 10;
}

#heroCarousel .carousel-control-prev {
  left: 25px;
}

#heroCarousel .carousel-control-next {
  right: 25px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  background: #d97706;
  border-color: #ffffff;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
}

#heroCarousel .carousel-item.active .hero-content .hero-tag {
  animation: slideInDown 0.6s ease forwards;
}

#heroCarousel .carousel-item.active .hero-content h1 {
  animation: slideInLeft 0.8s ease forwards;
}

#heroCarousel .carousel-item.active .hero-content p {
  animation: slideInLeft 1s ease forwards;
}

#heroCarousel .carousel-item.active .hero-content .hero-buttons {
  animation: slideInUp 1.1s ease forwards;
}

#heroCarousel .carousel-item.active .hero-right {
  animation: fadeInRight 1.2s ease forwards;
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 991px) {
  #heroCarousel .carousel-control-prev { left: 10px; }
  #heroCarousel .carousel-control-next { right: 10px; }
  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next {
    width: 42px;
    height: 42px;
  }
}

/*====================================================

END OF STYLE.CSS V2

======================================================*/





