


        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            cursor: pointer;
            position: absolute;
            top: 30px;
            right: 20px;
            z-index: 1000;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Main Content */
        .main-content {
            text-align: center;
            color: #fff;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .main-content h2 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            background: linear-gradient(90deg, #ffd700, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeIn 1.5s ease forwards;
        }

        .main-content h2 span {
            font-size: 1.8rem;
            vertical-align: super;
            background: linear-gradient(90deg, #ffd700, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .main-content p {
            font-size: 1.3rem;
            line-height: 1.6;
            margin-bottom: 15px;
            opacity: 0;
            animation: fadeIn 2s ease forwards 0.5s;
        }

        /* Social Icons */
        .social-icons {
            position: absolute;
            top: 20px;
            right: 0; /* Adjusted to align with the right corner */
            display: flex;
            gap: 20px;
padding-right:15px;
        }

        .social-icons a img {
            width: 23px;
            height: 23px;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .social-icons a img:hover {
            transform: scale(1.3);
            filter: brightness(1) invert(0) hue-rotate(90deg);

        }

        /* Video Section */
        .video-section {
            padding: 50px 20px;
            background: #fff;
        }

        .video-section h3 {
            color: #0d51a4 !important;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            /*
            background: linear-gradient(90deg,rgb(34, 111, 211), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;*/
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /*.video-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }*/


.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    overflow: hidden;
    transition: background 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.video-card:hover {
    
/*background:#0d51a4;rgb(34, 111, 211);*/
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid #5bcede; /*rgba(255, 255, 255, 0.3);*/

}
        .video-card iframe {
            width: 100%;
            height: 250px;
            border: none;
        }

        .video-card-content {
            padding: 20px;
            color: #000;
        }

        .video-card-content h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color:#000;

        }


.video-card:hover .video-card-content h4 {
    color: #061336; /* color on hover */
}


        .video-card-content p {
            font-size: 1rem;
            color: #000;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 15px;
        }

        /* Share Buttons */
        .share-buttons {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;
            padding-top: 10px;
            border-top: 1px solid rgba(18, 130, 144, 0.1);
        }

        .share-buttons a, .share-buttons button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #0d51a4;
            transition: all 0.3s ease;
        }

        .share-buttons a:hover, .share-buttons button:hover {
            background: #ffd700;
            transform: scale(1.1);
        }

        .share-buttons img {
            width: 20px;
            height: 20px;
            filter: brightness(0) invert(1);
        }

        .share-buttons a:hover img, .share-buttons button:hover img {
            filter: brightness(0) invert(0);
        }

        /* Search Bar */
        .search-bar {
            max-width: 600px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-bar input {
            width: 100%;
            padding: 10px 15px;
            font-size: 1rem;
            border: 1px solid #0d51a4 !important; /*rgb(34, 111, 211);   #fcf301*/
            border-radius: 0px; /*25px 0 0 25px;*/
            background: rgba(255, 255, 255, 0.1);
            color: #000;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-bar input::placeholder {
            color: #ccc;
        }
/*
        .search-bar input:focus {
            background: #0d51a4;
            border-color: #fff;
        }*/

        .search-bar button {
            padding: 10px 20px;
            background: #0d51a4 !important; /*rgb(34, 111, 211);*/
            color: #fff;
            border: none;
            border-radius: 0px; /*0 25px 25px 0;*/
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-bar button:hover {
            background: #fff;
        }

        /* Watch More Button */
        .watch-more-section {
            text-align: center;
            padding: 30px 20px;
            background: rgb(0, 0, 0);
        }

        .watch-more-button {
            display: inline-block;
            padding: 15px 30px;
            background: #ffd700;
            color: rgb(0, 0, 0);
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .watch-more-button:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        /* Newsletter Button */
        .newsletter-button {
            display: inline-block;
            padding: 15px 30px;
            background: #ffd700;
            color: rgb(0, 0, 0);
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .newsletter-button:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        /* Popup Styling */
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .popup-content {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            max-width: 400px;
            width: 90%;
            position: relative;
            text-align: center;
        }

        .popup-content h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #333;
        }

        .popup-content input[type="email"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }

        .popup-content button {
            padding: 10px 20px;
            background: #ffd700;
            color: #000;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .popup-content button:hover {
            background: #fff;
            border: 1px solid #ffd700;
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }

        .success-message {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .success-message h3 {
            color: #28a745;
            margin-bottom: 15px;
        }

        .success-message .green-tick {
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
        }

       

        /* Animations */
        @keyframes fadeIn {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }

        /* Hide Social Icons Below 1024px */
        @media (max-width: 1024px) {
            .social-icons {
                position: absolute;
                top: 20px;
                right: 0; /* Adjusted to align with the right corner */
                display: flex;
                gap: 15px;
            }

            .social-icons a img {
                width: 15px;
                height: 15px;
                filter: brightness(0) invert(1);
                transition: all 0.3s ease;
            }

            .social-icons a img:hover {
                transform: scale(1.3);
                filter: brightness(1) invert(0) hue-rotate(90deg);
            }
        }

        /* Responsive Design for screens up to 960px */
        @media (max-width: 960px) {
           
            .hamburger {
                display: flex;
                width: 24px; /* Reduced size */
                height: 16px; /* Reduced size */
                top: 10px; /* Moved upwards */
                right: 20px;
            }

            .hamburger span {
                width: 100%;
                height: 2px; /* Reduced for proportionality */
                background: #fff;
                border-radius: 2px;
                transition: all 0.3s ease;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(4px, 4px); /* Adjusted for smaller size */
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px); /* Adjusted for smaller size */
            }

            .social-icons {
                display: none;
            }

            .main-content h2 {
                font-size: 2.5rem;
            }

            .main-content h2 span {
                font-size: 1.2rem;
            }

            .main-content p {
                font-size: 1.1rem;
            }

            .video-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                max-width: 100%;
            }

            .video-card iframe {
                height: 200px;
            }

            .share-buttons {
                gap: 8px;
            }

            .share-buttons a, .share-buttons button {
                width: 28px;
                height: 28px;
            }

            .share-buttons img {
                width: 18px;
                height: 18px;
            }

            .search-bar {
                max-width: 90%;
            }

           
        }

        /* Responsive Design for screens up to 480px */
        @media (max-width: 480px) {
            

            .hamburger {
                width: 20px; /* Further reduced size */
                height: 14px; /* Further reduced size */
                top: 8px; /* Moved further upwards */
                right: 15px;
            }

            .hamburger span {
                height: 1.5px; /* Reduced for proportionality */
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(3.5px, 3.5px); /* Adjusted for smaller size */
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px); /* Adjusted for smaller size */
            }

            .main-content h2 {
                font-size: 2rem;
            }

            .main-content h2 span {
                font-size: 1rem;
            }

            .main-content p {
                font-size: 0.95rem;
            }

            .video-section h3 {
                font-size: 2rem;
            }

            .video-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .video-card iframe {
                height: 220px;
            }

            .video-card-content h4 {
                font-size: 1.1rem;
            }

            .video-card-content p {
                font-size: 0.9rem;
            }

            .share-buttons {
                gap: 6px;
            }

            .share-buttons a, .share-buttons button {
                width: 24px;
                height: 24px;
            }

            .share-buttons img {
                width: 16px;
                height: 16px;
            }

            .search-bar {
                max-width: 95%;
            }

            
        }


/* FOR TERMS AND CONDITION PAGE AND OTHER INNER PAGE STYLE */
.terms-wrapper {
  /* background-color: #f9f9f9; */
  padding: 40px 20px;
  
}

.terms-content {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  color: #333;
  line-height: 1.7;
  font-size: 1.1rem;
}

.terms-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}

.terms-content h2 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #000;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.terms-content p {
  margin-bottom: 15px;
}

.terms-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-content ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .terms-content {
    padding: 20px;
  }

  .terms-content h1 {
    font-size: 1.6rem;
  }

  .terms-content h2 {
    font-size: 1.2rem;
  }
}



        /* About Section */
        .about-section {
            padding: 50px 20px;
            background: #000;
            color: #fff;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-section h2 {
            color: #5bcede !important;
            font-size: 3.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            /*background: linear-gradient(90deg, rgb(34, 111, 211), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeIn 1.5s ease forwards;*/



        }

        .about-section h3 {
            color: #5bcede !important;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            /*background: linear-gradient(90deg, rgb(34, 111, 211), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;*/
        }

        .about-section p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #e0e0e0;
            opacity: 0;
            animation: fadeIn 2s ease forwards 0.5s;
        }

        .about-section ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .about-section ul li {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 10px;
            color: #e0e0e0;
            position: relative;
            padding-left: 30px;
            opacity: 0;
            animation: fadeIn 2s ease forwards 0.7s;
        }

        .about-section ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #5bcede !important;
            font-size: 1.5rem;
        }

        .about-section .join-us {
            text-align: center;
            margin-top: 30px;
        }

        .about-section .join-us p {
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .about-section .join-us a {
            display: inline-block;
            padding: 15px 30px;
            background: rgb(34, 111, 211);
            color: #000;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .about-section .join-us a:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }



/* ABOUT US TEAM CODE STAYLE START */
.our-team{
    border: 1px solid #d3d3d3;
    position: relative;
    overflow: hidden;
}
.our-team:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    transition: all 0.3s ease 0s;
}
.our-team:hover:before{
    background: rgba(0,0,0,0.7);
}
.our-team img{
    width: 100%;
    height: auto;
}
.our-team .team-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    padding: 25px 18px;
    transition: all 0.3s ease 0s;
}
.our-team:hover .team-content{
    left:0;
}
.our-team .team-title{
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}
.our-team .post{
    font-size: 14px;
    color: #fcf301;
}
.our-team .post:after{
    content: "";
    display: block;
    width: 20%;
    border-bottom: 1px solid #fff;
    margin: 15px 0 20px;
}
.our-team .description{
    font-size: 14px;
    color: #fff;
    line-height: 25px;
}
.our-team .read{
    width: 0;
    height: 0;
    border-width: 30px;
    border-style: solid;
    border-color: transparent #5bcede  #5bcede  transparent;
    position: absolute;
    bottom: 0;
    right: -100%;
    color: #fff;
    transition: all 0.3s ease 0s;
}
.our-team:hover .read{
    right: 0;
}
.our-team .read i{
    position: relative;
    top: 2px;
    left: 6px;
}
@media only screen and (max-width: 990px) {
    .our-team{ margin-bottom: 20px; }
}
/* ABOUT US PAGE TEAM CODE STYLE END -->


/* CONTACT PAGE STYLE CODE START -->

        /* Contact Section */
        .contact-section {
            padding: 50px 20px;
            background:rgb(0, 0, 0);
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            color: #fff;
        }

        .contact-form h3 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #5bcede !important;
           /*background: linear-gradient(90deg, rgb(34, 111, 211), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;*/
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 15px;
            border: none;
            border-radius: 0px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
            border:1px solid #5bcede !important;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 150px;
        }

        .contact-form button {
            padding: 15px;
            border: none;
            border-radius: 10px;
            background: #5bcede;
            color: rgb(0, 0, 0);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-form button:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .contact-form button:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .contact-map {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-map iframe {
            width: 100%;
            height: 400px;
            border-radius: 15px;
            border: none;
        }

        .contact-map .map-info {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
        }

        .contact-map .map-info p {
            font-size: 1.1rem;
            color: #ddd;
            margin-bottom: 10px;
        }

        .contact-map .map-info p:hover {
            color: #ffd700;
        }

       
        
        /* Responsive Design */
        @media (max-width: 960px) {
           
            .contact-section {
                flex-direction: column;
                gap: 30px;
            }

            .contact-form h3 {
                font-size: 2rem;
            }

            .contact-map iframe {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
           
            .contact-form h3 {
                font-size: 1.8rem;
            }

            .contact-form input,
            .contact-form textarea {
                padding: 12px;
                font-size: 0.9rem;
            }

            .contact-form button {
                padding: 12px;
                font-size: 1rem;
            }

            .contact-map iframe {
                height: 250px;
            }

            .contact-map .map-info p {
                font-size: 1rem;
            }

            
        }
/* CONTACT PAGE STYLE CODE END */

/* TOP HEADER SEARCH BOX CODE START */
.search-container {
    display: inline-flex;
    align-items: center;
}

.search-container input[type=text] {
    padding: 6px;
    margin-top: 8px;
    font-size: 14px;
    border: 1px solid #5bcede;
    border-radius: 0px;
    background-color: transparent;
}

.search-container button {
    padding: 6px 10px;
    margin-top: 8px;
    margin-left: 4px;
    background: #ddd;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-container button:hover {
    background: #ccc;
}
/* TOP HEADER SEARCH BOX CODE END */

