

body {
    font-family: 'Inter', sans-serif;
    margin: 10px auto;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
    width: 98%;
            box-shadow: 10px 0 10px -5px rgba(0, 0, 0, 0.5), -10px 0 10px -5px rgba(0, 0, 0, 0.5);
border-radius:20px;
    
}







.hero-section1 {
  height: 150px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 0 0 100% 100%;
  position: relative;
  background: linear-gradient(to bottom, #00008B, #1C88F9, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.text1 {
  color: #000;
  padding: 20px;
}

.text1 h1 {
  font-size: 2.0em;
  margin-bottom: 15px;
  animation: changeColors 3s infinite; /* Example animation */
  font-family: 'Inter', sans-serif;
}

.text1 p {
  font-size: 14px;
  line-height: 1.5;
  width:100%;
  margin:10px auto;
  color:#000;
}

@keyframes changeColors {
  0%, 25% {
    color: #FF1493; /* Adjust color as needed */
  }
  50% {
    color: #2F4F4F; /* Adjust color as needed */
  }
  75%, 100% {
    color: #fff; /* Adjust color as needed */
  }
}



.hero-section {
    height: 230px;
    
    margin: 0 auto;
    border-radius: 0 0 100% 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #fff, #8B008B, #FF8C00);
    
}




.text {
  color: #000;
  padding: 20px;
}

.text h1 {
  font-size: 3.0em;
  margin-bottom: 15px;
  animation: changeColors 3s infinite; /* Example animation */
  font-family: 'Titillium Web', sans-serif;
  font-weight:bold;
}

.text p {
  font-size: 16px;
  line-height: 1.5;
  width:80%;
  margin:10px auto;
  color:#333;
}

@keyframes changeColors {
  0%, 25% {
    color: #00008B; /* Adjust color as needed */
  }
  50% {
    color: #000; /* Adjust color as needed */
  }
  75%, 100% {
    color: #fff; /* Adjust color as needed */
  }
}



@media (max-width: 768px) {
  .hero-section {
    display: none;
  }
}
.container1 {
    display: flex;
    flex-wrap: wrap; /* Allow content to wrap to the next line on smaller screens */
}


.main-cont1 {
  width: 90%;
  margin: 20px auto;
  padding: 20px;
  background: #1A81F3;
  border-radius:10px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  transition: box-shadow 0.5s ease-in-out;
  border:4px solid #00008B;
  text-align:center;
}

button1 {
    /* Your unique styles for the "Contact" button */
    background: linear-gradient(45deg, #1E90FF, #00008B, #1E90FF); /* Example gradient background */
    color: #fff;
    padding: 9px 20px;
    border-radius: 50px;
    border: 0px double blue;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, box-shadow 0.3s ease; 
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Example shadow */
}

button1:hover {
    background: linear-gradient(to right, #00008B, #1E90FF); /* Change to your desired hover gradient background */
    color: #fff; /* Change to your desired hover text color */
}




.main-cont {
  width: 96%;
  margin: 0px auto;
  padding: 50px 20px 250px 20px;
  background: linear-gradient(to bottom, #1460D8, #0721A6);
  border-radius:45%;
  border-bottom:0px solid #00008B;
  margin:11px auto;
}




.post {
    width: 90%; /* Take full width by default */
    margin: 20px auto; /* Center the div */
    padding: 30px;
    background-color: #fff;
    border: 0px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.main-2 {
    width: 92.5%; /* Take full width by default */
    margin: 20px auto; /* Center the div */
    padding: 30px;
    background-color: #fff;
    border: 0px solid #ddd;
    border-radius: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


    .logo {
    display: block; /* Ensures the link takes the full width of the image */
    width: 180px;   /* Adjust the width as needed */
    height: auto;   /* Maintains the aspect ratio */
}





/* Responsive styles */
@media only screen and (min-width: 768px) {
    .main {
        width: 75%;
        margin: 20px 7px 20px 20px;
    }

    .sidebar {
        width: 25%;
        margin: 20px 20px 20px 7px;
    }
}

@media only screen and (max-width: 767px) {
    .main,
    .sidebar {
        width: 100%; /* Take full width on smaller screens */
        margin: 20px 0;
    }
}





 #backToTopBtn {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #fff;
            color: #145FD7;
            border: none;
            border-radius: 100px;
            padding: 8px 15px;
            cursor: pointer;
        }




.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 7px; /* Adjust as needed */
    border-radius:11px 11px 0 0;
    
    background:#145FD7;
    
    
}

.main-header .logo img {
    max-width: 100%;
    height: auto;
    margin-left: 30px; /* Adjust as needed */
}

.main-header nav {
    margin-right: 20px;
    
}

.main-header nav ul {
    list-style: none;
    display: flex;
}

.main-header nav ul li {
    margin-right: 40px;
}

.main-header nav a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease; 
    font-family: 'Protest Riot', sans-serif;
    font-weight:normal;
}

.main-header nav a:hover {
    color: #6b9eff; /* Change to your desired hover color */
}

.main-header .dropdown:hover .submenu {
    display: block;
}

.main-header .submenu {
    display: none;
    position: absolute;
    background: linear-gradient(to bottom, #00008B, #1C88F9);
    list-style: none;
    padding: 15px;
    width: 170px;
    border: 0px solid #fff;
    
    z-index: 1; /* Ensure the submenu is above other content */
}

.main-header .submenu li {
    margin: 5px 0;border-bottom:1px solid #fff;
}

.main-header .submenu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    
    transition: color 0.3s ease; /* Add transition for smooth color change */
}

.main-header .submenu a:hover {
    color: #6b9eff; /* Change to your desired hover color */
}

/* Responsive Styles for Mobile Devices */
@media only screen and (max-width: 600px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-header nav {
        margin-top: 10px;
        margin-right: 0;
    }

    .main-header nav ul {
        flex-direction: column;
    }

    .main-header nav ul li {
        margin: 10px 0;
    }

    .main-header .submenu {
        position: static;
        display: none;
    }

    .main-header .dropdown:hover .submenu {
        display: block;
    }
}


.cri{font-size:12px;background: linear-gradient(0, #00008B, #1C88F9);
padding:50px;margin-top:0px;text-align:center;color:white;border-bottom: 6px solid #00008B;border-radius:100% 100% 11px 11px;
   
}

  .footer {
    background: transparent;
    color: #EC9742;
    padding: 20px;
    text-align: center;
    margin: 0px auto;
    width:80%;
    
    border-radius: 0%;
}


        .footer a {
            color: #00008B;
            text-decoration: none;
            margin: 0 10px;
            padding:5px 22px;
            border-radius:50px;
            border:2px solid #00008B;
            font-size:13px;
        }

        .footer a:hover {
            text-decoration: underline;
        }





/* Base styles for larger screens */


/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .main-content {
    width: 90%;
  }
}

/* Additional responsive styles for even smaller screens */
@media (max-width: 576px) {
  .main-content {
    width: 95%;
    padding: 15px;
  }
}


/* Styling for the 'Open Me' text inside the button */
.open-me-button p {
  margin: 0;
  font-weight: bold;
}

/* Styling for the arrow text inside the button */
.open-me-button .arrow {
  font-size: 18px; /* Adjust the font size as needed */
  margin-left: 10px; /* Adjust the margin as needed */
}


#sp{font-size:13px;padding:10px;}


.icon-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}

.icon-box {
  text-align: center;
  margin: 10px 5px;
  padding: 10px 5px 20px 5px;
  border: 0px solid #ddd;
  border-radius: 0;
  width: calc(18% - 0px); /* 24% for 4 boxes in one row, minus margin */
  text-decoration: none;
  color: #333;
  transition: transform 0.3s;
  background: linear-gradient(to top, #f2f2f2, #1C88F9);
  max-width: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.icon-box:hover {
  transform: scale(1.05); /* Slightly increase size on hover */
  box-shadow: none; /* Remove the box shadow on hover */
  background: linear-gradient(to top, #1C88F9, #f2f2f2);
}






.icon-box svg {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  margin-top: 20px;
  transition: transform 0.3s, rotate 0.3s;
}

.icon-box:hover svg {
  transform: scale(1.2) rotate(360deg); /* Increase size and rotate on hover */
}


ibh {
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    margin-top: 10px;
    background: linear-gradient(to right, #333, #191970, #C71585); /* Adjust gradient colors as needed */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    transition: background 0.3s ease-in-out;
}

ibh:hover {
    color: #191970;
}



/* Responsive styles for medium screens (tablets) */
@media (max-width: 768px) {
  .icon-box {
    width: calc(49% - 20px); /* 49% for 2 boxes in one row, minus margin */
  }
}

/* Responsive styles for small screens (mobile devices) */
@media (max-width: 576px) {
  .icon-box {
    width: calc(100% - 20px); /* 100% for 1 box in one row, minus margin */
  }
}

h2 {
            display: flex;
            align-items: center;
        }

        h2 svg {
            margin-right: 10px; /* Adjust the margin as needed */
            width: 32px; /* Adjust the width as needed */
            height: 32px; /* Adjust the height as needed */
        }



 #results {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .stream {
            width: 300px;
            margin: 10px;
            border: 1px solid #ddd;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease-in-out;
        }
        .stream:hover {
            transform: scale(1.05);
        }
        iframe {
            width: 100%;
            height: 100%;
            border: none;
            margin:0 auto;
            text-align:center;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
        }
        .watch-button {
            display: block;
            width: 100%;
            padding: 8px;
            text-align: center;
            background-color: #4CAF50;
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .watch-button:hover {
            background-color: #45a049;
        }
    



 .footer-logo {
      text-align:center;
      
    }

    .footer-logo img {
      width: 60px; /* Adjust the width as needed */
      height: 60px; /* Maintain aspect ratio */
      margin-bottom: 0px; /* Adjust the margin as needed */
      margin-top:55px;
    }

   



