

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  /* scroll-behavior: smooth; */
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  width: 100%;
  overflow-y: auto;
  overscroll-behavior-y:auto;
}


/* Header and Top Image */
/* Global styles */


/* Header Styles */
/* General Header and Top Image Styles */
/* General Header and Top Image Styles */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.top-image {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 1001;
}

.top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo */
.logo {
  font-size: clamp(20px, 4vw, 34px);
  font-weight: bold;
  color: #555;
}

.logo img {
  object-fit: contain;
  padding-left: clamp(20px, 5vw, 150px);
  height: 70px;
}

/* Navbar Styles */
.navbar {
  background-color: white;
  color: #555;
  position: fixed;
  width: 100%;
  height: auto;
  min-height: 80px;
  top: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: clamp(10px, 2vw, 20px);
  transition: all 0.3s ease;
  max-width: 1550px;
  justify-self: center;
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  margin-top: clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  /* gap: clamp(10px, 2vw, 15px); */
}

.nav-links li {
  margin: 0;
  position: relative;
  top: clamp(5px, 2vw, 15px);
  left: clamp(50px, 10vw, 200px);
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: clamp(14px, 2vw, 16px);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #f4a261;
}
.nav-links a.active {
  color: #f4a261; /* Orange color */
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-left: clamp(50px, 10vw, 200px);
}

.visit-btn {
  background-color: #f4a261;
  border: none;
  color: #fff;
  padding: clamp(6px, 2vw, 8px) clamp(20px, 4vw, 45px);
  font-size: clamp(12px, 2vw, 14px);
  margin-left: clamp(10px, 2vw, 30px);
  border-radius: 15px;
  cursor: pointer;
  height: clamp(35px, 5vw, 40px);
  transition: background-color 0.3s ease;
}

.visit-btn:hover {
  background-color: #f4a261;
}


/* Dropdown Menus */
.services-dropdown,
.web-designing-dropdown,
.school-management-dropdown {
  position: absolute;
  width: clamp(200px, 30vw, 250px);
  top: 100%; /* Open downward for "Services" dropdown */
  background-color: white;
  border-radius: 4px;
  box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.1);
  display: none; /* Hide all dropdowns initially */
  z-index: 1002;
}

/* Links inside dropdown */
.services-dropdown span a,
.web-designing-dropdown span a,
.school-management-dropdown span a {
  display: block;
  padding: clamp(8px, 2vw, 10px);
  color: #555;
  text-decoration: none;
}

/* Hover Effects for Individual Dropdowns */
.services:hover .services-dropdown {
  display: block; /* Make "Services" dropdown visible on hover */
}

.web-designing-services:hover .web-designing-dropdown {
  display: block; /* Make "Web Designing" dropdown visible on hover */
}

.school-management:hover .school-management-dropdown {
  display: block; /* Make "School Management" dropdown visible on hover */
}

/* Web Designing Services Dropdown (on the right) */
.web-designing-services {
  position: relative;
}

.web-designing-services:hover .web-designing-dropdown {
  display: block;
  left: 100%; /* Position to the right of the parent */
  top: 0; /* Align directly on the same horizontal level */
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* School Management Dropdown (on the right) */
.school-management {
  position: relative;
}

.school-management:hover .school-management-dropdown {
  display: block;
  left: 100%; /* Position to the right of the parent */
  top: 0; /* Align directly on the same horizontal level */
  z-index: 1002;
}

/* Styling for Nested Dropdown Items */
.school-management-dropdown span,
.web-designing-dropdown span {
  display: block;
  width: 100%;
  border-bottom: 1px solid #d7d7d7;
}

/* Nested Links */
.school-management-dropdown a,
.web-designing-dropdown a {
  padding: 10px;
  display: block;
  color: #333;
  text-decoration: none;
}

/* Hover Effects for Links */
.services-dropdown span a:hover,
.web-designing-dropdown span a:hover,
.school-management-dropdown span a:hover {
  background-color: #f5f5f5;
  color: #f4a261;
}

/* Optional: Styling for the main menu links */
a {
  display: block;
  padding: 10px;
  color: black;
  text-decoration: none;
}

/* a:hover {
  background-color: #f0f0f0;
} */

/* Additional Styles for Dropdowns */
.services-dropdown,
.web-designing-dropdown,
.school-management-dropdown {
  display: none;
  position: absolute;
  top: 100%; /* Open downward for "Services" dropdown */
  width: clamp(200px, 30vw, 250px);
  background-color: white;
  border-radius: 4px;
  box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1002;
}

/* Adjustments for Nested Dropdowns */
.school-management-dropdown {
  left: 100%; /* Align to the right of the parent item */
  top: 0; /* Position it directly below the parent item */
  display: none;
}

/* Hover Color */
.services-dropdown span a:hover,
.web-designing-dropdown span a:hover,
.school-management-dropdown span a:hover {
  color: #f4a261;
}


/* Animated Section */
.animated-section {
  position: relative;
  top: 70px;
  width: 100%;
  height: clamp(150px, 30vw, 200px);
  padding-top: clamp(10px, 2vw, 20px);
  text-align: center;
  border-radius: 15px;
  background: url("./images/breadcrumb.png") center/cover no-repeat;
  background-size: 100% 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: clamp(150px, 15vw, 130px);
}

.animated-section h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: bold;
  animation: fadeInUp 1s ease;
}

.animated-section p {
  margin-top: clamp(10px, 2vw, 15px);
  font-size: clamp(10px, 2vw, 1.1rem);
  max-width: min(800px, 90vw);
  color: #385469;
  animation: fadeInUp 1.5s ease;
  padding: 0 clamp(10px, 3vw, 20px);
}

.animated-section .buttons {
  margin-top: clamp(15px, 3vw, 25px);
  display: flex;
  gap: clamp(10px, 2vw, 15px);
  animation: fadeInUp 2s ease;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 clamp(10px, 3vw, 20px);
}

.animated-section .buttons a {
  padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 20px);
  border-radius: 5px;
  text-decoration: none;
  background-color: #f4a261;
  color: white;
  white-space: nowrap;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  font-size: clamp(20px, 4vw, 24px);
  cursor: pointer;
  z-index: 1003;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .navbar-container {
      padding: 0 20px;
  }

  .nav-links li {
      left: clamp(20px, 5vw, 100px);
  }

  .nav-actions {
      padding-left: clamp(20px, 5vw, 100px);
  }
}

@media (max-width: 768px) {
  .navbar {
      height: auto;
  }

  .hamburger-menu {
      display: block;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: white;
      padding: 10px 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
      display: flex;
  }

  .nav-links li {
      margin: 10px 0;
      text-align: center;
      left: 0;
  }

  .nav-actions {
      width: 100%;
      justify-content: center;
      padding-left: 0;
      margin-top: 10px;
  }

  .visit-btn {
      margin-left: 0;
  }

  .services-dropdown,
  .blog-dropdown,
  .web-designing-dropdown {
      position: static;
      width: 100%;
      margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .navbar {
      top: 30px;
  }

  .top-image {
      height: 60px;
  }

  .animated-section {
      margin-top: 100px;
  }

  .logo img {
      padding-left: 10px;
  }

  .visit-btn {
      padding: 6px 15px;
      font-size: 14px;
  }
}




.employee-management-container {
  padding-left: 50px;
  margin-top: 100px;
  max-width: 1400px;
   justify-self: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.content-column {
  /* padding-right: 1.5rem; */
  padding-left: 1.5rem;
  padding-bottom: 100px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #F4A261;
  margin-bottom: 0.5rem;
}

.highlight-symbol {
  color: #ff6f61;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.highlight-text {
  color: #F4A261;
}

.section-description {
  font-size: 1.1rem; /* Keeps text readable but not too large */
  line-height: 1.6;  /* Ensures good line spacing */
  color: #555; /* Soft gray for readability */
  margin-bottom: 2rem; /* Adds space below the paragraph for separation */
  text-align: justify; /* Justifies the text for a neat look */
  margin-right: 30px;

}

.action-buttons {
  padding-top: 20px;
}

.action-buttons .btn-primary {
  /* padding: 1rem 2rem;  */
  /* font-size: 1.125rem; */
  /* font-weight: 600; */
  color: #fff;
  background-color: #F4A261;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  /* transition: background-color 0.3s ease; */
  width: 35%;
  height: 40px;
}

.action-buttons .btn-primary:hover {
  background-color: #F4A261;
}

.image-column {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.section-image {
  width: 90%;
  height: auto;
  border-radius: 15px;
}

@media (max-width: 991px) {
  .content-column, .image-column {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 1rem;
    /* margin-right: 30px; */
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
    margin-right: 30px;
  }
}

  



/* E-Learning Bottom Image Ends */

#school-attendance-benefits {
  /* padding: 50px 0; */
  background-color: #EFF5F6;

}

.attendance-benefits-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1400px;
  justify-self: center;
}

.attendance-benefits-content {
  flex: 1;
  padding: 20px;
  max-width: 600px;
  /* Optional animation or additional styles can go here */
}

.attendance-benefits-content h2 {
  font-size: 2.5rem;
  color: #ff6f61;
  margin-bottom: 20px;
  /* Add text alignment or shadow if needed */
}

.attendance-benefits-content strong {
  color: #e67a35;
}

.attendance-benefits-content p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify; /* Justify the paragraph text */
  margin-right: 30px;
}

.attendance-benefits-content ul {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  list-style: none;
  padding: 0;
}

.attendance-benefits-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  text-align: justify; /* Justify the list items */
  margin-right: 30px;
}

.attendance-benefits-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: #ff9800;
  font-size: 1.5rem;
}


.attendance-benefits-content a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #ff6f61;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  animation: bounce 2s infinite;
}

.attendance-benefits-content a:hover {
  background-color: #e55750;
  transform: scale(1.05);
}

.attendance-benefits-image {
  flex: 1;
  text-align: center;
  padding: 20px;
  width: 800px;
  animation: slideInRight 1s ease-out;
}

.attendance-benefits-image img {
  width: 100%;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  max-width: 80%;
}

/* Attendance Management Software Section */
.attendance-software-section {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 1400px;
    justify-self: center;
}
.attendance-software-content{
  margin-left: 30px;
}

.attendance-software-content h2.attendance-software-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FF6F3C;
  text-shadow: 2px 2px #FFD1A4;
 
}

.attendance-software-content strong {
  color: #e67a35;
}

.attendance-software-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.attendance-third-image .img-fluid {
  width: 100%;
  height: auto;
}

.attendace-thirs-content-image {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: space-between;
  gap: 20px;  /* Add spacing between content and image */
  max-width: 100%;
}

.attendance-software-description {
  font-size: 1.2rem;
  color: #333; /* Dark color for readability */
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify; /* Justify the text for even margins */
}

.attendance-software-description strong {
  color: #ff6f61; /* A distinct color for the strong text */
  font-weight: bold;
}

.attendance-software-description p {
  font-size: 1.1rem;
  color: #555; /* Soft gray for the paragraph text */
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify; /* Justify the paragraph text */
}

.attendance-software-description p strong {
  color: #e67a35; /* Highlight the strong text in a different color */
}

/* Keyframes for Animation */
@keyframes point-slide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */

/* Tablet and Mobile (<= 768px) */
@media (max-width: 768px) {
  .attendance-software-section {
    padding: 1rem;
  }

  .attendance-software-content h2.attendance-software-title {
    font-size: 2rem;  /* Smaller title for small screens */
  }

  .attendance-software-description {
    font-size: 1rem;  /* Smaller description font for readability */
    margin-bottom: 15px;
  }

  .attendance-software-description p {
    font-size: 1rem;  /* Adjust text size for mobile */
    margin-bottom: 12px;
  }

  .attendace-thirs-content-image {
    flex-direction: column; /* Stack content and image vertically on small screens */
    align-items: center;  /* Center content and image */
    justify-content: center;
  }

  .attendance-third-image {
    width: 100%;  /* Image takes full width on small screens */
  }

  .attendance-software-content {
    text-align: center;  /* Center the text for smaller screens */
    padding: 0 20px;  /* Add padding for spacing */
  }
}

/* Very Small Screens (<= 480px) */
@media (max-width: 480px) {
  .attendance-software-content h2.attendance-software-title {
    font-size: 1.8rem;  /* Further reduce the title size for smaller screens */
  }

  .attendance-software-description {
    font-size: 0.9rem;  /* Reduce description text size */
    margin-bottom: 10px;  /* Less margin for small screens */
  }

  .attendance-software-description p {
    font-size: 0.9rem;  /* Adjust text size for small screens */
  }

  .admission-first-buttons .btn {
    width: 100%;  /* Make the button full width on mobile */
    padding: 12px 20px;
  }

  .attendance-third-image {
    width: 90%;  /* Reduce the image width to make it fit well on small screens */
    margin-bottom: 20px; /* Add some spacing between the content and image */
  }
}

/* Responsive Design for Smaller Devices */
@media (max-width: 768px) {
  .attendance-benefits-container, .attendance-software-section {
      flex-direction: column;
      text-align: center;
  }

  .attendance-benefits-content, .attendance-benefits-image, 
  .attendance-software-content, .attendance-software-image {
      max-width: 100%;
      padding: 10px;
  }

  .attendance-benefits-content h2, 
  .attendance-software-content h2.attendance-software-title {
      font-size: 2rem;
  }

  .attendance-benefits-content p, 
  .attendance-software-content p {
      font-size: 1rem;
      text-align: justify;
  }
}


  
