@charset "utf-8";
/* CSS Document */

/* General Styles */
body {
   font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
	margin:0px;
	padding:0px;
	background: #000316;
}


#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}

.icon-bar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: #3B5998;
  color: white;
}

.twitter {
  background: #55ACEE;
  color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}

.content {
  margin-left: 75px;
  font-size: 30px;
}


h2{ margin:8px; margin-left:0px;}

fieldset {
  	margin:0px;
	padding:0px;
	border:0px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
   background: #000316;
    padding: 8px 0px;
}

.logo {
 width:12%;
 float:left;

}

.logo img {
   	width:100%;
}
/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
	
}


.nav-links a {
    text-decoration: none;
    color: white;
    padding: 10px;
    display: block;
	

}

/* Mega Menu */
.mega-menu .mega-content {
    display: none;
    position: absolute;
    background: red;
    color: black;
    left: 0;
    top: 100%;
    width: 1000px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1000;
	float:right;
}

.mega-content.show {
    display: flex;
    gap: 20px;
}

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-column h3 {
    margin-bottom: 5px;
}

.mega-column a {
    color: black;
    text-decoration: none;
    padding: 5px 0;
    display: block;
}

.mega-column a:hover {
    background: #ddd;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  background-color: inherit;
  font: inherit;
  margin: 0;
}



.dropdown-content {
  display: none;
  position: absolute;
   background: #000316;
  width: 95%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin-left:2.5%;
    
}

.dropdown-content .header {
  background: #eea234;
  padding: 16px;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 31.5%;
  padding: 10px;
  background-color: none;
  height:auto;
}

.column a {
  float: none;
  color: white;
  padding:10px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  line-height:25px;
}

.column a:hover {
	color:#eea234;
	text-decoration:underline;
}


/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


.first-body{
	background: #000316;
	width:100%
}


.first-body-in{
	width:31.6%;
	float:left;
	margin-left:5px;
}

.first-body-in a{
	color:white; font-size:18px; text-decoration:none; font-weight:600;
}

.first-body-in a:hover{
	text-decoration:underline;
}

.first-body-in:first-child{
	width:68%;
	margin-left:0px;
	height:500px;
	background:rgba(0,51,0,1);

}


/* Container holding the image and the text */
.container {
	width:100%
}

/* Bottom left text */
.bottom-left {

}


/* Style the search field */
form.example input[type=text] {
  padding: 25px 20px;
  font-size: 17px;
  border: 1px solid grey;
  float: left;
  width: 80%;
  background: #f1f1f1;
  font-weight:bold;
}

/* Style the submit button */
form.example button {
  float: left;
  width: 12%;
  padding: 25px 20px;
  background: #eea234;
  color: white;
  font-size: 17px;
  border: 1px solid grey;
  border-left: none; /* Prevent double borders */
  cursor: pointer;
}

form.example button:hover {
  background: #7ea7cf;
}

/* Clear floats */
form.example::after {
  content: "";
  clear: both;
  display: table;
}

.meant{
	width:50%;
	float:left;
}

.list {
    display: flex; /* Ensures links are side by side */
    gap: 20px; /* Adjust space between links */
}

.list li {
    list-style: none; /* Remove bullet points */
}

.list li a, .list-in li a {
    position: relative;
    text-decoration: none; /* Remove default underline */
    color: white; /* Keep default text color */
    padding: 5px 0; /* Add some padding for better spacing */
    display: inline-block; /* Ensure links have proper spacing */
}

.list li a::after, .list-in li a::after {
    content: "";
	
    position: absolute;
    left: 0;
    bottom: -2px; /* Adjust distance from text */
    width: 0%;
    height: 2px; /* Thickness of underline */
    background-color: yellow;
    transition: width 0.3s ease-in-out;
}

.list li a:hover::after, .list-in li a:hover::after {
    width: 100%;
	color:#7ea7cf;
}

.list li a:hover, .list-in li a:hover{
	color:#7ea7cf;
}



.mean{
	width:49%;
	float:left;
	margin-left:25px;
}


.mean:first-child{
	margin-left:0px;
}


/* Card Styling */
.card {
    display: inline-block;
    text-decoration: none; /* Remove default link underline */
    color: inherit; /* Keep default text color */
}

/* Image Zoom Effect */
.image-container {
    overflow: hidden;
    display: inline-block;
}

.image-container img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.card:hover .image-container img {
    transform: scale(1.1); /* Zoom in image on hover */
}

/* H2 Animated Underline */
.animated-underline {
    position: relative;
    text-decoration: none; /* Remove default underline */
    color: red; /* Text color */
    padding: 0px ;
    display: inline-block; /* Ensure it behaves like a link */
}

.animated-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px; /* Distance from text */
    width: 0%;
    height: 2px; /* Thickness of underline */
    background-color: #000316;
    transition: width 0.5s ease-in-out;
}

.card:hover .animated-underline::after {
    width: 100%; /* Expand underline */
}

.card:hover .animated-underline {
    color: #7ea7cf; /* Change text color on hover */
}


.side-bar{
	width:50%;
	float:left;
}

.side-bar:first-child{
	width:42%;
}

.text-container2{padding:10px 20px;}


.ways{
	width:23%;
	float:left;
	margin-left:30px;
}

.ways:first-child{
	margin-left:0px;
}


.list-in li{
	list-style:none;
	font-size:18px;
	padding:0px;
	color:red;
}