/* Reset */
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: montserrat;
}

:root{
    --main-color:#B99F46;
    --bg-color:#000000;
    --bg-color:#171717;
    --para-color:#504e4d;
    --line-color:rgb(176, 176, 176);
    --p-text-color: rgb(162, 161, 161); 
}
.main{
    padding: 100px 0px;
    width: 80%;
    margin: auto;
}

li{
    list-style: none;
}
a{
    text-decoration: none;
}

.line{
    width: 100%;
    height: 2px;
    margin: 20px auto 20px auto;
    background-color: var(--line-color);
}
.nav-sec .search-box .menu-btn .menu{
  margin-top: 5px;
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
/* gain-section */
.gain-section .main{
  display: flex;
}
.gain-section .main .gain-left{
  width: 50%;
}
.gain-section .main .gain-right{
  width: 50%;
}
.gain-section .main .gain-right{
  width: 90%;
}
.gain-section .main .gain-right img{
  height: auto;
}
/* degree-section */
.degree-section .degree-card{
  margin-top: 20px;
}


.logo {
  font-size: 22px;
  font-weight: bold;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.search-login {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-login input {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-btn {
  padding: 8px 16px;
  border: 1px solid #f05a28;
  color: #f05a28;
  border-radius: 4px;
  cursor: pointer;
  background: none;
}

/* Hero Section */
.hero {
  height: 85vh;
  background: url('ttt.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 40px;
  color: white;
  background-blend-mode: darken;
  background-color: rgba(0,0,0,0.5);
}

.hero h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffb347;
}

.hero p {
  font-size: 16px;
  margin-bottom: 25px;
}

.hero .buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  padding: 12px 20px;
  background: #f05a28;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-secondary {
  padding: 12px 20px;
  background: #ffe2d1;
  border: none;
  color: #f05a28;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

/* Sticky Bottom Bar */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffeecf;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  gap: 10px;
}

.register-btn {
  padding: 8px 14px;
  background: #f05a28;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}







/* Pehle ka CSS same rahega, sirf naya section add karna hai */

.gain-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px 40px;
  gap: 40px;
  background: #fff;
}

.gain-left {
  flex: 1;
}

.badge {
  background: #ffe2d1;
  color: #f05a28;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.gain-left h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.gain-card {
  background: #f9f9f9;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.gain-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.gain-card p {
  font-size: 14px;
  color: #555;
}

/* Right side partner section */
.gain-right {
  flex: 1;
  text-align: center;
}

.partners-title {
  font-size: 20px;
  color: #f05a28;
  margin-bottom: 20px;
}

.partners-grid {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* Image full box cover karegi */
  border-radius: 10px; /* optional, agar corners rounded chahiye */
}



/* online */
.degree-section{
  padding: 0px 40px;
}
.tab-buttons {
  margin: 20px 0;
}
.tab-btn {
  padding: 8px 15px;
  margin-right: 10px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}
.tab-btn.active {
  background: #ff5722;
  color: #fff;
  border-color: #ff5722;
}
.degree-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.degree-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.degree-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.degree-card h3 {
  font-size: 1.1em;
  margin: 10px 0 5px;
}
.degree-card p {
  color: #666;
}
.deadline {
  display: block;
  margin: 10px 0;
  font-size: 0.9em;
  color: red;
}
.card-buttons {
  display: flex;
  justify-content: space-between;
}

/* Bottom Bar */
.bottom-bar {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
}
.register-btn {
  margin-left: 10px;
  padding: 8px 15px;
  background: #ff5722;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (width >= 1536px) {  }
/* 1xL */
@media (width <= 1280px) { 
   
} 



/* LG */
@media (width <= 1024px) {
  .main{
    padding: 50px 0px;
  } 
  .gain-section .main{
    display: grid;
  }
  .gain-section .main .gain-left{
  width: 100%;
  margin: auto;
}
.gain-section .main .gain-right{
  width: 100%;
}
.gain-section .main .gain-right{
  width: 90%;
  margin: 20px auto;

}
.gain-section .main .gain-right img{
  height: auto;
}

 }


/* MD */
@media (width >= 768px){
    
}
@media (width < 768px) { 
  .main{
    padding: 20px 0px;
  }
    .hero{
      text-align: center;
      display: grid;
    }


 }
/* SM */
@media (width <= 640px) { 
  .gain-section .main .gain-left .buttons{
  margin: auto;
  display: grid;
  gap: 10px;
}
}

@media (width <= 400px){
    

}