
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --color1:#2e3192;
    --color2:#347955;
    --color3:#039448;
}

body {
    /* font-family: 'Segoe UI', system-ui; */
    font-family:'Times New Roman', Times, serif;
    scroll-behavior: smooth;
    font-size: 18px; /* Base font size */

}



/*----------------------------------------start of navabar---------------------------------------*/
.navbar {
    border-bottom: 3px solid var(--secondary-color);
    color: var(--color1);
    
}

.nav-link:hover {
    color: var(--color2) !important; /* Bootstrap primary color or any color you want */
    text-decoration: underline; /* Optional: adds underline on hover */
}
/*----------------------------------------end of navabar---------------------------------------*/


.hero-section {
    /* background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)); */
        /* url('https://source.unsplash.com/random/1920x1080/?technology') center/cover; */
   
    display: flex;
    align-items: center;
    color: white;
}

.hero-section-bg-container{
    /* background-image: url("images/homebg.JPG"); */
    background-color: #000230;
    background-size: cover;
    min-height: 100vh;
}


.logo-image {
        width: 150px; /* adjust width as needed */
        height: 70px; /* maintain aspect ratio */
        /* background-color: antiquewhite; */
}

/* -------------------------Start of our offerings--------------------------------------- */
.service-card{
  background-color: #1d1e2c;
  color: white;
}
/* ------------------------End of our offerings--------------------------------------- */ */


/*---------------------------------start of internship  section----------------------------------*/

/* Internship Card Wrapper Styles */
.internship-card-wrapper {
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.5s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Animation Delays for Odd/Even Cards */
  .internship-card-wrapper:nth-child(odd) {
  animation-delay: 0.2s;
  }
  
  .internship-card-wrapper:nth-child(even) {
  animation-delay: 0.4s;
  }
  
  /* Internship Card Styling */
  .internship-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Hover Effects for Card */
  .internship-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Front Side Styling */
  .front {
  text-align: justify;
  }
  
  .front .card-img-top {
  width: 100%;
  height: 200px; /* Set a fixed height */
  object-fit: cover;
  margin-bottom: 1rem;
  }
  
  .front h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  }
  
  .front p {
  font-size: 0.95rem;
  color: #555;
  }
  
  .front ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  }
  
  /* Back Side Styling */
  .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  padding: 0.5rem 1rem; /* Reduced padding to move contents up */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content to the top */
  opacity: 0;
  }
  
  /* Back Content Header (Register Button) */
  .tools-header {
  display: flex;
  justify-content: flex-start; /* Align the button towards the left or desired position */
  }
  
  .back h5 {
  margin-top: 0.5rem; /* Adjust margin for the heading to move it up */
  }
  
  .back ul li {
  font-size: 0.9rem;
  }
  
  /* Card Flip Animation */
  .internship-card:hover .front {
  transform: rotateY(180deg);
  }
  
  .internship-card:hover .back {
  transform: rotateY(0deg);
  opacity: 1;
  }
  
  /* Badge Styling */
  .internship-card .badge {
  background-color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  }
  
  /* Animation Keyframes */
  @keyframes slideInUp {
  to {
  opacity: 1;
  transform: translateY(0);
  }
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
  .internship-card-wrapper {
  margin-bottom: 1rem;
  }
  }
  
  @media (max-width: 992px) {
  .internship-card {
  margin-bottom: 1rem;
  }
  
  .front .card-img-top {
  height: 150px; /* Adjust image height on medium screens */
  }
  }
  
  @media (max-width: 768px) {
  .internship-card-wrapper {
  margin-bottom: 1rem;
  }
  
  .front .card-img-top {
  height: 120px; /* Adjust image height on smaller screens */
  }
  
  .front h4 {
  font-size: 1.1rem; /* Adjust title font size */
  }
  
  .front p {
  font-size: 0.85rem; /* Adjust paragraph font size */
  }
  }
  
  @media (max-width: 576px) {
  .internship-card-wrapper {
  margin-bottom: 1rem;
  }
  
  .front .card-img-top {
  height: 100px; /* Adjust image height on extra small screens */
  }
  
  .front h4 {
  font-size: 1rem; /* Adjust title font size */
  }
  
  .front p {
  font-size: 0.8rem; /* Adjust paragraph font size */
  }
  
  .front ul li {
  font-size: 0.8rem; /* Adjust list item font size */
  }
  
  .back h5 {
  font-size: 1rem; /* Adjust "Tools & Technologies" heading font size */
  }
  
  .back ul li {
  font-size: 0.8rem; /* Adjust list item font size on the back */
  }
  }
  
  /*---------------------------------end of internship  section----------------------------------*/



/* ----------------------start  of Leadership Team Section Styling -----------------------------*/
#leadership-team {
    background: linear-gradient(135deg, #f9f9f9, #e3f2fd);
    padding: 80px 0;
  }
  
  .team-member {
    background: white;
    border-radius: 15px;


    border-top: 5px solid var(--color1);
    border-left: 5px solid var(--color1);
    border-bottom: 5px solid var(--color1);
    border-right: 5px solid var(--color3);
    padding: 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
  }
  

  .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  
  .team-member h4 {
    font-weight: 600;
    color: var(--color1);
    margin-bottom: 5px;
  }
  
  .team-member p:first-of-type {
    font-size: 1rem;
    font-weight: bold;
    color: var(--color2);
    margin-bottom: 10px;
  }
  
  .team-member p {
    font-size: 0.95rem;
    color: #333;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color3);
    margin-bottom: 50px;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .animate {
    animation: fadeInUp 1s ease forwards !important;
  }


/* ----------------------end of Leadership Team Section Styling -----------------------------*/

/* contact us */

/* footer */
#footer{
    background: #2e3192;
    color: white;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.social-links a {
    margin-right: 10px; /* Adjust the number as needed for spacing */
}
