/* ✅ Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@400;600;700&family=Urbanist:wght@300;400;600;700;800&display=swap');

/* ✅ Reset & Base */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
    scroll-behavior: smooth;
}
:root{
    --primary-color:linear-gradient(135deg, #4facfe, #875cee);   /* Govt. blue */
    --secondary-color:#e4c266; /* Highlight gold */
    --light-bg:#f8f9fa;
    --dark-bg:#1a1d20;
    --text-dark:#212529;
    --text-light:#ffffff;
}

/* ✅ Preloader */
#preloader{
    background: var(--light-bg) url(loader.gif) no-repeat center;
    background-size: 120px;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.top-header {
  background: linear-gradient(90deg, #ffffffff, #ffffffff);
  color: #fff;
  font-size: 0.95rem;
  padding: 2px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
/* ✅ Typography */
h1,h2,h3,h4,h5{
    font-family: 'Lexend Deca', sans-serif;
    color: var(--text-dark);
}

h1{ font-size: clamp(2rem, 5vw, 3.5rem); font-weight:700; }
h2{ font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight:600; }
p{ 
    font-size: 1rem; 
    line-height: 1.6rem; 
    color: var(--text-dark); 
}

/* ✅ Navbar */
.navbar{
    background:linear-gradient(125deg, #09113b, #290779);important;
    color : white
    ;
}
.nav-item a{
   color: var(--text-light) !important;
   font-weight: 500;
   padding: 0.5rem 1rem;
   transition: all 0.3s ease-in-out;
}
.nav-item a:hover {
    color: var(--dark-bg) !important;
    background-color: var(--secondary-color);
    border-radius: 0.3rem;
    transform: scale(1.05);
}

/* ✅ Responsive Navbar Mobile */
@media (max-width:990px) {
    .nav-item a {
      text-align: center;
      border: solid 1px var(--secondary-color);
      margin-top: 0.5rem;
      border-radius: 0.4rem;
    }
}

/* ✅ Cards */
.card{
   border-radius: 0.8rem;
   transition: all 0.3s ease;
}
.card:hover{
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

/* ✅ Backgrounds */
.bg-gradient{
    background: linear-gradient(135deg, #8fb8f5, #a9ec8a63, #42a5f5);
    color: var(--text-light);
}
.bg-feature{
    background: linear-gradient(144deg, rgba(228,65,31,0.5) 20%, rgba(72,133,230,0.6) 80%);
    border-radius: 0.8rem;
    color: var(--text-light);
}
.bg-sec{
    background: url(bg.gif) no-repeat center;
    background-size: cover;
}
.bg-founder{
    background: radial-gradient(circle, #eeb4c6 3%, #94bbe9 100%);
}

/* ✅ Buttons */
.btn-custom{
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    border-radius: 0.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-custom:hover{
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: scale(1.05);
}

/* ✅ Notice / Data Sheet */
.data-sheet{
    height: 500px;
    width: 90%;
    max-width: 900px;
    margin: auto;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
}
@media (max-width:768px) {
    .data-sheet{ width: 95%; height: 400px; }
}

/* ✅ Thank You Page */
.thankyou-wrapper p{
  font:20px 'Lexend Deca', sans-serif;
  text-align:center;
  color:#333333;
  padding:10px;
}
.thankyou-wrapper a{
  font:20px 'Lexend Deca', sans-serif;
  text-align:center;
  color:#fff;
  display:block;
  text-decoration:none;
  width:250px;
  background:var(--primary-color);
  margin:15px auto;
  padding:12px 20px;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.thankyou-wrapper a:hover{
  background:var(--secondary-color);
  color: var(--dark-bg);
  transform: scale(1.05);
}

/* ✅ Gallery */
.gallery-block.grid-gallery{
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-align:center;
}
.gallery-block.grid-gallery .item img{
    border-radius: 0.5rem;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.15);
    transition: 0.4s;
}
.gallery-block.grid-gallery .scale-on-hover:hover{
    transform: scale(1.08);
    box-shadow: 0px 15px 20px rgba(0,0,0,0.2) !important;
}


/* Navbar links */
.navbar .nav-link {
  position: relative;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

.navbar .nav-link:hover {
  color: #ff9800; /* hover color */
}

/* Dropdown menu */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
  animation: dropdownFade 0.3s ease forwards;
  background: linear-gradient(16deg, #e6283d, #86035e);
}

/* Dropdown item */
.dropdown-item {
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff !important;
  transform: translateX(5px);
  box-shadow: 0px 3px 10px rgba(0,0,0,0.15);
}

/* Dropdown animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.top-bar {
  background: #244566;
  font-weight: 600;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#dateTime {
  color: #0d6efd;
  font-size: 15px;
}



 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #6dd5ed, #2193b0);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/*VIDEO*/
.video-container {
    position: relative;
    width: 100%;
    max-width: 1100px; /* आप चाहें तो बढ़ा/घटा सकते हैं */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 16:9 aspect ratio */
.video-container::after {
    content: "";
    display: block;
    padding-bottom: 56.25%; 
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.yt-video-box {
    position: relative;
    width: 100%;
    max-width: 900px;  /* वीडियो की अधिकतम चौड़ाई */
    margin: 30px auto; 
    overflow: hidden;
    border-radius: 18px;  /* कोनों को गोल बनाता है */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.20); /* सुंदर shadow */
}

/* 16:9 वीडियो ratio बनाए रखने के लिए */
.yt-video-box::after {
    content: "";
    display: block;
    padding-bottom: 56.25%;
}

.yt-video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;        /* आपका frameborder हटाकर clean look */
    border-radius: 18px; /* iframe पर भी same radius */
}


/* news bnner*/
/* Modal background overlay */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Modal box */
.modal-content {
    background: white;
    width: 90%;
    max-width: 700px;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Modal header */
.modal-header {
    background-color: #b90000;
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close button */
.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
}

/* Modal body */
.modal-body {
    padding: 20px;
    overflow-y: auto;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

/* Scrollbar styling */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-thumb {
    background-color: #b90000;
    border-radius: 4px;
}

/* List styling */
.modal-body ul {
    padding-left: 20px;
}

.modal-body ul li {
    margin-bottom: 15px;
}

/* Links inside list */
.modal-body ul li a {
    margin-left: 8px;
    color: #d40000;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .modal-content {
        max-height: 80vh;
        width: 95%;
    }
    
    .modal-header {
        font-size: 18px;
    }
    
    .modal-body {
        font-size: 14px;
    }
}
/* Modal overlay background */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Modal box */
.modal-content {
    background: white;
    width: 90%;
    max-width: 700px;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Modal header */
.modal-header {
    background-color: #b90000;
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close button */
.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
}

/* Modal body */
.modal-body {
    padding: 20px;
    overflow-y: auto;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

/* Scrollbar styling */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-thumb {
    background-color: #b90000;
    border-radius: 4px;
}

/* List styling */
.modal-body ul {
    padding-left: 20px;
}

.modal-body ul li {
    margin-bottom: 15px;
}

/* Links inside list */
.modal-body ul li a {
    margin-left: 8px;
    color: #d40000;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .modal-content {
        max-height: 80vh;
        width: 95%;
    }
    
    .modal-header {
        font-size: 18px;
    }
    
    .modal-body {
        font-size: 14px;
    }
}
