* {
    /* box-sizing: border-box;
    margin: 0;
    padding: 0; */

  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;

}
body {
    overflow-x: hidden;
}
/*Layout styles*/
 .main {
         display: grid;
         /* height: 100vh; */
         grid-template-columns: 200px 1fr;
         /* grid-template-rows: 22px 1fr 50px; */
         grid-template-areas: 
         "header header"
         "content content"
         "footer footer";
         
       }
       .heading-title {
        width: 500px;
        position: relative;
        right: 200px;
       }
       .header {
        /* background-color: green; */
         background: linear-gradient(90deg, #1d2671, #c33764);
         /* justify-content: center;
         align-items: center; */
        grid-area:  header;

        /* display: grid; */
        /* grid-template-columns: 1fr 1fr 1.5fr; */
      
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        color: white;
        font-weight: bold;
       }
       .heading-log {
        background-color: white;
        width: 32%;
        height: 100%;
       }
        .content {
            background-image: url("/static/images/picture251.png");
            background-size: 100% 100%;
            background-repeat: no-repeat;
        /* background-color: rgb(101, 97, 102); */
        grid-area:  content;
       }
        .footer {
        background-color: rgb(100, 95, 95);
        grid-area:  footer;

        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        padding: 10px;
       }
       .footer a {
        position: relative;
        left: 10px;
        color: white;
       }
        
/*Layout styles upto here*/


/*Nav bar styles here*/

/* Navbar */
.heading-navbar {
  /* background: linear-gradient(90deg, #1d2671, #c33764); */
  z-index: 500;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
   color: #fff;
  font-size: 20px;
  font-weight: bold; 
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 0;
  transition: color 0.3s;
}

.nav-links a:hover {
  /* color: #ffdd57; */
  color: blue;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: none;
  z-index: 999;
}
.dropdown li {
    list-style: none;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
}

/* KEY LINE */
.dropdown:hover > .dropdown-menu {
  display: block;
}


/* Mobile Menu */
.menu-icon {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}
.nav-links {
  align-items: center;
}
/* Responsive */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 250px;
    left: 0;
    width: 100%;
    background: #1d2671;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 15px;
  }

  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  /* Mobile dropdown */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #2a2f9b;
  }

  .dropdown-menu a {
    color: #fff;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown > a:focus + .dropdown-menu,
  .dropdown-menu:hover {
    display: block;
  }
}

/*Nav bar styles upto here*/


/*------Media QUery-----------*/
@media(max-width:1000px) {
 body {
    zoom: 0.8;
  }  
}
@media(max-width:740px) {
 body {
    zoom: 0.7;
  }  
}

@media(max-width:700px) {
  body {
    zoom: 0.5;
  }
   
  
    .heading-title {
        all: unset;
        width: 500px;
        position: relative;
       }
       .dropdown li a  {
        color: white;
       }
       .nav-links a:hover {
        color: white;
       }
       .dropdown-menu {
        all: unset;
        

        
       }
}



/*----------------------------*/