@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", 'Times New Roman', Times, serif;
}
html{
  scroll-behavior: smooth;
}
body{
  background: rgb(125 17 28);
 
}
header {
    background-color:#EEE6D8;
    color: black;
    text-align: center;
    padding: 20px 0;
    font-size: 1.8rem;

  }
  h1{
    font-family: 'DM Serif Display', serif;
	text-decoration: none;
  }
  a{
	text-decoration: none;
	color: black;
  }
  .text-highlight-section1
{
    color: rgb(240, 248, 255);
    margin: 2px;
    padding: 12px;

}
 ::selection{
      color:#030101;
      background: #B4FF39;
    }
.wrapper{
  max-width: 1080px;
  margin: 50px auto;
  padding: 0 20px;
  position: relative;
}
.wrapper .center-line{
  position: absolute;
  height: 100%;
  width: 4px;
  background: hsl(0, 0%, 100%);
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}
.wrapper .row{
  display: flex;
}
.wrapper .row-1{
  justify-content: flex-start;
}
.wrapper .row-2{
  justify-content: flex-end;
}
.wrapper .row section{
  background: #eee6d8;
  border-radius: 5px;
  width: calc(50% - 40px);
  padding: 20px;
  position: relative;
}
.wrapper .row section::before{
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: #EEE6D8;
  top: 28px;
  z-index: -1;
  transform: rotate(45deg);
}
.row-1 section::before{
  right: -7px;
}
.row-2 section::before{
  left: -7px;
}
.row section .icon,
.center-line .scroll-icon{
  position: absolute;
  background: #f2f2f2;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ff7979;
  font-size: 17px;
  box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
}
.center-line .scroll-icon{
  bottom: 0px;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
}
.row-1 section .icon{
  top: 15px;
  right: -60px;
}
.row-2 section .icon{
  top: 15px;
  left: -60px;
}
.row section .details,
.row section .bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row section .details .title{
  font-size: 22px;
  font-weight: 600;
}
.row section p{
  margin: 10px 0 17px 0;
}
.row section .bottom a{
  text-decoration: none;
  background: #ff7979;
  color: #fff;
  padding: 7px 15px;
  border-radius: 5px;
  /* font-size: 17px; */
  font-weight: 400;
  transition: all 0.3s ease;
}
.row section .bottom a:hover{
  transform: scale(0.97);
}
/* Button style */
.hover-button {
	text-align: center;
	padding-left: 50px;
	background-color: #000000; 
	color: white;            
	padding: 15px 32px;         
	font-size: 16px;            
	border: none;               
	border-radius: 8px;        
	cursor: pointer;            
	transition: all 0.3s ease;  
	margin-top: 10px;           
  }
  
  /* Hover effect for the button */
  .hover-button:hover {
	background-color: #780808;  
		
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
  }

/*Footer*/
/* Footer Styles */
.footer {
  background-color: #2C2C2C;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
}

.footer-content {
  flex-direction: row;
}

.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 12px;
}

.text-section h3 {
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
  text-align: center;
  margin-bottom: 12px;
}

.text-section p {
  color: white;
  text-align: center;
}

.text-section a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.socials-section,
.links-section {
  width: 25%;
  margin-top: 24px;
}

.socials-section h4,
.links-section h4 {
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.socials-section p,
.links-section p {
  color: white;
  text-align: center;
}

.socials-section a,
.links-section a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.copyright {
  background-color: black;
  text-align: center;
  padding: 12px;
}

.copyright p {
  color: white;
  font-size: 0.875rem;
}


  
.row section .icon,
.center-line .scroll-icon{
  position: absolute;
  background: #f2f2f2;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ff7979;
  font-size: 17px;
  box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
}
.center-line .scroll-icon{
  bottom: 0px;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
}
.row-1 section .icon{
  top: 15px;
  right: -60px;
}
.row-2 section .icon{
  top: 15px;
  left: -60px;
}

  

/* Footer Styling */
.footer {
  background-color: #2C2C2C;
  color: white;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  padding: 63px 5%;
  align-items: center;
  justify-content: space-around;
}

.logo-text {
  display: flex;
  align-items: center;
}

.logo {
  width: 100px; /* Adjust as necessary */
  margin: 30px;
}

.institution-text h1 {
  font-size: 24px; /* Adjust size as needed */
  margin-bottom: 5px;
}

.social-links h2,
.other-links h2 {
  margin-bottom: 10px;
}


.social-links li,
.other-links li {
  padding: 5px 0;
  list-style-type: none;
}

.social-links a,
.other-links a {
  color: white;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-links a:hover,
.other-links a:hover {
  color: #BBBBBB; /* Light grey for hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .logo-text {
    flex-direction: column;
    align-items: center;
  }

  .social-links, .other-links {
    align-items: center;
  }

  .social-links ul, .other-links ul {
    padding: 0;
  }
}

/* Copyright */
.copywright {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  background-color: #000000; /* Slightly darker background */
}


@media(max-width: 790px){
  .wrapper .center-line{
    left: 40px;
  }
  .wrapper .row{
    margin: 30px 0 3px 60px;
  }
  .wrapper .row section{
    width: 100%;
  }
  .row-1 section::before{
    left: -7px;
  }
  .row-1 section .icon{
    left: -60px;
  }
}
@media(max-width: 44px){
  .wrapper .center-line,
  .row section::before,
  .row section .icon{
    display: none;
  }
  .wrapper .row{
    margin: 10px 0;
  }
}


.hover-button1 {
  display: block;              /* To allow margin auto centering */
  margin: 15px auto;           /* Center the button horizontally and add vertical spacing */
  text-align: center;
  background-color: white;   /* Black background */
  color: rgb(0, 0, 0);                /* White text */
  padding: 12px 32px;          /* Padding */
  font-size: 18px;             /* Font size */
  border: none;                /* No border */
  border-radius: 9px;          /* Rounded corners */
  cursor: pointer;             /* Pointer cursor */
  transition: all 0.3s ease;   /* Smooth transition for hover effect */
}

.hover-button1:hover {
  background-color: #000000;   /* Darker background on hover */
  transform: scale(1.05);      /* Slightly enlarge the button on hover */
  color: white;
}