/* HEADDER */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: rgba(0, 255, 255, 0.436);
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}

li {
  list-style: none;
}

.nav-first {
  position: inherit;
  background-color: rgb(16, 155, 236);
  color: #fff;
  height: 100px;
  cursor: pointer;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.navbar {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: #2424b4;
  color: #fff;
}

.nav-links a {
  color: #fff;
}

#topbar.topbar-scrolled {
  top: -100px;
}

#topbar .contact-info a {
  line-height: 0;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  color: #f6b024;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .cta {
  background: transparent;
}

#topbar .cta a {
  color: #fff;
  background: #f6b024;
  padding: 6px 24px 8px 24px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

#topbar .cta a:hover {
  background: #f1a40a;
}

/* LOGO */
.logo a {
  text-align: center;
  position: relative;
}

.logo p {
  font-size: 32px;
  padding: 6px;
  float: right;
  color: #fff;
}

/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  font-size: 18px;
}

.menu li:hover {
  z-index: 2;
  background-color: rgba(7, 65, 190, 0.795);
  border-radius: 5px;
  transition: 0.3s ease;
}

.menu li {
  padding: 5px 14px;
}

/* DROPDOWN MENU */
.services {
  position: relative;
}

.dropdown {
  background-color: rgba(31, 11, 131, 0.61);
  padding: 10px;
  position: absolute;
  /*WITH RESPECT TO PARENT*/
  display: none;
  z-index: 1;
  border-radius: 10px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  top: 30px;
}

.dropdown li + li {
  margin-top: 10px;
}

.dropdown li {
  padding: 10px;
  width: 105px;
  text-align: left;
}

.dropdown li:hover {
  background-color: #140b5c;
}

.services:hover .dropdown {
  display: block;
}

input[type="checkbox"] {
  display: none;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    background-color: rgb(7, 65, 190);
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
  }

  .menu li:hover {
    display: inline-block;
    background-color: rgb(7, 65, 190);
    transition: 0.3s ease;
  }

  .menu li + li {
    margin-top: 12px;
  }

  input[type="checkbox"]:checked ~ .menu {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
  }

  .dropdown li:hover {
    background-color: rgb(69, 109, 194);
  }
}

nav li:hover .home-arrow {
  transform: rotate(180deg);
}
/* header */

/* hero-section */
.hero-section {
  background: url("/assets/college.jpg") 40% no-repeat;
  background-size: cover;
  height: 80vh;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  /* display: flex; */
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-section .hero-section-text {
  color: #fefefe;
  background-color: rgba(31, 28, 28, 0.521);
  text-shadow: 1px 1px 2px #0a0a0a;
  border-radius: 5px;
  width: 60%;
}
.hero-section .hero-section-text p {
  font-size: 1.3rem;
  text-align: center;
}
/* hero-section */
/* Profile card */
/* body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
} */

.container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.profile-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: calc(33.333% - 40px); /* Three cards per row with gap consideration */
  max-width: 300px;
  margin: 10px;
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.2s;
}

.profile-card img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 15px;
}

.profile-card h3 {
  margin: 10px 0 5px;
  color: #333;
}

.profile-card p {
  color: #777;
  font-size: 16px;
  margin: 0;
}

.profile-card:hover {
  transform: translateY(-10px);
}
.social-media {
  margin-top: 15px;
}

.social-media a {
  color: #777;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.social-media a:hover {
  color: #0073b1; /* LinkedIn blue */
}

/* Specific colors for each platform */
.social-media a.facebook:hover {
  color: #3b5998; /* Facebook blue */
}

.social-media a.twitter:hover {
  color: #1da1f2; /* Twitter blue */
}

/* Responsive Design */
@media (max-width: 900px) {
  .profile-card {
      width: calc(50% - 40px); /* Two cards per row with gap consideration */
  }
}

@media (max-width: 600px) {
  .profile-card {
      width: 100%; /* One card per row */
  }
}

/* company images */
/* facelity */

.con {
  margin-top: 50px;
  margin-left: 150px;
  margin-right: 150px;
}
.main-se {
  text-align: center;
  font-size: 20px;
}
.main-section {
  margin-left: 50px;
}

.gallery img {
  width: 24%;
  margin-top: 10px;
  height: 120px;
}
/* facelity */
/* about us */
header h1 {
  margin: 20px;
  text-align: center;
}
.underln {
  margin-left: 150px;
  margin-right: 150px;
  border-top: 3px solid black;
}




/* contact us */
.contain {
  width: 300px;
  margin: 10px auto;
  padding: 20px;
  border: 1px solid #4a45454c;
  border-radius: 5px;
  background-color: #f9f9f9aa;
}

#contactForm {
  display: flex;
  flex-direction: column;
}

#contactForm label {
  margin-bottom: 5px;
}

#contactForm input,
#contactForm textarea {
  margin-bottom: 10px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contactForm input[type="submit"] {
  padding: 5px 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#contactForm input[type="submit"]:hover {
  background-color: #0056b3;
}
/* contact us */
/* footer */
footer {
  background: #140b5c;
  width: 100%;
  bottom: 0;
  left: 0;
}

footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;

  background: #afafb6;
}

footer .content {
  max-width: 1300px;
  margin: auto;
  padding: 10px 10px 10px 10px;
}
footer .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
/* .content .top .logo-details{
  color: #fff;
  font-size: 40px;
} */
.content .top .media-icons {
  display: flex;
}
.content .top .media-icons a {
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1) {
  background: #4267b2;
}
.top .media-icons a:nth-child(1):hover {
  color: #4267b2;
  background: #fff;
}
.top .media-icons a:nth-child(2) {
  background: #1da1f2;
}
.top .media-icons a:nth-child(2):hover {
  color: #1da1f2;
  background: #fff;
}
.top .media-icons a:nth-child(3) {
  background: #e1306c;
}
.top .media-icons a:nth-child(3):hover {
  color: #e1306c;
  background: #fff;
}
.top .media-icons a:nth-child(4) {
  background: #0077b5;
}
.top .media-icons a:nth-child(4):hover {
  color: #0077b5;
  background: #fff;
}
.top .media-icons a:nth-child(5) {
  background: #ff0000;
}
.top .media-icons a:nth-child(5):hover {
  color: #ff0000;
  background: #fff;
}
footer .content .link-boxes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box {
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li {
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease;
}
.content .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.link-boxes .input-box input {
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #afafb6;
  background: #140b5c;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder {
  color: #afafb6;
  font-size: 16px;
}
.link-boxes .input-box input[type="button"] {
  background: #fff;
  color: #140b5c;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="button"]:hover {
  opacity: 1;
}
footer .bottom-details {
  width: 100%;
  background: #0f0844;
}
footer .bottom-details .bottom_text {
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a {
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .content .link-boxes {
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box {
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 700px) {
  footer {
    position: relative;
  }
  .content .top .logo-details {
    font-size: 26px;
  }
  .content .top .media-icons a {
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 3 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  footer::before {
    top: 145px;
  }
  footer .content .top {
    flex-direction: column;
  }
  .content .top .media-icons {
    margin-top: 16px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 100%;
  }
}
