
/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}
.container_dialog {
    position: fixed;
    display: inline-block;
    padding: 20px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 999;
}
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px); 
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.2);
  z-index: 999;
}
.image-container_dialog {
    display: inline-block;
}
.full_dialog{
	position: absolute;
    top: 0;
	height: 100vh;
    width: 100vw;
}
.close-btn_dialog {
    position: absolute;
    top: -15px;
    right: -15px;
    border: none;
    padding: 8px 12px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.sr-only{
	cursor: pointer;
	position: unset !important;
	font-size: xxx-large;
    color: white;
    text-decoration: none;
    padding: 0 30px !important;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0e2246;
    color: white;
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
	left: -70px
}

.watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2; /* Adjust for visibility */
    z-index: -1; /* Sends it behind other content */
    height: 60vh;
}
.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.terms-section{
    padding: 80px 0;
    width:100%;
    text-align-last: left;
}

.dropdown:hover .dropdown-content {
    display: block;
}
/* Mobile Slider styles */
        .slider-container {
			background-color: #192340;
			text-align: center;
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.3s ease-in-out;
        }
		.toggle-btn {
            display: none; /* Initially hide the button on larger screens */
            cursor: pointer;
            font-size: 1.5em;
            transition: transform 0.3s ease-in-out;
        }
		.slider-item {
			padding: 5px;
		}
		.sponsor-item a img{
		    height: 120px;
            border-radius: 50%;
            width: 120px;
            box-shadow: 3px 8px 9px 0px #00000063;
		}
		.slider-item a{
			color: white;
			text-decoration: none;
		}
/* Navbar Styles */
        nav {
		    position: fixed;
			box-shadow: 1px -4px 10px 10px #00000045;
			width: 100%;
			z-index: 100;
            color: white;
            text-align: center;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
			background-image: linear-gradient(13deg, #f55b10, #0f264ec9, #0f264e)
        }

        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 18px;
            transition: color 0.3s ease-in-out;
        }

        nav a:hover {
            color: #f94f02;
        }

        .logo {
			display: flex;
			flex-wrap: wrap;
			align-content: stretch;
            margin-right: auto;
            cursor: pointer;
        }
		.logo b{
			margin: auto 10px;
			font-size:larger;
		}

/* Slider Styles */
.slider {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.slide {
    width: 100%;
}
.slide img {
    width: 100%;
    height: auto;
}
.slide-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}
.slide-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
/* Video Section Styles */
.video-section {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}
.video-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.videos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.video {
    width: 300px;
}
.video iframe {
    width: 100%;
    height: 200px;
}
/* News Section Styles */
.news-section {
    background-color: #e6fcf02e;
    padding: 40px 0;
    text-align: center;
}
.news-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.news {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.news article {
    width: 450px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.news article:hover {
    transform: translateY(-5px);
}
.news article img {    
    width: 100%;
    height: 30vh;
    border-radius: 5px;
    object-fit: cover;
}
.news article h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: left;
}
.news article p {
    color: #666;
	text-align: justify;
	font-size: small;
}
.news article a {
	float: right;
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
.news article a:hover {
    background-color: #555;
}
.active{
	font-weight: bolder;
    color: #da5517;
}
        /* Contact Us Styles */
        .contact {
            text-align: center;
            margin: 0 auto;
        }
		.contact-info a{
			font-size: xxx-large;
			color: #001743;
		}
        #map {
            height: 300px;
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
        }

        .contact-info {
            padding: 20px 0;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .info-item {
            width: 300px;
			display: flex;
            margin-bottom: 20px;
            text-align: left;
            transition: transform 0.3s ease-in-out;
        }

        .info-item:hover {
            transform: scale(1.05);
        }

        .info-item i {
            margin: auto 33px;
            font-size: 20px;
            color: #f94f02;
        }
		
		.info-item div p {
			margin: 0;
		}
/* About Section */
.about-section{
	    padding: 80px 0;
}
.about-us{
	display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
	padding: 20px;
}
.about-description{
	text-align: justify;
}
.about-us img{
	width: 100%;
}
.person-content{
	padding: 20px 0;
}
        .person-container {
            margin-top: 20px;
            display: flex;
        }

        .person {
			box-shadow: 11px 13px 20px 0px #00000017;
			border-radius: 15px;
            display: flex;
            align-items: center;
			background: white;
			width: 600px;
			margin: 20px auto;
			height: 300px;
            text-align: left;
            transition: transform 0.3s ease-in-out;
			justify-content: center;
        }

        .person:hover {
            transform: scale(1.05);
        }

        .person img {
			margin: 15px;
			width: 35%;
            border-radius: 8px;
            margin-bottom: 10px;
            min-width: 90px;
        }
/* Partner Section Styles */
.partner-section {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}
.partner-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.partner-logos img {
    max-width: 150px;
    max-height: 100px;
}
/* Footer Styles */
footer {
            background-color: #001743;
            color: #e6fcf0;
            text-align: center;
            padding: 40px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-links {
            width: max-content;
			margin: 0 50px;
			display: grid;
			text-align: left;
		
        }
        .footer-links a {
            color: #e6fcf0;
            text-decoration: none;
            margin: 0 15px;
            font-size: 16px;
            transition: color 0.3s ease-in-out;
        }
		.footer{
			max-width: 1200px;
			width: 100%;
			margin: auto;
			display: flex;
			justify-content: space-between;
		}
        .footer-links a:hover {
            color: #f94f02;
        }

        .footer-logo {
            margin: 0 auto;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .footer-logo img {
            height: 150px;
            border-radius: 50%;
            transition: transform 0.3s ease-in-out;
        }

        .footer-logo img:hover {
            transform: scale(1.2);
        }

        .footer-social {
            text-align: center;
            width: 100%;
        }

        footer i {
            margin: 0 10px;
            font-size: 20px;
            color: #f94f02;
            transition: color 0.3s ease-in-out;
        }

        footer i:hover {
            color: #e6fcf0;
        }
* Carousel Styles */
        .carousel-inner {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        .carousel-item {
            display: none;
            position: relative;
            width: 100%;
        }
        .carousel-item img {
            width: 100%;
            height: auto;
        }
        .carousel-caption {
			border-top-left-radius: 5px;
			border-top-right-radius: 5px;
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px 20px;
			width: 100%;
        }
        .carousel-caption a {
            text-decoration: none;
			color: white;
			font-size: x-large;
        }
.nav-btn{
	top: -40vh;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.carousel-item img{
	object-fit: cover;
	height: 120vh;
}
.container{
	max-width: 1500px;
    margin: auto;
}
.line-title{
	text-align: left;
    display: flex;
}
.line{
	width: 75%;
    background-image: linear-gradient(150deg, #f55b10, #0f264e);
    height: 9px;
    margin: auto 10px;
}
.end{
	text-align: center;
    color: aliceblue;
	background-image: linear-gradient(150deg, #f55b10, #0f264e);
}

/* Blog Section */

.blog-post {
    width: 100%;
    max-width: 1500px;
    margin: 120px auto;
    padding:20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blog-post img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.blog-post .title {
    font-size: xx-large;
    margin-bottom: 15px;
    margin-top: 0;
}

.blog-post .description {
    color: #666;
    margin-bottom: 20px;
}

.blog-post .content {
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-post .content p {
    margin-bottom: 10px;
}

.blog-post .category {
    font-size: 14px;
	color: #a5a5a5;
}

/* Soon Block */
    .container {
      text-align: center;
    }
	.soon-section{
		background-color: #e6fcf0;
      text-align: center;
      margin: 0;
      padding: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
	}

    h1 {
		margin-top: 0;
      color: #333;
      font-size: 3.5em;
      margin-bottom: 20px;
    }

    .p-tag {
      color: #666;
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .social-icons {
      display: flex;
      justify-content: center;
    }

    .social-icons a {
      display: inline-block;
      margin: 0 10px;
      color: #333;
      text-decoration: none;
      font-size: 1.5em;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: #4285f4; /* Change to your preferred hover color */
    }
@media (max-width: 600px) {
.about-us{
    grid-template-columns: 1fr;
}
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    flex-direction: column;
    background-color: #192340;
    padding-bottom: 15px;
    position: relative; /* Changed to relative for mobile view */
	left: unset;
}

.dropdown-content a {
    color: white;
    padding: 10px;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #575757;
}

.dropdown:hover .dropdown-content {
    display: flex;
}


    .carousel{
        position: relative;
        top: 80px;
    }
    .carousel-item img {
        width: 100%;
        height: auto;
    }
	.person-container, .person, .footer{
		display: block;
	}
	.footer-right{
		width: 100%;
		text-align-last: center;
	}
	.person img{
		width: 100%;
	}
	.toggle-btn {
		display: block;
	}
	.web-link{
		display: none;
	}
	.logo{
		place-content: center;
	}
	.logo b{
		font-size: unset;
	}
}

  