*{
    padding:0%;
    margin:0%;
    text-decoration:none;
    list-style:none;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: trasparent;
}
#navbar{
    position: fixed;
    top: 0;
    left: 0;
    height: 10%;
    width: 100%;
    display: grid;
    place-items: center;
    box-shadow: 0 0px 10px rgba(24,73,103);
    background-color: white; /* Important to make it opaque */
    z-index: 1000; /* Raised to ensure it's on top */
}
#navbar #logo{
    position: absolute;
    left:5%;
    height:100%;
    width:14%;
    background-color: aqua;

}
#navbar #logo img{
    height:100%;
    width:100%;
}
#navbar #navul1{
    float: right;
    position: absolute;
    right: 5%;
}
#navbar #navul1 li{
    display: inline-block;
    margin-left:40px;
}
#navbar #navul1 li a{
    color:rgba(24,73,103);
    font-size: 17px;
}
#navbar #navul1 li:last-child {
  background-color: rgba(24,73,103);
  padding: 10px;
  border-radius: 5px;
}
#navbar #navul1 li:last-child a{
  color:#fff;
}
#navbar #opnbtn{
	position:absolute;
	height:70%;
	width:3%;
	background:#fff;
	top:11%;
	left:1%;
	border:none;
    display: none;
}
#nav{
    position: fixed;
    top:10%;
    left:0%;
    width:0%;
    height:90%;
    background-color: rgba(0,0,0,0.5);
	transition: 0.5s;
}
#nav #ul{
    position: fixed;
    top:10%;
    left:0%;
    width:70%;
    height:100%;
    background-color: #fff;
    display: none;
    transition: 0.5s;
}
#nav #ul li{
    margin: 30px;
}
#nav #ul li:first-child button{
    position: absolute;
    top:3%;
    right: 10%;
    font-size: 30px;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0%;
    margin: 0%;
}
#nav #ul li a{
    font-size: 20px;
    color:rgba(24,73,103)

}
/*Banner*/
#banner{
    position:absolute;
    top:10%;
    left:0%;
    height: 90%;
    width: 100%;
    background-color: #f8fbff;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, #f8fbff, #ffffff);
    background-size: 40px 40px;
    background-position: top left;
}
#banner .des{
    position:absolute;
    top:50%;
    left:5%;
    transform: translateY(-50%);
    width: 45%;
}
#banner .des h1{
    font-size: 5rem;
    color: rgb(4, 155, 255);
}
#banner .des p{
    font-size: 1rem;
}
#banner #imagebg{
    position: absolute;
    top:20%;
    right:5%;
    transform: translateY(-50%);
    height: 65%;
    width:40%;
    background-image: url("../images/bg/bg1.png");
    background-size: cover;
    border-radius: 20px;
    animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
    0%, 100% {
       transform: translateY(0);
    }
    50% {
       transform: translateY(-20px);
    }
}
#banner .des #syj{
    padding:15px;
    background:rgb(4, 155, 255);
    color:#FFF;
    margin-top:20px;
    border-radius:5px;
}
#banner .des #wv{
    padding:15px;
    background:#fff;
    color:rgb(4, 155, 255);
    margin-left:20px;
    border-radius:5px;
    border:1px solid rgb(4, 155, 255);
}
/*OUR FRATERNITY*/
#fret{
    position: absolute;
    top:100%;
    left:0%;
    height:50%;
    width:100%;
    display: grid;
    place-items: center;
    background-color: #fff;
}
#fret h1{
    width:100%;
    text-align: center;
    font-size: 5rem;
    color: rgb(4, 155, 255);
}
.counters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
}
.counter {
  font-size: 3.2em;
  font-weight: bold;
}
.label {
  font-size: 2.2em;
  margin-top: 8px;
}
.counter-box {
  min-width: 120px;
  text-align: center;
  color: rgba(24,73,103);
}
.section {
  position: absolute;
  top: 150%;
  left:0%;
  width:100%;
  height: 100%;
  text-align: center;
  background-color: #f5f9ff;
  display: grid;
  place-items: center;
}
.section h2 {
  font-size: 2.5rem;
  margin-top: 30px;
}
.section p {
  color: #666;
  font-size: 1.5rem;
  margin-bottom: 40px;
}
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  height: 100%;
  width: 80%;
  margin-bottom: 30px;
}
.card {
  flex: 1 1 250px;
  width: 30%;
  height: 70%;
  background: #cfe2ff;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  transition: 0.3s ease;
}
.card:nth-child(2) {
  background: #f3e4ff;
}
.card:nth-child(3) {
  background: #e3fff6;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.card .icon {
  width: 50px;
  height: 50px;
  background: #007bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 24px;
}
.card:nth-child(2) .icon {
  background: #a052e0;
}
.card:nth-child(3) .icon {
  background: #00b37a;
}
.card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.card span {
  display: block;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}
.card ul {
  list-style: none;
  margin-bottom: 20px;
}
.card ul li {
  margin: 8px 0;
  color: #333;
  padding-left: 20px;
  position: relative;
}
.card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00b37a;
  font-weight: bold;
}
.card button {
  display: block;
  width: 100%;
  padding: 10px;
  background: #007bff;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}
.card:nth-child(2) button {
  background: #a052e0;
}
.card:nth-child(3) button {
  background: #00b37a;
}
.card button:hover {
  opacity: 0.9;
}
.features {
  position: absolute;
  top:250%;
  left:0%;
  width: 100%;
  height: 30%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: center;
  background-color: #fff;
}
.feature-box {
    margin-top:50px;
  width: 200px;
}
.feature-icon {
  background-color: #e9f0fa;
  border-radius: 10px;
  padding: 15px;
  display: inline-block;
  margin-bottom: 15px;
}
.feature-icon i {
  color: #0d6efd;
  font-size: 24px;
}
.feature-title {
  font-weight: bold;
  margin-bottom: 5px;
}
.feature-text {
  font-size: 14px;
  color: #333;
}
.container {
  position:absolute;
  top:250%;
  left:0%;
  width:100%;
  height:90%;
  background-color: #cfe2ff;
  max-width: 1200px;
  margin: auto;
}
.container h1 {
  color: #111;
  margin-bottom: 10px;
}
.container p {
  margin-bottom: 15px;
}
.container .mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.container .mission-vision .card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 20px;
  border-left: 5px solid #007BFF;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.container .mission-vision .card h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
}
.container .why-choose {
  margin-top: 30px;
}
.container .why-choose ul {
  list-style: none;
  padding-left: 20px;
}
.container .why-choose li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.container .why-choose li::before {
  content: '⭐';
  position: absolute;
  left: 0;
  top: 0;
}
.container .stats-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.container .stats-image .stats-box {
  display: flex;
  justify-content: space-around;
  background: #5a7f38;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  width: 100%;
  max-width: 600px;
}
.container .stats-image .stats-box .stat {
  text-align: center;
}
.container .stats-image .stats-box .stat h2 {
  font-size: 1.8em;
  margin-bottom: 5px;
}
.container .stats-image .institute-img {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  margin-bottom: 20px;
}
#about{
  position: absolute;
  top:280%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: grid;
  place-items: center;
}
.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 1200px;
  margin: auto;
}

.text-content {
  flex: 1 1 55%;
  padding-right: 20px;
}

.text-content h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1a202c;
}

.text-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.mission-vision {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.mission-vision .box {
  background: #f1f5f9;
  padding: 15px;
  border-radius: 8px;
  flex: 1 1 250px;
}

.mission-vision h3 {
  margin-bottom: 10px;
  color: #2d3748;
}

#about .about-section .text-content .featur {
  list-style: none;
  margin-top: 10px;
}

#about .about-section .text-content  .featur li {
  margin-bottom: 8px;
  color: #444;
}

.image-section {
  flex: 1 1 40%;
  position: relative;
  text-align: center;
}

.image-section img {
  position: absolute;
  top:50%;
  left: 0%;
  transform: translateY(-50%);
  max-width: 100%;
  border-radius: 12px;
  height: auto;
}

.highlight-box {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #94c947;
  color: #fff;
  display: flex;
  justify-content: space-around;
  gap: 40px;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.highlight-box div {
  text-align: center;
}
#facilities{
    position:absolute;
    top:380%;
    left:0%;
    height:100%;
    width:100%;
    background:#fff;
}
#facilities h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
  text-align:center;
}

#facilities p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Facility Cards */
#features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 60px;
}

.facility-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
}

.facility-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.facility-card h3 {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 10px;
}

.facility-card p {
  font-size: 0.95rem;
  color: #666;
}

/* Icon Features */
#icon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 20px;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}

.icon-card {
  background-color: #bbd1fa;
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}

.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.icon-card:nth-child(2) {
  background-color: #c1fabb;
}
.icon-card:nth-child(3) {
  background-color: #f2fabb;
  color: #333;
}
.icon-card:nth-child(4) {
  background-color: #f5bbfa;
}

.icon-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.icon-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: bold;
}

.icon-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.icon-card p {
  font-size: 0.9rem;
  line-height: 1.4;
}
#contact {
  position: absolute;
  top:500%;
  left:0%;
  height:100%;
  width:100%;
  text-align: center;
  background-color: #0747a6;
}

#contact h2 {
  font-size: 2.5rem;
  margin-top: 50px;
  margin-bottom: 10px;
  color: #fff;
}

#contact .subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #e0e0e0;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
}


/* Contact Info Styling */
.contact-info {
  padding: 30px;
  border-radius: 10px;
  flex: 1 1 300px;
  color: #fff;
  text-align: left;
  line-height: 1.5rem;
}

.contact-info h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.contact-info p ul {
  margin-left: 15px;
}

.contact-info a {
  color: #add8ff;
  text-decoration: none;
}

/* Contact Form Styling */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  flex: 1 1 300px;
  color: #fff;
  text-align: left;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #000;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  background: #fff;
  color: #000;
  box-sizing: border-box;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #0052cc;
  color: white;
  font-weight: bold;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #003d99;
}

.form-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-group input {
  flex: 1;
}
/* Footer Styles */
.footer {
  position:absolute;
  top:600%;
  left:0%;
  width:100%;
  background-color: #0c1122;
  color: #dcdcdc;
  padding-top: 40px;
  padding-bottom: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-column ul li a {
  color: #dcdcdc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.logo-box {
  background-color: #2d7df4;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1.2rem;
}

.small-text {
  font-size: 0.8rem;
  color: #ccc;
}

.footer hr {
  border: none;
  border-top: 1px solid #333;
  margin: 20px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}
@media screen and (max-width: 480px) and (max-height: 700px){
    #navbar #opnbtn{
        position:absolute;
        height:70%;
        width:3%;
        background:#fff;
        top:50%;
        left:10%;
        transform: translateY(-50%);
        border:none;
        display: block;
    }
    #navbar #navul1{
        display: none;
    }
    #navbar #logo{
        position: absolute;
        top:50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background-color: #fff;
        height: 95%;
        width:45%;
    }
    #nav{
        z-index: 1;
    }
    #banner .des{
        position:absolute;
        top:10%;
        left:50%;
        transform: translateX(-50%);
        width: 80%;
    }
    #banner .des h1{
        font-size: 2.5rem;
    }       
    #banner .des p {
        font-size: 0.9rem;
    }
    #banner .des #syj{
        padding:10px;
        background:rgb(4, 155, 255);
        color:#FFF;
        margin-top:20px;
        border-radius:5px;
        font-size: 0.9rem;
    }
    #banner .des #wv{
        padding:10px;
        background:#fff;
        color:rgb(4, 155, 255);
        border-radius:5px;
        border:1px solid rgb(4, 155, 255);
        font-size: 0.7rem;
        display:none;
    }
    #banner #imagebg{
        position: absolute;
        top:65%;
        left:10%;
        height: 30%;
        width:80%;
        background-image: url("../images/bg/bg1.png");
        background-size: cover;
        border-radius: 20px;
        animation: floatUpDown 3s ease-in-out infinite;
    }   
    @keyframes floatUpDown {
        0%, 100% {
        transform: translateY(0);
        }
        50% {
        transform: translateY(-20px);
        }
    }
    #fret{
        position: absolute;
        top:100%;
        left:0%;
        height:100%;
        width:100%;
        display: grid;
        place-items: center;
        background-color: #FFF;
    }
    #fret h1{
        position: absolute;
        top:10%;
        width:100%;
        text-align: center;
        font-size: 2.5rem;
        color: rgb(4, 155, 255);
    }
    .counters {
        position: absolute;
        top:20%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 100px;
        margin: 0%;
    }
    .counter {
        font-size: 2.5em;
        font-weight: bold;
    }
    .label {
        font-size: 2em;
        margin-top: 8px;
    }
    .counter-box {
        min-width: 120px;
        text-align: center;
        color: rgba(24,73,103);
    }
    .section {
        position: absolute;
        top: 200%;
        left:0%;
        width:100%;
        height: 200%;
    }
    .section h2 {
        font-size: 2em;
        margin-top: 30px;
    }
    .section p {
        color: #666;
        font-size: 0.8rem;
    }   
    .card {
        height: 27%;
        max-width: 100%;
    }
    
    .features{
        position: absolute;
        top: 400%;
        height: 100%;
        background-color: #fff;
        display: flow;
    }
    .feature-box {
        width: 100%;
        height: 25%;
        margin: 0%;
        display: grid;
        justify-content: center;
        align-items: end;
        justify-items: center;
        align-content: center;
    }
    #about{
        position: absolute;
        top:500%;
        left: 0%;
    }
    .about-section {
        box-shadow: 0 0px 10px #fff;
        flex-direction: column;
    }

    .text-content {
        padding-right: 0;
    }

    .highlight-box {
        position: static;
        transform: none;
        margin-top: 15px;
    }
    .image-section {
        display: none;
    }
    #facilities{
        position:absolute;
        top:670%;
    }
    /* Icon Features */
    #icon {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .icon-card {
      padding: 20px;
    }
  
    .icon-card h4 {
      font-size: 1rem;
    }
  
    .icon-card p {
      font-size: 0.85rem;
    }
    #contact{
      position: absolute;
      top:1050%;
      left:0%;
      height:100%;
    }
    .contact-form{
      border-radius: 0%;
    }
    .footer{
      position: absolute;
      top:1240%;
      left:0%;
      width:100%;
    }
    .footer-container {
      width:80%;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-column {
      width: 100%;
    }

    .logo {
      flex-direction: row;
    }
}
@media screen and (max-width: 480px) and (min-height: 700px) and (max-height: 897px) {
        #navbar #opnbtn{
        position:absolute;
        height:70%;
        width:3%;
        background:#fff;
        top:50%;
        left:10%;
        transform: translateY(-50%);
        border:none;
        display: block;
    }
    #navbar #navul1{
        display: none;
    }
    #navbar #logo{
        position: absolute;
        top:50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background-color: #fff;
        height: 95%;
        width:45%;
    }
    #nav{
        z-index: 1;
    }
    #banner .des{
        position:absolute;
        top:10%;
        left:50%;
        transform: translateX(-50%);
        width: 80%;
    }
    #banner .des h1{
        font-size: 2.5rem;
    }       
    #banner .des p {
        font-size: 1.2rem;
    }
    #banner .des #syj{
        padding: 13px;
        background: rgb(4, 155, 255);
        color: #FFF;
        margin-top: 20px;
        border-radius: 5px;
        font-size: 1.2rem;
    }
    #banner .des #wv{
        padding:10px;
        background:#fff;
        color:rgb(4, 155, 255);
        border-radius:5px;
        border:1px solid rgb(4, 155, 255);
        font-size: 0.7rem;
        display:none;
    }
    #banner #imagebg{
        position: absolute;
        top:65%;
        left:10%;
        height: 30%;
        width:80%;
        background-image: url("../images/bg/bg1.png");
        background-size: cover;
        border-radius: 20px;
        animation: floatUpDown 3s ease-in-out infinite;
    }   
    @keyframes floatUpDown {
        0%, 100% {
        transform: translateY(0);
        }
        50% {
        transform: translateY(-20px);
        }
    }
    #fret{
        position: absolute;
        top: 100%;
        left: 0%;
        height: 82%;
        width: 100%;
        display: grid;
        place-items: center;
        background-color: #ffffff;
    }
    #fret h1{
        position: absolute;
        top:10%;
        width:100%;
        text-align: center;
        font-size: 2.5rem;
        color: rgb(4, 155, 255);
    }
    .counters {
        position: absolute;
        top:20%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 100px;
        margin: 0%;
    }
    .counter {
        font-size: 2.5em;
        font-weight: bold;
    }
    .label {
        font-size: 2em;
        margin-top: 8px;
    }
    .counter-box {
        min-width: 120px;
        text-align: center;
        color: rgba(24,73,103);
    }
    .section {
        position: absolute;
        top: 182%;
        left: 0%;
        width: 100%;
        height: 150%;
    }
    .section h2 {
        font-size: 2em;
        margin-top: 30px;
    }
    .section p {
        color: #666;
        font-size: 0.8rem;
    }   
    .card {
        height: 27%;
        max-width: 100%;
    }
    
    .features{
        position: absolute;
        top: 335%;
        height: 100%;
        background-color: #fff;
        display: flow;
    }
    .feature-box {
        width: 100%;
        height: 25%;
        margin: 0%;
        display: grid;
        justify-content: center;
        align-items: end;
        justify-items: center;
        align-content: center;
    }
    #about{
        position: absolute;
        top:440%;
        left: 0%;
    }
    .about-section {
        box-shadow: 0 0px 10px #fff;
        flex-direction: column;
    }

    .text-content {
        padding-right: 0;
    }

    .highlight-box {
        position: static;
        transform: none;
        margin-top: 15px;
    }
    .image-section {
        display: none;
    }
    #facilities{
        position:absolute;
        top:570%;
    }
    /* Icon Features */
    #icon {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .icon-card {
      padding: 20px;
    }
  
    .icon-card h4 {
      font-size: 1rem;
    }
  
    .icon-card p {
      font-size: 0.85rem;
    }
    #contact{
      position: absolute;
      top:860%;
      left:0%;
      height:100%;
    }
    .contact-form{
      margin-top: 10px;
      border-radius: 0%;
    }
    .footer{
      position: absolute;
      top:1005%;
      left:0%;
      width:100%;
    }
    .footer-container {
      width:80%;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-column {
      width: 100%;
    }

    .logo {
      flex-direction: row;
    }
}
@media screen and (max-width: 480px) and (min-height: 897px) and (max-height: 1000px) {
    #navbar #opnbtn{
        position:absolute;
        height:70%;
        width:3%;
        background:#fff;
        top:50%;
        left:10%;
        transform: translateY(-50%);
        border:none;
        display: block;
    }
    #navbar #navul1{
        display: none;
    }
    #navbar #logo{
        position: absolute;
        top:50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background-color: #fff;
        height: 95%;
        width:45%;
    }
    #nav{
        z-index: 1;
    }
    #banner .des{
        position:absolute;
        top:10%;
        left:50%;
        transform: translateX(-50%);
        width: 80%;
    }
    #banner .des h1{
        font-size: 3rem;
    }       
    #banner .des p {
        font-size: 1.5rem;
    }
    #banner .des #syj{
        padding: 13px;
        background: rgb(4, 155, 255);
        color: #FFF;
        margin-top: 20px;
        border-radius: 5px;
        font-size: 1.2rem;
    }
    #banner .des #wv{
        padding:10px;
        background:#fff;
        color:rgb(4, 155, 255);
        border-radius:5px;
        border:1px solid rgb(4, 155, 255);
        font-size: 0.7rem;
        display:none;
    }
    #banner #imagebg{
        position: absolute;
        top:65%;
        left:10%;
        height: 30%;
        width:80%;
        background-image: url("../images/bg/bg1.png");
        background-size: cover;
        border-radius: 20px;
        animation: floatUpDown 3s ease-in-out infinite;
    }   
    @keyframes floatUpDown {
        0%, 100% {
        transform: translateY(0);
        }
        50% {
        transform: translateY(-20px);
        }
    }
    #fret{
        position: absolute;
        top: 100%;
        left: 0%;
        height: 82%;
        width: 100%;
        display: grid;
        place-items: center;
        background-color: #ffffff;
    }
    #fret h1{
        position: absolute;
        top:10%;
        width:100%;
        text-align: center;
        font-size: 2.5rem;
        color: rgb(4, 155, 255);
    }
    .counters {
        position: absolute;
        top:20%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 100px;
        margin: 0%;
    }
    .counter {
        font-size: 2.5em;
        font-weight: bold;
    }
    .label {
        font-size: 2em;
        margin-top: 8px;
    }
    .counter-box {
        min-width: 120px;
        text-align: center;
        color: rgba(24,73,103);
    }
    .section {
        position: absolute;
        top: 182%;
        left: 0%;
        width: 100%;
        height: 150%;
    }
    .section h2 {
        font-size: 2em;
        margin-top: 30px;
    }
    .section p {
        color: #666;
        font-size: 0.8rem;
    }   
    .card {
        height: 27%;
        max-width: 100%;
    }
    
    .features{
        position: absolute;
        top: 335%;
        height: 100%;
        background-color: #fff;
        display: flow;
    }
    .feature-box {
        width: 100%;
        height: 25%;
        margin: 0%;
        display: grid;
        justify-content: center;
        align-items: end;
        justify-items: center;
        align-content: center;
    }
    #about{
        position: absolute;
        top:440%;
        left: 0%;
    }
    .about-section {
        box-shadow: 0 0px 10px #fff;
        flex-direction: column;
    }

    .text-content {
        padding-right: 0;
    }

    .highlight-box {
        position: static;
        transform: none;
        margin-top: 15px;
    }
    .image-section {
        display: none;
    }
    #facilities{
        position:absolute;
        top:550%;
    }
    /* Icon Features */
    #icon {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .icon-card {
      padding: 20px;
    }
  
    .icon-card h4 {
      font-size: 1rem;
    }
  
    .icon-card p {
      font-size: 0.85rem;
    }
    #contact{
      position: absolute;
      top:810%;
      left:0%;
      height:100%;
    }
    .contact-form{
      margin-top: 10px;
      border-radius: 0%;
    }
    .footer{
      position: absolute;
      top:940%;
      left:0%;
      width:100%;
    }
    .footer-container {
      width:80%;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-column {
      width: 100%;
    }

    .logo {
      flex-direction: row;
    }
}
@media screen and (max-width: 768px) and (min-height: 1000px) and (max-height: 1200px) {
    #navbar #opnbtn{
        position:absolute;
        height:70%;
        width:3%;
        background:#fff;
        top:50%;
        left:10%;
        transform: translateY(-50%);
        border:none;
        display: block;
    }
    #navbar #navul1{
        display: none;
    }
    #navbar #logo{
        position: absolute;
        top:50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background-color: #fff;
        height: 95%;
        width:45%;
    }
    #nav{
        z-index: 1;
    }
    #banner .des{
        position:absolute;
        top:10%;
        left:50%;
        transform: translateX(-50%);
        width: 80%;
    }
    #banner .des h1{
        font-size: 5rem;
    }       
    #banner .des p {
        font-size: 2rem;
    }
    #banner .des #syj{
        padding: 15px;
        background: rgb(4, 155, 255);
        color: #FFF;
        margin-top: 20px;
        border-radius: 5px;
        font-size: 1.5rem;
    }
    #banner .des #wv{
        padding:10px;
        background:#fff;
        color:rgb(4, 155, 255);
        border-radius:5px;
        border:1px solid rgb(4, 155, 255);
        font-size: 0.7rem;
        display:none;
    }
    #banner #imagebg{
        position: absolute;
        top:65%;
        left:10%;
        height: 30%;
        width:80%;
        background-image: url("../images/bg/bg1.png");
        background-size: cover;
        border-radius: 20px;
        animation: floatUpDown 3s ease-in-out infinite;
    }   
    @keyframes floatUpDown {
        0%, 100% {
        transform: translateY(0);
        }
        50% {
        transform: translateY(-20px);
        }
    }
    #fret{
        position: absolute;
        top: 100%;
        left: 0%;
        height: 82%;
        width: 100%;
        display: grid;
        place-items: center;
        background-color: #ffffff;
    }
    #fret h1{
        position: absolute;
        top:10%;
        width:100%;
        text-align: center;
        font-size: 4rem;
        color: rgb(4, 155, 255);
    }
    .counters {
        position: absolute;
        top:20%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 100px;
        margin: 0%;
    }
    .counter {
        font-size: 2.5em;
        font-weight: bold;
    }
    .label {
        font-size: 1.2em;
        margin-top: 8px;
    }
    .counter-box {
        min-width: 120px;
        text-align: center;
        color: rgba(24,73,103);
    }
    .section {
        position: absolute;
        top: 135%;
        left: 0%;
        width: 100%;
        height: 80%;
    }
    .section h2 {
        font-size: 4em;
        margin-top: 30px;
    }
    .section p {
        color: #666;
        font-size: 1.2rem;
    }   
    .cards-container{
      width:100%;
    }
    .card {
        height: 70%;
        max-width: 23%;
    }
    
    .features{
        position: absolute;
        top: 215%;
        height: 100%;
        background-color: #fff;
        display: flow;
    }
    .feature-title{
      font-weight: bold;
      margin-bottom: 5px;
      font-size: 1.5em;
    }
    .feature-box {
        width: 100%;
        height: 20%;
        margin: 0%;
        display: grid;
        justify-content: center;
        align-items: end;
        justify-items: center;
        align-content: center;
    }
    #about{
        position: absolute;
        top:300%;
        left: 0%;
        height:70%;
    }
    .about-section {
        box-shadow: 0 0px 10px #fff;
        flex-direction: column;
    }

    .text-content {
        padding-right: 0;
    }

    .text-content h1 {
        font-size: 4rem;
        margin-bottom: 15px;
        color: #1a202c;
    }

    .text-content p {
        text-align: justify;
    }

    .highlight-box {
        position: static;
        transform: none;
        margin-top: 15px;
    }
    .image-section {
        display: none;
    }
    #facilities{
        position:absolute;
        top:370%;
    }
    .facility-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        /* height: 32%; */
        width: 70%;
        padding: 20px;
        text-align: left;
        transition: transform 0.3s ease;
    }
    /* Icon Features */
    #icon {
      display: grid;
      justify-content: center;
      grid-template-rows: 1fr;
      gap: 20px;
      padding: 30px;
    }
  
    .icon-card {
        padding: 20px;
        width: 85%;
        height: 75%;
    }
  
    .icon-card h4 {
      font-size: 1rem;
    }
  
    .icon-card p {
      font-size: 0.85rem;
    }
    #contact{
      position: absolute;
      top:535%;
      left:0%;
      height:100%;
    }
    .contact-form{
      margin-top: 10px;
      border-radius: 0%;
    }
    .footer{
      position: absolute;
      top:650%;
      left:0%;
      width:100%;
    }
    .footer-container {
      width:80%;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-column {
      width: 100%;
    }

    .logo {
      flex-direction: row;
    }
}