/* =====================================================
   GLOBAL SETTINGS
===================================================== */

/* Prevent horizontal scrolling */
body {
  width: 100%;
  /* overflow: hidden; */
}




/* =====================================================
   LOGIN BUTTON STYLE
===================================================== */

#login_btn {
  padding: 8px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, #93296f, #c94fa1);
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  cursor: pointer;

  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(147, 41, 111, 0.35);
}

/* Login icon (Font Awesome) */
.login_btn::before {
  content: "\f2f6";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* Hover effect */
.login_btn:hover {
  background: linear-gradient(135deg, #7a1f5a, #93296f);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(147, 41, 111, 0.45);
}

/* Click animation */
.login_btn:active {
  transform: scale(0.96);
}

/* Shine animation */
.login_btn {
  position: relative;
  overflow: hidden;
}

.login_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  transition: 0.6s;
}

.login_btn:hover::after {
  left: 100%;
}



/* =====================================================
   CUSTOM FONTS
===================================================== */

@font-face {
  font-family: "Bauhaus93";
  src: url(/assets/fonts/Bauhaus93.ttf) format("truetype");
}

@font-face {
  font-family: "ShreeLipi188";
  src: url(/assets/fonts/ShreeLipi188.ttf) format("truetype");
}

@font-face {
  font-family: "ShreeLipi731";
  src: url(/assets/fonts/ShreeLipi731.ttf) format("truetype");
}



/* =====================================================
   LANGUAGE BUTTONS
===================================================== */

.lgbtn {
  padding-left: 20px;
}

/* Desktop buttons */
.engbtn,
.mrbtn {
  border: 2px solid #fff;
  border-radius: 5px;
  color: #fff;
  background-color: gray;
  padding: 0 15px;
}

/* Mobile buttons */
.ebtn,
.mbtn {
  border: 2px solid #fff;
  border-radius: 5px;
  color: #fff;
  background-color: gray;
  padding: 0 15px;
  display: none;
}



/* =====================================================
   HEADER LAYOUT
===================================================== */

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

/* Main header style */
.header {
  width: 100%;
  padding: 10px 0;
  color: var(--default-color);
  background: linear-gradient(120deg, #fdfbff, #f3e8ff, #ffeef8);
  transition: all 0.4s ease;
}

/* Header shadow when page scrolls */
.scrolled .header {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}



/* =====================================================
   LOGO
===================================================== */

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 110px;
  margin-right: 20px;
  transition: 0.3s;
}

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



/* =====================================================
   WEBSITE NAME STYLING
===================================================== */

.baumans-regular {
  font-family: "Baumans", system-ui;
}

.sitename-footer {
  font-family: "Baumans", system-ui;
}

.sitename {
  font-size: 54px;
  font-family: "Baumans", system-ui;
  font-weight: 700;
  color: #7a50c2;
  margin: 0;
}

.sitename .ltr {
  font-size: 75px;
}

/* Marathi site name */
.sitename_mar {
  font-size: 50px;
  font-family: "ShreeLipi731";
  font-weight: 700;
  color: #7a50c2;
}

/* Cooperative text */
.co-op {
  font-size: 28px;
  color: #000;
  font-weight: 600;
}

.co-op_mar {
  font-size: 24.5px;
  color: #000;
  font-weight: 600;
  padding-top: 15px;
}



/* =====================================================
   RESPONSIVE HEADER TEXT
===================================================== */

@media (max-width:1400px){

  .header .logo img { max-height:90px; }

  .sitename { font-size:40px; }
  .sitename_mar { font-size:45px; }

  .sitename .ltr { font-size:55px; }

  .co-op { font-size:20px; }
  .co-op_mar { font-size:22px; }

}

@media (max-width:790px){

  .sitename { font-size:45px; }
  .sitename_mar { font-size:45px; }

  .sitename .ltr { font-size:60px; }

  .co-op { font-size:22.5px; }
  .co-op_mar { font-size:22px; }

}

@media (max-width:560px){

  .header .logo img { max-height:80px; }

  .sitename { font-size:40px; }
  .sitename_mar { font-size:40px; }

  .sitename .ltr { font-size:55px; }

  .co-op { font-size:20px; }
  .co-op_mar { font-size:19.5px; }

}

@media (max-width:480px){

  .header .logo img { max-height:70px; }

  .sitename { font-size:34px; }
  .sitename_mar { font-size:35px; }

  .sitename .ltr { font-size:48px; }

  .co-op { font-size:17.5px; }
  .co-op_mar { font-size:17px; }

}

@media (max-width:400px){

  .header .logo img { max-height:62px; }

  .sitename { font-size:30px; }
  .sitename_mar { font-size:30px; }

  .sitename .ltr { font-size:45px; }

  .co-op { font-size:15.5px; }
  .co-op_mar { font-size:14.5px; }

}

@media (max-width:380px){

  .header .logo img { max-height:60px; }

  .sitename { font-size:26px; }
  .sitename_mar { font-size:28px; }

  .sitename .ltr { font-size:40px; }

  .co-op { font-size:13.5px; }
  .co-op_mar {
    font-size:13.7px;
    padding-top:8px;
  }

}



/* =====================================================
   TOP HEADER
===================================================== */

.top-header {
  padding: 10px 0;
  background-color: #93296f;
  width: 100%;
}

.top-head h5 {
  font-family: var(--default-font);
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.shortreg {
  display: none;
}

@media (max-width:1200px){
  .top-head h5 { font-size:14px; }
  .lgbtn { font-size:15px; }
}

@media (max-width:1024px){
  .topadd { display:none; }
}

@media (max-width:790px){

  .engbtn,
  .mrbtn { display:none; }

  .ebtn,
  .mbtn {
    display:inline;
    font-size:13px;
  }

}

@media (max-width:500px){

  .top-head h5 { font-size:10px; }

  .ebtn,
  .mbtn { font-size:10px; }

}



/* =====================================================
   NAVIGATION MENU
===================================================== */

/* Menu hover underline animation */
.navmenu ul li a {
  position: relative;
  color: #4b2a6b;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navmenu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 0;
  height: 2px;

  background: #93296f;
  transition: 0.3s;
}

.navmenu ul li a:hover::after,
.navmenu ul li a.active::after {
  width: 100%;
}

.navmenu ul li a:hover {
  color: #93296f;
}



/* =====================================================
   DROPDOWN MENU
===================================================== */

.navmenu .dropdown ul {
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  z-index: 1000;
}



/* =====================================================
   MOBILE MENU
===================================================== */

@media (max-width:1199px){

  .navmenu ul {
    background: #fff;
  }

  .navmenu ul li {
    padding: 10px 15px;
  }

}

@media (max-width:768px){

  .navmenu ul li {
    padding: 10px 0;
  }

  .login_btn {
    margin-top: 10px;
    justify-content: center;
  }

}



/* =====================================================
   HEADER BACKGROUND ANIMATION
===================================================== */


.header::before {
  background: #d8b4fe;
  top: -120px;
  left: -120px;
}

.header::after {
  background: #f9a8d4;
  bottom: -120px;
  right: -120px;
  animation-delay: 3s;
}

/* Floating animation */
@keyframes floatMove {

  0% {
    transform: translate(0,0);
  }

  100% {
    transform: translate(80px,40px);
  }

}



/* =====================================================
   PARTICLE BACKGROUND
===================================================== */

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.header .container-xl {
  position: relative;
  z-index: 2;
}



