@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

body {
  margin: 0;
  padding: 0;
   font-family: "Nunito", sans-serif;
}
html{
    overflow-x: hidden;
}

.mainMenu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
     background-color: #4d87b6;
    display: flex;
    justify-content: flex-end;
}

.mainMenu ul li {
  float: left;
}

.mainMenu ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.mainMenu ul li a:hover {
  background-color: #111111;
}

.mainBanner{
     background-image: url(../img/bg-3.jpg);
    height: 550px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.bannerSidecon h2 {
    margin: 0;
    color: #fff;
    font-size: 35px;
}
.bannerSidecon p {
    margin: 0;
    color: #fff;
    font-size: 20px;
}
.bannerSidecon {
    width: 300px;
    background: linear-gradient(to bottom, #2D588F 0%, #6CB4EF 100%);
    padding: 5%;
    position: relative;
    top: 100px;
}
.bannerSidecon i {
    font-size: 35px;
    color: #fff;
    margin-bottom: 10px;
}

.smTag {
    margin-top: 3%;
    margin-bottom: 3%;
      
}
.smIc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.smCard {
    width: 100%;
    padding: 20px;
    background-color: #000;
    color: #fff;
    margin: 0 5px 0 5px;
}
  .ic {
    font-size: 35px;
}
.icCo h3 {
    font-size: 30px;
    margin: 0;
}
.icCo p {
    margin: 0;
}
.smC{
  display: flex;
}



/* Header */
.fb-header {
color: #356bac;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #356bac;
    width: 90%;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.fb-header input {
  width: 250px;
  padding: 7px 12px;
  border-radius: 20px;
  border: none;
}

/* Feed */
.feed {
  max-width: 600px;
  margin: 20px auto;
}

/* Post Card */
.post {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.post-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.post-header h4 {
  font-size: 15px;
      margin: 0;
}

.post-header span {
  font-size: 12px;
  color: gray;
}

.post-text {
  margin: 10px 0;
  font-size: 15px;
}

.post-image {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}

/* Actions */
.post-actions {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.post-actions button {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #65676b;
}

.post-actions button:hover {
  color: #1877f2;
}

/* Responsive */
@media (max-width: 600px) {
  .fb-header input {
    width: 140px;
  }

  .feed {
    margin: 10px;
  }
}
.fbSide {
    overflow-y: auto;
    width: 29%;
    margin-right: 1%;
    height: 400px;
}
.feedSection {
    margin-top: 2%;
    margin-bottom: 5%;
}
.emplistSide {
     overflow-y: auto;
    width: 29%;
    margin-right: 1%;
    height: 400px;
}

.employee-card {
       display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 10px;
    border-radius: 12px;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/*.employee-card:hover {
    transform: translateY(-3px);
}
*/
.employee-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 18px;
    object-fit: cover;
    border: 1px solid #007bff;
}

.info h3 {
   margin: 0;
    color: #222;
    font-size: 16px;
}

.designation {
    color: #007bff;
    font-weight: bold;
    margin: 0;
    font-size: 14px;
}

.email {
    color: #555;
    font-size: 14px;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 500px) {
    .employee-card {
        flex-direction: column;
        text-align: center;
    }

    .employee-card img {
        margin-bottom: 10px;
        margin-right: 0;
    }
}
.d-flex{
    display: flex;
    flex-direction: row;
}



::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
    background-color: gray;
}

.hero {
  position: relative;
  height: 400px;
  background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f")
              center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  max-width: 750px;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.subtext {
  margin-bottom: 25px;
}

.btn {
  background: #ffffff;
  color: #333;
  border: none;
  padding: 12px 26px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}

.btn:hover {
  background: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
}
.loSide{
    width: 59%;
        margin-right: 1%;
}
.cn {
    width: 33.33%;
}
/* Card Container */
.cn .card {
        width: 100%;
    height: 325px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d")
              center/cover no-repeat;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Blue Overlay */
.cn .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(32, 60, 140, 0.88);
}

/* Content */
.cn .content {
  position: relative;
  z-index: 2;
  height: 100%;
  color: white;
  text-align: center;
  padding: 40px 30px;
  /*display: flex;*/
  flex-direction: column;
  justify-content: center;
}

.cn .icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.cn h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.cn p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cn button {
  background: white;
  color: #1e3a8a;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cn button:hover {
  background: #e5e7eb;
}
.smContnew {
    margin-top: 3%;
    margin-bottom: 3%;
}



.rc .card {
    width: 98%;
    height: 325px;
    background: url(https://images.unsplash.com/photo-1446776811953-b23d57bd21aa) center / cover no-repeat;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
}

.rc .overlay {
  background: rgba(43, 74, 155, 0.9);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rc .content {
  text-align: center;
  color: white;
  padding: 20px;
}

.rc .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.rc h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.rc p {
      font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.rc button {
  background: white;
  color: #2b4a9b;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.rc button:hover {
  background: #e6e6e6;
}
.rc{
    width: 33.33%;
}

.sr .card {
     width: 100%;
    height: 325px;
    background: url(https://images.unsplash.com/photo-1522202176988-66273c2fd55f) center / cover no-repeat;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-left: 10px;
}

.sr .overlay {
  background: rgba(43, 74, 155, 0.9);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sr .content {
  text-align: center;
  color: white;
  padding: 20px;
}

.sr .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.sr h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.sr p {
      font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.sr button {
  background: white;
  color: #2b4a9b;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.sr button:hover {
  background: #e6e6e6;
}
.rc{
    width: 33.33%;
}
.sr{
    width: 33.33%;
}

.bannerLink {
  position: relative;
  background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
      width: 39%;
    margin-right: 1%;
}

.bannerLink .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.bannerLink .content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.bannerLink .content h1 {
  font-size: 70px;
  font-weight: bold;
  letter-spacing: 2px;
}

.bannerLink .content h2 {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 600;
}

.bannerLink .content p {
  margin-top: 8px;
  font-size: 22px;
  opacity: 0.9;
}

.bannerLink .linkedin-box {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #000;
  border-radius: 3px;
  overflow: hidden;
  font-size: 14px;
}

.bannerLink .linkedin-box .logo {
  background: #0A66C2;
  color: #fff;
  padding: 8px 10px;
  font-weight: bold;
}

.bannerLink .linkedin-box button {
  border: none;
  background: #e6f0fa;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.bannerLink .linkedin-box .count {
  padding: 8px 12px;
  background: #f4f4f4;
}

.footer {
  background: #2b4a9b;
  color: #fff;
  padding: 40px 20px 10px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.footer-left h3 {
  margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    margin-top: 20px;
  }
}

.mainSide {
    display: inline-block;
        width: 100%;
}
@media (min-width: 1400px) {
    .contentSize{
  width: 1320px;
  margin-left: auto;
    margin-right: auto;
}
}
@media (max-width: 992px){
    .smC {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.smCard {
    width: 90%;
    padding: 20px;
    background-color: #000;
    color: #fff;
    margin: 0 5px 10px 5px;
}
.d-flex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.bannerLink {
    position: relative;
    background: url(https://images.unsplash.com/photo-1522202176988-66273c2fd55f) center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    width: 90%;
    margin-right: 1%;
    margin-bottom: 3%;
    margin-top: 3%;
}
.loSide {
    width: 90%;
    margin-right: 1%;
    margin-top: 3%;
    margin-bottom: 3%;
}
.fbSide {
    overflow-y: auto;
        width: 100%;
        margin-right: 1%;
        height: 260px;
        overflow-x: hidden;
        margin-bottom: 30px;
    

}
.emplistSide {
   overflow-y: auto;
        width: 100%;
        margin-right: 1%;
        height: 260px;
        overflow-x: hidden;
        margin-bottom: 30px;
}

.loSide {
   overflow-y: auto;
        width: 100%;
        margin-right: 1%;
        height: 260px;
        overflow-x: hidden;
        margin-bottom: 30px;
}
.cn .content {
    position: relative;
    z-index: 2;
    height: 100%;
    color: white;
    text-align: center;
    padding: 40px 0px;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
.cn {
    width: 100%;
    margin-bottom: 2%;
}
.rc {
   width: 100%;
}
.sr {
    width: 100%;
    margin-top: 2%;
}
.bannerLink {
        position: relative;
        background: url(https://images.unsplash.com/photo-1522202176988-66273c2fd55f) center / cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        width: 100%;
        margin-right: 1%;
        margin-bottom: 15%;
        margin-top: 1%;
        padding: 10px;
    }
    .cn .card {
    margin-left: 10px;
}
.contentSize{
    padding-right: 10%;
    padding-left: 10%;
    padding-top: 5%;
    padding-bottom: 5%;
}

}




