body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.header {
    background-color: #190840;
    color: white;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}
.header span {
    margin: 0 10px;
}
.back
{
    height:100vh;
    background-image:url('back2.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.shade
{
    position: absolute;
    bottom: 0;
   /* left: 0;*/
   height:250px;
    background-color:rgb(2, 48, 71,0.5);
    /* Animation */
  animation: slideUp 1s ease-out forwards;
    
}

.hidden {
  transform: translateY(100%);
  opacity: 0;
  transition: all 1s ease-out;
}
.shade.animate {
  transform: translateY(0);
  opacity: 1;
}

.logo {
    width: 100%;
    height:100%;
    padding:10px;
}
.company_name {
    color: #FFFF04;
    margin: 10px 0;
    font-size: 60px;
}

.heading
{
    background-color: #041328;
    color:white;
    margin-bottom: 50px;
    margin-top: 50px;
    width:60%;
    font-size: 30px;
}

.section-title {
    background-color: #ff9800;
    color: rgb(12, 12, 12);
   padding: 10px;
    font-weight: bold;
    margin: 0 !important;
}
.profile {
    background-color: #0F3038;
    color: white;
    padding: 20px;
}
.profile img {
    border-radius: 50%;
    width: 200px;
    height:200px;
}


.my-content h2{
    color:#FBFB00;

}
.my-commitment p{
    font-size: large;
}
.my-commitment h4{
    color:#ff9800;
}
.benefits {
    background-color: #ff9800;
    color: white;
    padding: 10px;
    font-weight: bold;
}

.tutor-design
{
    border-radius: 20px;
}


.features ul {
    list-style-type: none;
    padding: 0;
}
.features ul li {
    margin: 10px 0;
    font-size: 16px;
}

.features p{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.features img{
    width:40px;
    height:40px;
}
.cta-button {
    display: inline-block;
    background-color: #004d40;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 20px;
    margin-top: 20px;
    font-size: 20px;
}
.book-button
{
    padding-top: 70px;
}
.review
{
    width:60%;
    Height:90%;
}

/*Book Demo Class Button design code*/
.designer-button {
      padding: 15px 40px;
      background: linear-gradient(135deg, #6e8efb, #a777e3);
      color: white;
      font-size: 18px;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 15px rgba(110, 142, 251, 0.3);
      position: relative;
      overflow: hidden;
    }

    .designer-button::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      transform: skewX(-45deg);
      transition: 0.5s;
    }

    .designer-button:hover {
      transform: scale(1.08);
      box-shadow: 0 12px 25px rgba(167, 119, 227, 0.5);
    }

    .designer-button:hover::before {
      left: 100%;
    }


    /*footer code*/
.footer
{
    background-color: black;
    color:white;
}
.icon,.globe
{
    width:40px;
    height:40px;
}  
.country ul {
    list-style-type: none;
    padding: 0;
}
.country ul li {
    margin: 10px 0;
    font-size: 16px;
}
.country-icon
{
    width:20px;
    height:20px;
}

.details ul {
    list-style-type: none;
    padding: 0;
}
.details ul li {
    margin: 10px 0;
    font-size: 16px;
}
.details ul li a
{
    text-decoration: none;
    color:white;
}
.whatsapp-container {
  position: fixed;
 bottom: 10PX;
 right: 0;

}

#whatsapp-button {
  background-color: #25D366;
   width:200px;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  position: relative;
}

#whatsapp-button:hover {
  transform: scale(1.05);
}

#whatsapp-button img {
  width: 24px;
  height: 24px;
}

.pulse::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 211, 102, 0.5);
  border-radius: 50px;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}


@media(max-width:992px)
{
    
    .shade
    {
        width:100%;
        height:50%;

    }
	.logo {
    width:100%;
    height:100%;
    }
    
    .features p {
        font-size: 16px;
    }
	
}

@media(max-width:768px)
{
    

    .shade
    {
        width:100%;
        height:50%;
        text-align: center;
    }
	.logo {
    width: 30%;
    height:50%;
    padding:0px;
    }

    .company_name {
        font-size: 45px;
    }

    .heading
{
    
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 10px;
    width:100%;
    font-size: 20px;
}

	.features p {
        font-size: 22px;
    }
	.features ul {
       /* text-align: center;*/
       padding-left: 50px;
       

    }
    .features ul li{
    font-size: 16px;
    }
    .book-button
    {
        text-align: center;
       padding:10px 0 25px 0;
    }

    .section-title
    {
        font-size:20px;
    }

     .country h3
    {
        text-align: center;
    }
.country ul {
   
    display: flex;
    justify-content: space-between;
}
.country ul li{
   
  font-size: 18px;
}
.country-icon
{
    width:15px;
    height:15px;
}
.details h3
{
    text-align: center;
    font-size: 30px;
}
.details ul li {
    font-size: 20px;
}

}

@media(max-width:578px)
{
    .header {
        font-size: 12px;
    }
    .back
{
    height:100vh;
    background-image:url('back3.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
    .shade
    {
        width:100%;
        height:45%;
        text-align: center;
    }
	.logo {
    width: 30%;
    height:50%;
    padding:0px;
    }
    .company_name {
        font-size: 35px;
    }

    .heading
{
    
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 10px;
    width:100%;
    font-size: 12px;
}

	.features p {
        font-size: 22px;
    }
	.features ul {
       /* text-align: center;*/
       padding-left: 50px;
       

    }
    .features ul li{
    font-size: 20px;
    }
    .book-button
    {
        text-align: center;
       padding:10px 0 25px 0;
    }

    .section-title
    {
        font-size:20px;
    }
    .country h3
    {
        text-align: center;
    }
.country ul {
   
    display: flex;
    justify-content: space-between;
}
.country ul li{
   
  font-size: 14px;
}
.country-icon
{
    width:10px;
    height:10px;
}
.details h3
{
    text-align: center;
    font-size: 35px;
}
.details ul li {
    font-size: 15px;
}
}






@media(max-width:410px)
{
    .header {
        font-size: 12px;
    }
    .back
{
    height:100vh;
    background-image:url('back3.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
    .shade
    {
        width:100%;
        height:45%;
        text-align: center;
    }
	.logo {
    width: 30%;
    height:50%;
    padding:0px;
    }
    .company_name {
        font-size: 35px;
    }

    .heading
{
    
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 10px;
    width:100%;
    font-size: 12px;
}

	.features p {
        font-size: 22px;
    }
	.features ul {
       /* text-align: center;*/
       padding-left: 50px;
       

    }
    .features ul li{
    font-size: 20px;
    }
    .book-button
    {
        text-align: center;
       padding:10px 0 25px 0;
    }

    .section-title
    {
        font-size:20px;
    }
    .country h3
    {
        text-align: center;
    }
.country ul {
   
    display: flex;
    justify-content: space-between;
}
.country ul li{
   
  font-size: 10px;
}
.country-icon
{
    width:8px;
    height:8px;
}
.details h3
{
    text-align: center;
    font-size: 8px;
}
.details ul li {
    font-size: 15px;
}
}

