body {
  overflow: auto; /* or overflow: scroll; */
}

.sa{
  margin: auto; display: flex; justify-content: center;
}

/*Footer news ticker*/

.News-footer
{ position: fixed; 
  bottom: 0px ; 
  margin-left:0px; 
  width: 100%; 
  height: 40px;
  background-color: black; 
  display: inline-flex; 
  overflow: hidden; 
  white-space: nowrap; 
  z-index:99; } 
.N-text 
{ padding-top: 02px; 
  vertical-align: middle; 
  font-size: 20px; color: yellow; 
  margin: 5px; width:100%; 
  animation: marquee 10s linear infinite; 
  display: inline-block; padding-right: 10px; 
} 

.news{ 
  height:auto; 
  background-color:red; 
  padding: 6px 22px 12px 25px; 
  font-size:30px; color: black; 
  z-index:9; display: block; } 
.news:after 
{ 
  content:''; top:0; 
  transform:translateX(100%); 
  width:100%; 
  height:200px; 
  position: absolute; 
  z-index:99; animation: slide 5s infinite; 
  background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(128,186,232,0) 99%, rgba(125,185,232,0) 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0.8)), color-stop(99%,rgba(128,186,232,0)), color-stop(100%,rgba(125,185,232,0))); background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* IE10+ */ background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#007db9e8',GradientType=1 ); /* IE6-9 */ } #news-head:before{position: absolute; content: ''; top:19px;left: 9px; display: inline-block;height: 10px; width: 10px;background: #fff;animation:at-blink .4s infinite;} @keyframes at-blink{from{opacity:0}to{opacity:1}} @keyframes slide { 0% {transform:translateX(-100%);} 100% {transform:translateX(100%);} } .t-link{color:inherit!important;list-style:none;}


/* Banner image */

.banner {
  position: relative;
  padding: 6em 0 8em 0;
  text-align: center;
  width: 100%;
  height: 160px;
  background-image: url(images/bl.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -70px;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Adjust the opacity as needed */
  z-index: -1;
}

.border {
    width: 80%;
    margin: 0 auto;
    height: 5px;
    border: 5px solid #fff;
  border-bottom: 0;
}
.banner h2 {
    margin: 60px;
    font-size: 6em;
    color: #FFFFFF;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    padding: 0.5em 0 0 0;
}

.banner p {
    color: #FFFFFF;
    font-size: 1em;
    font-weight: bold;
    margin: 1em 0 0 0;
    line-height: 2em;
    letter-spacing: 2px;
  padding: 0 0 2em 0;
}

.border-bottom {
    border-top: 30px;
    border-bottom: 2px solid #fff !important;
}

/*embossed button */

.attractive-button {
  display: inline-block;
  padding: 20px 45px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  outline: none;
  border: none;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
  background-color: #3498db;
  color: #fff;
}

.attractive-button:hover {
  background-color: #2980b9;
  transform: scale(1.05);
}

.attractive-button:active {
  background-color: #216a94;
  transform: scale(0.95);
}
/*Link button*/

.attractive-button2 {
  display: inline-block;
  width: 140px;
  height: 100px;
  background: purple;
  border: 4px solid black;
  color: black;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.attractive-button2:hover {
  background-color: #45a049;
}

.attractive-button1 {
  position: relative;
  display: inline-block;
  padding: 30px 30px;
  font-size: 20px;
  margin-left: 20px;
  text-align: center;
  text-decoration: none;
  outline: none;
  border: none;
  border-radius: 50%; /* Make it a full circle */
  box-shadow: 0 0 20px 5px #39ff14; /* Neon Green Glow */
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  cursor: pointer;
  background-color: #39ff14; /* Neon Green */
  color: #fff;
}

.attractive-button1::before {
  content: url('images/smily.'); /* Replace with your image path */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; /* Adjust the width as needed */
  height: 70px; /* Adjust the height as needed */
  background-size: cover; /* Add this line to adjust the image size */
  border-radius: 50%;
}

.attractive-button1:hover {
  background-color: ivory; /* Ivory on Hover */
  box-shadow: 0 0 30px 10px silver; /* Increased Glow on Hover */
  transform: scale(1.05);
}

.attractive-button1:active {
  background-color: #218c74; /* Even Darker Green on Active */
  box-shadow: 0 0 20px 5px #218c74; /* Decreased Glow on Active */
  transform: scale(0.95);
}



    /*round image*/

   .round-image {
    position: absolute;
    top: 0; /* Set to 0 to align with the top of the header */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 215px; /* Adjust the width as needed */
    height: 215px; /* Adjust the height as needed */
    border-radius: 50%; /* Creates a round shape */
    overflow: hidden; /* Ensures the image stays within the rounded shape */
    margin-top: -425px;
    z-index: 2; /* Set a higher z-index value to place it on top */
}


.round-image img {
    width: 100%;
    height: auto;
    display: block;
}

    /* faded edges*/

    .faded-edges-image {
      width: 500px; /* Adjust the width as needed */
      height: auto;
      mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
      margin-left: -60px;

      /*tabs neon*/

body{
  background: #000000;
  margin: 1%;
}
.tabsdiv
  position: relative;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow: hidden;
  width: 80%;
  height: 100%;
  align-self: center;

  }
}
 .tabsdiv * {
   transition: all .3s ease 0s;
}

.tab1, .tab2, .tab3, .tab4, .tab5, .tab6, .tab7, .tab8 {
  background: black;
  border: 1px solid #ffffff;
}

.tab1{
  box-shadow: 0 0.5rem 0.5rem -0.5rem #ffffff,
        0 1.5rem 1.5rem -1.5rem #FF00CC,
        inset 0 -0.5rem 0.5rem -0.5rem #ffffff,
        inset 0 -1.5rem 1.5rem -1.5rem #FF00CC;
  animation: 3s colorblink linear infinite;
}

.tab2 {
  box-shadow: 0 0.5rem 0.5rem -0.5rem #ffffff,
        0 1.5rem 1.5rem -1.5rem #FFFB00,
        inset 0 -0.5rem 0.5rem -0.5rem #ffffff,
        inset 0 -1.5rem 1.5rem -1.5rem #FFFB00;
  animation: 3s colorblink linear infinite;
  animation-delay: 1s;
}

.tab3 {
  box-shadow: 0 0.5rem 0.5rem -0.5rem #ffffff,
        0 1.5rem 1.5rem -1.5rem #FF0000,
        inset 0 -0.5rem 0.5rem -0.5rem #ffffff,
        inset 0 -1.5rem 1.5rem -1.5rem #FF0000;
  animation: 3s colorblink linear infinite;
  animation-delay: 2s;
}


.tab4 {
  box-shadow: 0 0.5rem 0.5rem -0.5rem #ffffff,
        0 1.5rem 1.5rem -1.5rem #1CFF00,
        inset 0 -0.5rem 0.5rem -0.5rem #ffffff,
        inset 0 -1.5rem 1.5rem -1.5rem #1CFF00;
  animation: 3s colorblink linear infinite;
  animation-delay: 3s;
}


.tab5 {
  box-shadow: 0 0.5rem 0.5rem -0.5rem #ffffff,
        0 1.5rem 1.5rem -1.5rem #FFFB00,
        inset 0 -0.5rem 0.5rem -0.5rem #ffffff,
        inset 0 -1.5rem 1.5rem -1.5rem #FFFB00;
  animation: 3s colorblink linear infinite;
  animation-delay: 1s;
}

.tab3, .tab7 {
  box-shadow: 0 0.5rem 0.5rem -0.5rem #ffffff,
        0 1.5rem 1.5rem -1.5rem #FF0000,
        inset 0 -0.5rem 0.5rem -0.5rem #ffffff,
        inset 0 -1.5rem 1.5rem -1.5rem #FF0000;
  animation: 3s colorblink linear infinite;
  animation-delay: 2s;
}

.tab8 {
  box-shadow: 0 0.5rem 0.5rem -0.5rem #ffffff,
        0 1.5rem 1.5rem -1.5rem #1CFF00,
        inset 0 -0.5rem 0.5rem -0.5rem #ffffff,
        inset 0 -1.5rem 1.5rem -1.5rem #1CFF00;
  animation: 3s colorblink linear infinite;
  animation-delay: 3s;
}

.tab6 {
  box-shadow: 0 0.5rem 0.5rem -0.5rem #ffffff,
        0 1.5rem 1.5rem -1.5rem #AB00FF,
        inset 0 -0.5rem 0.5rem -0.5rem #ffffff,
        inset 0 -1.5rem 1.5rem -1.5rem #AB00FF;
  animation: 3s colorblink linear infinite;
  animation-delay: 4s;
}


.tab1:hover {
  margin-right: 1%;
  box-shadow: 0 0 0.5rem #ffffff,
        0 0 1.5rem #FF00CC,
        inset 0 0 0.5rem #ffffff,
        inset 0 0 1.5rem #FF00CC;
  animation: none;
}

.tab2:hover {
  margin-right: 1%;
  box-shadow: 0 0 0.5rem #ffffff,
        0 0 1.5rem #FFFB00,
        inset 0 0 0.5rem #ffffff,
        inset 0 0 1.5rem #FFFB00;
  animation: none;
}

.tab3:hover {
  margin-right: 1%;
  box-shadow: 0 0 0.5rem #ffffff,
        0 0 1.5rem #FF0000,
        inset 0 0 0.5rem #ffffff,
        inset 0 0 1.5rem #FF0000;
  animation: none;
}

.tab4:hover {
  margin-right: 1%;
  box-shadow: 0 0 0.5rem #ffffff,
        0 0 1.5rem #1CFF00,
        inset 0 0 0.5rem #ffffff,
        inset 0 0 1.5rem #1CFF00;
  animation: none;
}

.tab5:hover {
  margin-right: 1%;
  box-shadow: 0 0 0.5rem #ffffff,
        0 0 1.5rem #FFFB00,
        inset 0 0 0.5rem #ffffff,
        inset 0 0 1.5rem #FFFB00;
  animation: none;
}

.tab6:hover {
  margin-right: 1%;
  box-shadow: 0 0 0.5rem #ffffff,
        0 0 1.5rem #FF0000,
        inset 0 0 0.5rem #ffffff,
        inset 0 0 1.5rem #FF0000;
  animation: none;
}

.tab7:hover {
  margin-right: 1%;
  box-shadow: 0 0 0.5rem #ffffff,
        0 0 1.5rem #1CFF00,
        inset 0 0 0.5rem #ffffff,
        inset 0 0 1.5rem #1CFF00;
  animation: none;
}

.tab8:hover {
  margin-right: 1%;
  box-shadow: 0 0 0.5rem #ffffff,
        0 0 1.5rem #AB00FF,
        inset 0 0 0.5rem #ffffff,
        inset 0 0 1.5rem #AB00FF;
  animation: none;
}

 /*Smooth effect for tabs*/
.tab1, .tab2, .tab3, .tab4, .tab5, .tab6, .tab7, .tab8 {
  transition: all 0.4s ease-in-out;
}

.find-tutor-btn {
  width: 1100px;
  font-size: 30px;
  font-family: arial;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  box-shadow: 0 0 15px black, 0 0 30px #0d1769;
  padding: 12px 24px;
  margin-top: -20px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.find-tutor-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, black);
}

.hapana a{
  color: white; font-size: 32px; text-decoration: none;
}

.hapana{
  margin: auto; display: flex; justify-content: center; align-items: center; 
  width: 250px; background: black; height: 50px; 
  border-left: 30px solid crimson; border-right: 30px solid crimson; 
  border-radius: 10px; border-top: 4px solid yellow; 
  border-bottom: 4px solid yellow;"
}
.hapana:hover{
  transform: translateY(-4px);
  background-color: navy;
}
.articlecontainer {
   list-style: none;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   overflow: hidden;
   width: 90%;
   margin: auto;
   height: auto;
   padding: 2%;
   color: white;
   text-align: center;
}

.articlecontainer h2{
  font-size: 16px;
  margin-top: 20px;
}

.tabsdiv article {
   flex: initial;
   width: 20%;
   height: 100%;
   text-align: center;
   color: #ffffff;
   text-decoration: none;
   vertical-align: bottom;
   box-sizing: border-box;
   padding: 2vh 1vw;
   position: relative;
}

.tabsdiv > .articlecontainer:hover article {
   flex: initial;
   width: 5%;
}

.articleinnerdiv {
  opacity: 0;
  transition: opacity .2s ease 0;
  text-align: left;
  width: 100%;
  padding: 5%;
}
 .tabsdiv article:hover > .articleinnerdiv {
   opacity: 1;
   transition: opacity .3s ease .3s;
}
 .tabsdiv article > h2 {
   bottom: 2.2vh;
   left: 0;
   position: absolute;
   text-align: center;
   width: 100%;
   margin: 0;
   font-size: 2rem;
}
.articlecontainer:hover article > h2 {
   bottom: 2.8vh;
   font-size: 1rem;
}
.tabsdiv article:hover > h2 {
  opacity:0;
}

.articleinnerdiv p, .articleinnerdiv h2{
   width: 10vw;
}

.tabsdiv p {
   width: 10vw;
}

.tabsdiv h2 {
  text-transform: uppercase;
}

.articlecontainer article > h2 {
  padding: 5px;
}

 @media (max-width: 900px) {
.aboutwebsite article {
     padding: 2vh 3vw;
  }
   
.tabsdiv article > h2 {
     transform: rotate(90deg);
     bottom: 25vh;
     min-width: 12em;
     text-align: left;
     transform: rotate(-90deg);
     transform-origin: 0 0 0;
     opacity: 1;
  }
.tabsdiv article:hover > h2 {
     opacity: 0;
  }
.articleinnerdiv {
     max-height: calc(72%);
     overflow-y: auto;
  }
.articleinnerdiv p {
     width: 50vw;
  }
}

@keyframes colorblink {
  30% {
    box-shadow: none;
  }
}


/*....frame..............*/


/* Social Media */

.wrapper2{
  position: absolute;
  display: block;
  margin-left: 80px;
  vertical-align: super;

}

* {
  margin: 0;
  padding: 0;
}

body {
  background: #30333A;
}

.wrapper10 {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}

ul {
  list-style: none;
}

ul li {
  width: 50px;
  height: 50px;
  position: relative;
  background: #e59500;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

ul li .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #fff;
}

ul li.facebook{
  background: #ed1561;
}

ul li.twitter{
  background: #00aced;
}

ul li.instagram{
  background: #091bde;
}

ul li.youtube{
  background: #FF0000;
}

ul li.whatsapp{
  background: #4dc247;
}

ul li.facebook div.slider{
  background: #eb4034;
}

ul li.twitter div.slider{
  background: #10a333;
}

ul li.instagram div.slider{
  background: #3232e6;
}

ul li.youtube div.slider{
  background: #858f87;
}

ul li.whatsapp div.slider{
  background: #f2dc13;
}


.slider {
  content: "";
  position: absolute;
  top: 0;
  left: 51px;
  width: 50px;
  height: 50px;
  background: #db16de;
  border-radius: 3px;
  transition: all 0.5s 0.3s ease;

}

.slider p {
  font-family: arial;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
  color: #1a1917;
  text-align: center;
  line-height: 50px;
  opacity: 0;
  transition: all 0.6s ease;
}

ul li:hover .slider {
  width: 210px;
  transition: all 0.5s ease;
}

ul li:hover .slider p {
  opacity: 1;
  transition: all 1s 0.2s ease;
}

/* Right side slider */

.wrapper3{
  position: absolute;
  display: block;
  margin-left: 0px;
  vertical-align: super;

}


ul {
  list-style: none;
}

ul li {
  width: 160px;
  height: 72px;
  position: relative;
  background: #e59500;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

ul li .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(50%, 50%);
  font-size: 20px;
  color: #fff;
}

ul li.facebook{
  background: #000000;
}

ul li.twitter{
  background: #f7f7f7;
}

ul li.instagram{
  background: #000000;
}

ul li.youtube{
  background: #e88e8e;
}

ul li.whatsapp{
  background: #000000;
}

ul li.facebook div.slider1{
  background: #f2dc13;
}

ul li.twitter div.slider1{
  background: #10a333;
}

ul li.instagram div.slider1{
  background: #3232e6;
}

ul li.youtube div.slider1 {
  background: #858f87;
}

ul li.whatsapp div.slider1{
  background: #ed3713;
}

.slider1 {
  content: "";
  position: absolute;
  top: 0;
  left : 55px;
  width: 50px;
  height: 50px;
  background: #db16de;
  border-radius: 3px;
  transition: all 0.5s 0.3s ease;
}

.slider1 p {
  font-family: arial;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
  color: #1a1917;
  text-align: center;
  line-height: 50px;
  opacity: 0;
  transition: all 0.6s ease;
}

ul li:hover .slider1 {
  width: 210px;
  left: -96px;
  transition: all 0.5s ease;
}

ul li:hover .slider1 p {
  opacity: 1;
  transition: all 1s 0.2s ease;
}

/* Neon bar */

.container5 {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: -350px;
      margin-right: 0px;
    }

    .transparent-bar {
      width: 1000px; /* Adjust the width as needed */
      height: 80px; /* Adjust the height as needed */
      background-color: rgba(211, 211, 211, 0.2); /* Adjust the opacity as needed */
      position: relative;
      box-shadow: 0 0 10px rgba(169, 169, 169, 0.8), 0 0 20px rgba(169, 159, 149, 0.8), 0 0 40px rgba(45, 55, 0, 0.7);
      border-radius: 5px;
      opacity: 0.6;
    }

    /* embossed-text   */

    .embossed-text {
      font-size: 20px;
      color: blanchedalmond; /* Silver color */
      text-align: center;
      text-shadow: 1px 1px 1px #fff, -1px -1px 1px #000;
    }

   /* footer */

.footer {
  display: flex;
  flex: 1;
  padding: 10px;
  background-color: #f0f0f0;
  margin: 5px;
  padding: 10px;
  margin: 5px;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 280px;
  background-color: black;
  color: white;
  text-align: left;
  line-height: 1.6rem;
}

.footer1{
  flex: 1;
  text-align: left;
  line-height: 1.6rem;
  width: 20%; 
  margin-left: 0px;
}

.container6 {
  display: flex;
  justify-content: space-between;
  margin-top: -25px; 
}

.merged-columns {
  display: flex;
  flex-direction: column;
  align-items: center;
}



