/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

/* Logo */
.logo img {
    height: 32px;
}

/* Tagline */
.tagline {
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    font-weight: 500;
    color: #2d3748;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif; /* Modern font */
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Navigation Links */
.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

/* Navigation Button */
.join-us-button {
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    border: none;
    background: #25d366; /* WhatsApp green color */
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.join-us-button:hover {
    background: #128c7e; /* Darker WhatsApp green */
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(18, 140, 126, 0.2);
}

.join-us-button i {
    font-size: 1.2rem; /* WhatsApp icon size */
}
/* Responsive Design */
@media (max-width: 768px) {
    .tagline {
        display: none; /* Hide tagline on smaller screens */
    }
    .navbar {
        padding: 1rem;
    }
}




/*****************2nd line box/ The heading of page***********************************************/




/* General Styling */
.text-container {
    font-family: 'Poppins', sans-serif; /* Modern font */
    font-size: 48px;
    font-weight: bold;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between "Get" and the changing words */
  }
  
  .constant-text {
    color: #333; /* Dark color for "Get" */
  }
  
  .changing-text {
    position: relative;
    display: inline-block;
    color: #2575fc; /* Blue color for changing words */
    width: 400px; /* Adjust based on the longest word */
    height: 70px; /* Adjust based on font size */
    overflow: hidden;
  }
  
  .word {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: changeWords 6s infinite; /* Animation duration */
  }
  
  .word:nth-child(1) {
    animation-delay: 0s; /* First word starts immediately */
  }
  
  .word:nth-child(2) {
    animation-delay: 2s; /* Second word starts after 2 seconds */
  }
  
  .word:nth-child(3) {
    animation-delay: 4s; /* Third word starts after 4 seconds */
  }
  
  /* Animation Keyframes */
  @keyframes changeWords {
    0% {
      opacity: 0;
      transform: translateY(20px); /* Slide up effect */
    }
    10% {
      opacity: 1;
      transform: translateY(0);
    }
    30% {
      opacity: 1;
      transform: translateY(0);
    }
    40% {
      opacity: 0;
      transform: translateY(-20px); /* Slide down effect */
    }
    100% {
      opacity: 0;
      transform: translateY(-20px);
    }
  }


/**********************Space div**********/

.space {

    height: 60px;
    background-color: #ffff;
}


      /*****************Mian boxes/ Container one***************************************************/


      /* General Container */
.container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: #f9f9f9; /* Light background */
    flex-wrap: wrap; /* Allow wrapping for mobile */
    font-family: 'Poppins', sans-serif; /* Modern font */
  }
  
  /* Box Styling */
  .box {
    width: 30%;
    background: white;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px; /* Add space between boxes on mobile */
    display: flex;
    flex-direction: column;
  }
  
  .box:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
  }
  
  /* Header Styling */
  .header {
    padding: 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* Default gradient */
    color: white;
    text-align: center;
    position: relative;
  }
  
  .header .icon {
    font-size: 32px; /* Larger icon */
    display: block;
    margin-bottom: 10px;
  }
  
  .header h2 {
    font-size: 20px;
    font-weight: 600; /* Semi-bold for premium look */
    margin: 0;
  }
  
  .result-box .header {
    background: linear-gradient(135deg, #a11d11, #ff9a9e); /* Gradient for Results */
  }
  
  .admit-card-box .header {
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* Gradient for Admit Cards */
  }
  
  .job-box .header {
    background: linear-gradient(135deg, #4caf50, #8bc34a); /* Gradient for Jobs */
  }
  
  /* Content Styling */
  .content {
    padding: 20px;
    flex-grow: 1; /* Allow content to grow and fill space */
  }
  
  .content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .content ul li {
    margin: 12px 0;
    padding: 8px 0;
    border-bottom: 1px solid #eee; /* Subtle separator */
    transition: background 0.3s ease;
  }
  
  .content ul li:last-child {
    border-bottom: none; /* Remove border for last item */
  }
  
  .content ul li:hover {
    background: #f5f5f5; /* Light background on hover */
  }
  
  .content ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500; /* Medium font weight */
    display: block;
    transition: color 0.3s ease;
  }
  
  .content ul li a:hover {
    color: #2575fc; /* DocHub's blue */
  }
  
  /* Footer Styling */
  .footer {
    padding: 15px;
    text-align: center;
    background: #f9f9f9; /* Light background for footer */
    border-top: 1px solid #eee; /* Subtle border */
  }
  
  .footer .view-all {
    text-decoration: none;
    color: #2575fc; /* DocHub's blue */
    font-size: 14px;
    font-weight: 500; /* Medium font weight */
    transition: color 0.3s ease;
  }
  
  .footer .view-all:hover {
    color: #6a11cb; /* Darker blue on hover */
  }
  
  /* Media Queries for Mobile Responsiveness */
  @media (max-width: 768px) {
    .container {
      flex-direction: column; /* Stack boxes vertically on mobile */
      align-items: center; /* Center boxes on mobile */
      padding: 10px;
    }
  
    .box {
      width: 90%; /* Make boxes wider on mobile */
      margin-bottom: 25px; /* Add space between stacked boxes */
    }
  
    .header h2 {
      font-size: 18px; /* Slightly smaller font for mobile */
    }
  
    .content ul li a {
      font-size: 13px; /* Slightly smaller font for mobile */
    }
  
    .footer .view-all {
      font-size: 13px; /* Smaller font for mobile */
    }
  }



  /*****************Main box 2/ container two*************************************/




       /* General Container */
.container-two {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background: #f9f9f9; /* Light background */
  flex-wrap: wrap; /* Allow wrapping for mobile */
  font-family: 'Poppins', sans-serif; /* Modern font */
}

/* Box Styling */
.box {
  width: 30%;
  background: white;
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px; /* Add space between boxes on mobile */
  display: flex;
  flex-direction: column;
}

.box:hover {
  transform: translateY(-5px); /* Lift effect on hover */
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Header Styling */
.header {
  padding: 20px;
  background: linear-gradient(135deg, #6a11cb, #2575fc); /* Default gradient */
  color: white;
  text-align: center;
  position: relative;
}

.header .icon {
  font-size: 32px; /* Larger icon */
  display: block;
  margin-bottom: 10px;
}

.header h2 {
  font-size: 20px;
  font-weight: 600; /* Semi-bold for premium look */
  margin: 0;
}

.result-box2 .header {
  background: linear-gradient(135deg, #1f1c1c, #352b2c); /* Gradient for Results */
}

.admit-card-box2 .header {
  background: linear-gradient(135deg, #232324, #282e38); /* Gradient for Admit Cards */
}

.job-box2 .header {
  background: linear-gradient(135deg, #161a16, #191a17); /* Gradient for Jobs */
}

/* Content Styling */
.content {
  padding: 20px;
  flex-grow: 1; /* Allow content to grow and fill space */
}

.content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content ul li {
  margin: 12px 0;
  padding: 8px 0;
  border-bottom: 1px solid #eee; /* Subtle separator */
  transition: background 0.3s ease;
}

.content ul li:last-child {
  border-bottom: none; /* Remove border for last item */
}

.content ul li:hover {
  background: #f5f5f5; /* Light background on hover */
}

.content ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500; /* Medium font weight */
  display: block;
  transition: color 0.3s ease;
}

.content ul li a:hover {
  color: #2575fc; /* DocHub's blue */
}

/* Footer Styling */
.footer {
  padding: 15px;
  text-align: center;
  background: #f9f9f9; /* Light background for footer */
  border-top: 1px solid #eee; /* Subtle border */
}

.footer .view-all {
  text-decoration: none;
  color: #2575fc; /* DocHub's blue */
  font-size: 14px;
  font-weight: 500; /* Medium font weight */
  transition: color 0.3s ease;
}

.footer .view-all:hover {
  color: #6a11cb; /* Darker blue on hover */
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Stack boxes vertically on mobile */
    align-items: center; /* Center boxes on mobile */
    padding: 10px;
  }

  .box {
    width: 90%; /* Make boxes wider on mobile */
    margin-bottom: 25px; /* Add space between stacked boxes */
  }

  .header h2 {
    font-size: 18px; /* Slightly smaller font for mobile */
  }

  .content ul li a {
    font-size: 13px; /* Slightly smaller font for mobile */
  }

  .footer .view-all {
    font-size: 13px; /* Smaller font for mobile */
  }
}



/*****************Footer********/



.why-choose-section {
  text-align: center;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #2D3748;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.section-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #4299E1;
  border-radius: 2px;
}

.section-subhead {
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  color: #718096;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 3rem;
}







/* FAQ Section Styles */ /**********************************************/


/* FAQ Section Styles */
.faq-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #2c3e50;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 24px;
  }

  .faq-item h3 {
    font-size: 18px;
  }

  .faq-item p {
    font-size: 14px;
  }
}







/* Footer Styles */
.footer {
  background-color: #f5f5f5; /* Light gray background */
  color: #333; /* Dark text color */
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  border-top: 1px solid #ddd; /* Light border at the top */
  margin-top: auto; /* Ensures footer sticks to the bottom if content is short */
}

.footer-links {
  margin-bottom: 10px;
}

.footer-link {
  text-decoration: none;
  color: #333; /* Dark text color */
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #007bff; /* Blue color on hover */
}

.footer-separator {
  margin: 0 10px;
  color: #ccc; /* Light gray for the separator */
}

.footer-copyright {
  font-size: 12px;
  color: #666; /* Gray text for copyright */
}



















