/*General Reset */

* {
  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;
}



/* 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: 90px;
  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(100px, 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;
  }
}







/* Initial state with no background color */
.container-ban {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  max-width: 1400px;
  justify-self: center;
}

/* Add the 'loaded' class after the page loads */
/* .container-ban.loaded {
  opacity: 1;
  transform: translateY(0);
} */

.left-side {
  flex: 1;
  padding-left: 30px;
  text-align: left;
  /* opacity: 0; */
}

.right-side {
  flex: 1;
  text-align: center;
  /* opacity: 0; */
}

.hero-title {
  font-size: 42px;
  color: #ff7a00;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  /* opacity: 0; */
  /* animation: fadeInTop 1.5s forwards; */
}

.hero-subtitle {
  font-size: 18px;
  color: #ff9a00;
  font-weight: 600;
  margin-top: 20px;
  text-transform: uppercase; /* Capitalized styling */

  /* opacity: 0; */
  /* animation: fadeInTop 1.8s forwards; */
}

.hero-description {
  font-size: 20px;
  color: #666;
  line-height: 1.5;
  /* opacity: 0; */
  /* animation: fadeInTop 2s forwards; */
  text-align: justify; /* Justify the text to align both edges */
}

.hero-buttons .btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ff9a00;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  font-size: 16px;
  /* transition: background-color 0.3s ease, transform 0.3s ease; */
}

/* Hover effect on the button */
.hero-buttons .btn-primary:hover {
  background-color: #ff7a00;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px); /* Button hover effect with a slight lift */
}

/* Hover effect for the button: scale */
.hero-buttons .btn-primary:active {
  transform: scale(0.95);
}

.hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
  /* opacity: 0; */
  /* animation: fadeInTop 2.2s forwards; */
  margin-top: 40px;

}

/* Animations for fading and sliding */
@keyframes fadeInTop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container-ban {
    flex-direction: column;
    padding: 20px;
  }

  .left-side, .right-side {
    flex: none;
    width: 100%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    margin-top: 80px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons .btn-primary {
    padding: 10px 20px;
  }
}



/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Roboto:wght@300;400;700&display=swap');


.admission-features-section {
  width: 100%;          /* Full width */
  height: 100vh;        /* Full viewport height, or adjust to your desired height */
  margin: 0;            /* Remove margin from all sides */
  padding: 0;           /* Remove padding from all sides */
  box-sizing: border-box; /* Ensure padding and borders are included in width/height calculations */
  max-width: 1400px;
 justify-self: center;
}

/* Admission Benefits Section */
.admission-benefits-section {
  background-color: #f8f8f8;
  width: 100%;
  /* padding: 50px 0; */
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
 
}
.admission-benefits-section .wrapper{
  max-width: 1400px;
  justify-self: center;
}

.admission-second-header h2 {
  font-size: 2.2rem;
  color: #333;
  /* padding-top: 20px; */
  text-align: center; /* Center the header */
 
}

.admission-second-content-image {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the content horizontally */
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  width: 100%;
}

.admission-second-image {
  margin: 20px;
  display: flex;
  justify-content: center; /* Center image inside its container */
  align-items: center;
}

.admission-second-image img {
  width: 100%;
  
  height: auto;
  object-fit: cover;
}

.admission-second-content {
  flex: 1;
  margin: 20px;
  max-width: 100%; /* Limit the max-width of the content for better readability */
  text-align: center; /* Center content text */
  padding: 0 20px; /* Add padding for mobile responsiveness */
}

.admission-second-content-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

.admission-second-image img {
  margin-left: 50px;
  max-width: 100%;
  
}

.admission-second-header h2 {
  /* margin-left: 8%; */
  padding-top: 55px;
}

.admission-second-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2rem;
  text-align: justify;
  position: relative;
  left: 75px;
  max-width: 100%;
  
}
/* Responsive Adjustments */

/* For large screens (desktops) */
@media (min-width: 992px) {
  .admission-second-header h2 {
      font-size: 2.5rem; /* Larger header for larger screens */
  }

  .admission-second-content {
      max-width: 70%; /* Limit content width on large screens */
  }

  .admission-second-image {
      max-width: 50%; /* Limit image width on large screens */
  }
}

/* For medium screens (laptops and tablets) */
@media (max-width: 991px) {
  .admission-second-header h2 {
      font-size: 2rem;
  }

  .admission-second-content p {
      font-size: 16px;
  }

  .admission-second-image {
      max-width: 60%; /* Limit image width on tablets */
  }

  .admission-second-content {
      max-width: 80%; /* Increase content width on smaller screens */
  }
}

/* For small screens (mobiles) */
@media (max-width: 767px) {
  .admission-second-header h2 {
      font-size: 1.5rem; /* Smaller header for mobile */
      padding-top: 20px;

 }

  .admission-second-content p {
      font-size: 14px;
      margin-left: 0;
      text-align: justify; /* Center text on mobile */
      
  }

  .admission-second-content {
      max-width: 100%; /* Make content width full */
      text-align: justify; /* Center text */
      justify-content: center;
      padding-right: 50px;
  }

  .admission-second-image {
      max-width: 100%; /* Full-width image on mobile */
      margin-left: 0;
      margin-top: 20px;
  }

  .admission-second-content-image {
      flex-direction: column; /* Stack content and image vertically on small screens */
      align-items: center;
      justify-content: center;
  }
}

/* General Styles */
/* Admission Features Section */
.admission-features-section {
  width: 100%;
  margin: 0;
  /* padding: 50px 0; */
  box-sizing: border-box;
  height: auto;
  
}

.section-header {
  text-align: center;
  font-family: 'Merriweather', serif;
  color: #333;
  margin: 0;
  font-weight: 600;
}

.section-header h2 {
  padding-top: 20px;
  font-size: 2.5rem;
  font-weight: 600;
}

/* Flexbox layout for features row */
.features-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; /* Center content horizontally */
  /* margin-top: 40px; */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.features-description,
.admission-third-image {
  flex: 1;
  margin: 20px;
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center;
}

/* Text content styling */
.features-description .text-content {
  text-align: justify;
  font-size: 18px;
  line-height: 1.4;
  color: #444;
  margin-left: 50px;
  max-width: 100%; /* Restrict content width for better alignment */
  height: auto;
}

.features-description ul {
  list-style: none;
  padding: 0;
}

.features-description ul li {
  display: flex;
  align-items: center;
  /* margin-bottom: 10px; */
}

.features-description ul li i {
  margin-right: 10px;
  color: #ff9900;
}

/* Updated image container styling */
.admission-third-image {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.admission-third-image img {
  width: 100%;  /* Ensure image takes full width of its container */
  height: auto;
  object-fit: contain; /* Ensure image maintains aspect ratio */
  box-shadow: none;
  /* margin-bottom: 120px; */
}

/* Responsive Adjustments */

/* For large screens (desktops) */
@media (min-width: 1200px) {
  .features-description .text-content {
    font-size: 20px; /* Larger text for desktops */
  }
  .admission-third-image {
    max-width: 50%; /* Image width is reduced to 50% of the section */
  }
}

/* For medium screens (laptops and tablets) */
@media (max-width: 991px) {
  .features-description .text-content {
    font-size: 18px; /* Slightly smaller font for tablets */
  }
  .admission-third-image {
    max-width: 60%; /* Image width adjusted for tablets */
  }

  .features-row {
    flex-direction: column; /* Stack content and image vertically */
    text-align: center;
  }
}

/* For small screens (mobiles) */
@media (max-width: 767px) {
  .section-header h2 {
    font-size: 1.5rem; /* Smaller header for mobile */
  }

  .features-description .text-content {
    font-size: 16px; /* Smaller font for mobile */
    text-align: justify; /* Center text on mobile */
    margin-bottom: 10px; /* Adjust bottom margin */

  }

  .admission-third-image img {
    max-width: 90%; /* Image width adjusted to fit on smaller screens */
  }

  .features-row {
    flex-direction: column; /* Stack content and image vertically */
    text-align: center;
  }

  .features-description {
    max-width: 90%; /* Content takes up more space on small screens */
  }
}




















/* Media Queries for Responsiveness */
/* @media (max-width: 1200px) {
  .wrapper{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  } 
  .features-row {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .features-description .text-content {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .admission-third-image img {
    width: 90%;
    height: auto;
  }
  .admission-second-image img{
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .wrapper{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }

  .features-description .text-content {
    font-size: 16px;
    margin-left: 10px;
  }

  .admission-second-header h2 {
    margin-left: 30%;
    font-size: 1.5rem;
  }

  .admission-second-content p {
    font-size: 16px;
    margin-left: 10px;
  }

  .admission-second-image img {
    width: 100%;
    height: auto;
    margin-left: 20px;
  }

  .admission-third-image img {
    width: 100%;
    height: 50%;
  }

  .features-description ul li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .wrapper{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }

  .features-description .text-content {
    font-size: 14px;
    margin-left: 5px;
  }

  .admission-second-header h2 {
    margin-left: 20%;
    font-size: 1.3rem;
  }

  .admission-second-content p {
    font-size: 14px;
    margin-left: 5px;
    overflow-x: hidden;
  }

  .admission-third-image img {
    width: 100%;
    height: 50%;
  }

  .features-description ul li {
    font-size: 12px;
  }

  .admission-second-image img {
    margin-left: 10px;
    width: 100%;
    height: auto;
  }
} */


/* Responsive Design */
/* @media (max-width: 1020px) {
  .features-row {
    flex-direction: column;
    text-align: center;
  }

  .features-description, .features-image {
    text-align: center;
    padding: 10px;
  }

  .section-header {
    font-size: 1.8rem;
  }

  .features-description .text-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .features-row {
    align-items: flex-start;
  }

  .features-description, .features-image {
    width: 100%;
    padding: 10px;
  }

  .section-header {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-header {
    font-size: 1.2rem;
  }
  .features-description, .features-image {
    width: 100%;
    padding: 10px;
  }

  .features-description .text-content {
    text-align: center;
  }
  
} */

  