
        body {
			background-image: url('img/Blue_eclipse_background.png');
			background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            color: white; /* Text color is set to white for better visibility against the black background */
            font-family: Arial, sans-serif;
			
        }

		.logo {
			width: 42px;
			height: 42px;
			margin-right: 10px;
			border-radius: 50%;
			object-fit: cover;
			object-position: top;
		}

		.logo_container {
			display: flex;
			align-items: center;
		}

		.logo_container p {
			align-items: flex-start;
			font-family: 'Exo 2', sans-serif;
			color: white;
		}

        .main_header header {
			display: flex;   /* Enable flex for these elements */

			
        }
		

		
		.navigation {
            display: flex;   /* Enable flex for these elements */
			position:absolute;
			right: 3%;
			font-family: 'Exo 2', sans-serif;
        }
        
        .main_header {
			align-items: center;
   /* Or any other preferred width */
            margin: 0 auto;   /* Center the container horizontally */
            padding: 20px;   /* Add some padding for spacing */
        }
        
        /* You might want to add some space between the logo and the navigation links */
        .navigation nav a {
            margin: 0 3px;  /* Add some margin for spacing between links */
        }

		.main_page {
			background-color: #22232e;
		}
        



		
main {
	height: 100vh;
}

.landing_text {
	height: 130vh;
}

.typing_wrapper {
	margin-top: 85vh;
	/*This part is important for centering*/
	display: grid;
	place-items: center;
  }
  
  .typing-demo {
	width: 8.5ch;
	animation: typing 2s steps(22), blink .5s step-end infinite alternate;
	white-space: nowrap;
	overflow: hidden;
	border-right: 3px solid;
	font-family: Exo 2, sans-serif;
	font-size: 3em;
  }
  
  @keyframes typing {
	from {
	  width: 0
	}
  }
	  
  @keyframes blink {
	50% {
	  border-color: transparent
	}
  }

.intro{
	font-family: 'Exo 2', sans-serif;
	margin-left: auto;
	margin-top: 70vh;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.intro h2 p {
	justify-content: center;
	text-align: center;
}
video{
	width: 100%;
}

.background-video-container {
    position: relative;
    height: 100vh;  /* Adjust this as needed; using 100vh as an example for full screen */
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;
    overflow: hidden;
}

.background-video-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0; /* This will place the gradient above the video but below your other content. */
    background: linear-gradient(to bottom, rgb(12, 18, 31), rgba(12, 18, 31, 0.8) 10%, transparent 50%);
	background: linear-gradient(to top, rgb(12, 18, 31), rgba(12, 18, 31, 0.8) 10%, transparent 50%);
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  
    opacity: 1;      
    z-index: -1; 
}


.glass-overlay {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(0, 0, 0, 0.16);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(8.7px);
	-webkit-backdrop-filter: blur(8.7px);
	background: linear-gradient(to bottom, rgb(12, 18, 31), rgba(12, 18, 31, 0.8) 30%, transparent 50%);
}



.content_main {
    position: relative; /* Ensures the content stays above the video */
    z-index: 1;
}


button {
	width: fit-content;
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 15px 15px;
    border-radius: 15px;
    border: none;
    font-size: 1rem;
    color: #e0ffff;
    font-weight: 500;
    cursor: pointer;
    z-index: 1;
  }
  button:active{
    transform: scale(0.95);
  }
  button::before{
    content: '';
    position: absolute;
    inset: -3px 50px;
    background: #42455a;
    transition: inset 350ms ease;
    z-index: -2;
  }
  button:hover::before{
    inset: -20px 0px;
    background: #00c2cb;
  }
  button::after{
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 10px;
    background: #22232e;
    z-index: -1;
  }
  

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap");

		:root {
		  --bg: #22232e;
		  --clr-1: #007ca1;
		  --clr-2: #2b2dbd;
		  --clr-3: #40d9ff;
		  --clr-4: #438b85;
		
		  --blur: 1rem;
		  --fs: clamp(2rem, 8vw, 5rem);
		  --ls: clamp(-1.75px, -0.25vw, -3.5px);
		}
		
		body {
		  background-color: var(--bg);
		  color: #fff;
		  font-family: "Inter", "DM Sans", Arial, sans-serif;
		}
		
		*,
		*::before,
		*::after {
		  font-family: inherit;
		  box-sizing: border-box;
		}
		
		.content {
		  text-align: center;
		}
		
		.changing_title {
		  font-size: var(--fs);
		  font-weight: 800;
		  letter-spacing: var(--ls);
		  position: relative;
		  overflow: hidden;
		  background: var(--bg);
		  margin: 0;
		}
		
		
		.aurora {
		  position: absolute;
		  top: 0;
		  left: 0;
		  width: 100%;
		  height: 100%;
		  z-index: 2;
		  mix-blend-mode: darken;
		  pointer-events: none;
		}
		
		.clr {
		  overflow: hidden;
		  position: absolute;
		  width: 60vw;
		  height: 60vw;
		  background-color: var(--clr-1);
		  border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
		  filter: blur(var(--blur));
		  mix-blend-mode: overlay;
		}
		
		.clr:nth-of-type(1) {
		  top: -50%;
		  animation: aurora-border 6s ease-in-out infinite,
			aurora-1 12s ease-in-out infinite alternate;
		}
		
		.clr:nth-of-type(2) {
		  background-color: var(--clr-3);
		  right: 0;
		  top: 0;
		  animation: aurora-border 6s ease-in-out infinite,
			aurora-2 12s ease-in-out infinite alternate;
		}
		
		.clr:nth-of-type(3) {
		  background-color: var(--clr-2);
		  left: 0;
		  bottom: 0;
		  animation: aurora-border 6s ease-in-out infinite,
			aurora-3 8s ease-in-out infinite alternate;
		}
		
		.clr:nth-of-type(4) {
		  background-color: var(--clr-4);
		  right: 0;
		  bottom: -50%;
		  animation: aurora-border 6s ease-in-out infinite,
			aurora-4 24s ease-in-out infinite alternate;
		}
		
		@keyframes aurora-1 {
		  0% {
			top: 0;
			right: 0;
		  }
		
		  50% {
			top: 100%;
			right: 75%;
		  }
		
		  75% {
			top: 100%;
			right: 25%;
		  }
		
		  100% {
			top: 0;
			right: 0;
		  }
		}
		
		@keyframes aurora-2 {
		  0% {
			top: -50%;
			left: 0%;
		  }
		
		  60% {
			top: 100%;
			left: 75%;
		  }
		
		  85% {
			top: 100%;
			left: 25%;
		  }
		
		  100% {
			top: -50%;
			left: 0%;
		  }
		}
		
		@keyframes aurora-3 {
		  0% {
			bottom: 0;
			left: 0;
		  }
		
		  40% {
			bottom: 100%;
			left: 75%;
		  }
		
		  65% {
			bottom: 40%;
			left: 50%;
		  }
		
		  100% {
			bottom: 0;
			left: 0;
		  }
		}
		
		@keyframes aurora-4 {
		  0% {
			bottom: -50%;
			right: 0;
		  }
		
		  50% {
			bottom: 0%;
			right: 40%;
		  }
		
		  90% {
			bottom: 50%;
			right: 25%;
		  }
		
		  100% {
			bottom: -50%;
			right: 0;
		  }
		}
		
		@keyframes aurora-border {
		  0% {
			border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
		  }
		
		  25% {
			border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
		  }
		
		  50% {
			border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
		  }
		
		  75% {
			border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
		  }
		
		  100% {
			border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
		  }
		}		


.snip1561 {
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 230px;
    max-width: 315px;
    width: 100%;
    background: #700877;
    background: -moz-linear-gradient(90deg, #700877 0%, #27a9ff 100%, #2735ff 100%);
    background: -webkit-linear-gradient(90deg, #700877 0%, #27a9ff 100%, #2735ff 100%);
    background: linear-gradient(90deg, #700877 0%, #27a9ff 100%, #2735ff 100%);
  }
  
  .snip1561 img,
  .snip1561:before,
  .snip1561:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .snip1561 img {
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
  }
  
  .snip1561:before,
  .snip1561:after {
    content: '';
    background-color: #fff;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .snip1561:before {
    width: 60px;
    height: 1px;
    left: 100%;
  }
  
  .snip1561:after {
    height: 60px;
    width: 1px;
    top: 0%;
  }
  
  .snip1561 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }
  
  .snip1561:hover img,
  .snip1561.hover img {
    zoom: 1;
    filter: alpha(opacity=50);
    -webkit-opacity: 0.5;
    opacity: 0.5;
  }
  
  .snip1561:hover:before,
  .snip1561.hover:before,
  .snip1561:hover:after,
  .snip1561.hover:after {
    opacity: 1;
    top: 50%;
    left: 50%;
  }


  
  .service_container{
	margin-top: 20vh;
    width: 100%;
    margin-left: auto;
    margin-right: auto;   /* These will center the service_container horizontally */
    position: relative;
    display: flex;
    justify-content: center; /* Changed from space-between to center */
    flex-wrap: wrap;
    text-align: center;
}
  
  .service_container .service_card{
	position: relative;
	padding: 10px;
	font-family: 'Exo 2', sans-serif;
  }
  
  .service_container .service_card .face{
	width:300px;
	height: 200px;
	transition:.4s;
	
  }
  
  .service_container .service_card .face.face1{
	position: relative;
	background: #0c121f;
	display: flex;
	justify-content: center;
	align-content:center;
	align-items: center;
	z-index: 1;
	transform: translateY(100px);
  }
  
  .service_container .service_card:hover .face.face1{
	transform: translateY(0);
	box-shadow:
	  inset 0 0 60px rgba(45, 206, 255, 0.603),
	  inset 20px 0 80px rgb(14, 64, 202),
	  inset -20px 0 80px rgb(0, 45, 168),
	  inset 20px 0 300px rgb(0, 45, 168),
	  inset -20px 0 300px rgb(6, 9, 44),
	  0 0 50px #ffffffb7,
	  -10px 0 80px rgb(0, 3, 165),
	  10px 0 80px rgb(6, 9, 44);
	 
  }
  
  
  .service_container .service_card .face.face1 .service_content{
	opacity: .2;
	transition:  0.5s;
	text-align: center;
	

  
  }
  
  .service_container .service_card:hover .face.face1 .service_content{
	opacity: 1;
   
  }
  
  .service_container .service_card .face.face1 .service_content i{
	font-size: 3em;
	color: white;
	display: inline-block;
	 
  }
  
  .service_container .service_card .face.face1 .service_content h3{
	font-size: 1em;
	color: white;
	text-align: center;
	
  
  }
  
  .service_container .service_card .face.face1 .service_content a{
	 transition: .5s;
  }
  
  .service_container .service_card .face.face2{
	 position: relative;
	 background: whitesmoke;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 padding: 20px;
	box-sizing: border-box;
	box-shadow: 0 20px 50px rgba(0,0,0,.8);
	transform: translateY(-100px);
  }
  
  .service_container .service_card:hover .face.face2{
	  transform: translateY(0);
  
  
  }
  
  .service_container .service_card .face.face2 .service_content p, a{
	font-size: 10pt;
	margin: 0 ;
	padding: 0;
	color:#0c121f;
  }
  
  .service_container .service_card .face.face2 .service_content a{
	text-decoration:none;
	color: black;
	box-sizing: border-box;
	outline : 1px dashed #0c121f;
	padding: 10px;
	margin: 15px 0 0;
	display: inline-block;
  }
  
  .service_container .service_card .face.face2 .service_content a:hover{
	background: #0c121f ;
	color: whitesmoke; 
	box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);
  }
  
.myElement:hover {
    /* other hover styles can be placed here if needed */
}
.myElement:hover.fancy_shadow {
    box-shadow:
      inset 0 0 60px whitesmoke,
      inset 20px 0 80px #0ff,
      inset -20px 0 80px #0ff,
      inset 20px 0 300px rgb(0, 68, 255),
      inset -20px 0 300px rgb(78, 0, 167),
      0 0 50px #fff,
      -10px 0 80px rgb(47, 0, 255),
      10px 0 80px rgb(132, 0, 255);
}

.links_container {
	height: 50vh;
}
.links_container body {
	margin: 0;
	padding: 0;
	background: #262626;
  }
  
  .links_container ul {
	margin-top: 150px;
	padding: 0;
	display: flex;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
  }
  
  .links_container ul li {
	list-style: none;
	margin: 0 15px;
  }
  
  .links_container ul li a {
	position: relative; 
	display: block;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 63px;
	background: #0c121f;
	border-radius: 50%;
	font-size: 30px;
	color: #666;
	transition: .5s;
  }
  
  .links_container ul li a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #0c121f;
	transition: .5s;
	transform: scale(.9);
	z-index: -1;
  }
  
  .links_container ul li a:hover::before {
	transform: scale(1.1);
	box-shadow: 0 0 15px #0096fa;
  }
  
  .links_container ul li a:hover {
	color: #0096fa;
	box-shadow: 0 0 5px #0096fa;
	text-shadow: 0 0 5px #0096fa;
  }

  @property --rotate {
	syntax: "<angle>";
	initial-value: 132deg;
	inherits: false;
  }
  
  :root {
	--card-height: 65vh;
	--card-width: 80%;
  }
  
  .glow_card body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-top: 3rem;
	padding-bottom: 2rem;
	box-sizing: border-box;
  }
  
  .glow_card {
	margin-top: 70vh;
	background: #0c121f;
	width: var(--card-width);
	height: var(--card-height);
	padding: 3px;
	position: absolute;
	align-self: center;
	margin-left: 7%;
	border-radius: 6px;
	justify-content: center;
	align-items: center;
	text-align: center;
	display: flex;
	font-size: 1.5em;
	color: rgb(88 199 250 / 100%)
	cursor;
	font-family: 'Exo 2', sans-serif;
  }

  
  .glow_card:hover {
	color: rgb(33, 173, 238);
	transition: color 1s;
  }
  
  .glow_card::before, .glow_card::after {
	transition: opacity 0.7s ease; /* Fade-in transition effect */
	opacity: 0;  /* Set initial opacity to 0 */
  }
  
  .glow_card:hover::before, .glow_card:hover::after {
	animation: spin 2.5s linear infinite;
	opacity: 1;  /* Set opacity to 1 on hover */
  }
  
  .glow_card::before {
	content: "";
	width: 100.5%;
	height: 101%;
	border-radius: 8px;
	background-image: linear-gradient(
	  var(--rotate)
	  , #5ddcff, #3c67e3 43%, #4e00c2);
	position: absolute;
	z-index: -1;
	top: -2px;
	left: -2px;
	right: -2px;
  }
  
  .glow_card::after {
	position: absolute;
	content: "";
	top: calc(var(--card-height) / 6);
	left: 0;
	right: 0;
	z-index: -1;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	transform: scale(0.8);
	filter: blur(calc(var(--card-height) / 6));
	background-image: linear-gradient(
	  var(--rotate)
	  , #5ddcff, #3c67e3 43%, #4e00c2);
  }
  
  @keyframes spin {
	0% {
	  --rotate: 0deg;
	}
	100% {
	  --rotate: 360deg;
	}
  }
  
  .glow_card a {
	color: #212534;
	text-decoration: none;
	font-family: sans-serif;
	font-weight: bold;
	margin-top: 2rem;
  }
  
.portfolio-cta-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 50vh;
    padding-bottom: 2rem;
}

.portfolio-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, hsl(220, 80%, 55%), hsl(260, 70%, 55%));
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 24px hsla(230, 80%, 50%, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px hsla(230, 80%, 50%, 0.5);
}

  .why_us_main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	gap: 24px;
	margin: auto;
	padding-top: 0;
}

.left-stack, .right-stack {
	display: flex;
	flex-direction: column;
	gap: 24px; /* Adjust if needed */
}

.f1, .f2, .f3, .f4, .f5 {
  display: flex;          /* Set the display property to flex */
  flex-direction: column; /* Stack children vertically */
  justify-content: center;/* Center children vertically */
  align-items: center;    /* Center children horizontally */
}

.f1 {
  width: 384px;
  height: 266px;
  flex-shrink: 0;
  background-image: url("img/Frames/f1.png");
}

.f2 {
  width: 385px;
  height: 202px;
  flex-shrink: 0;
  background-image: url("img/Frames/f2.png");
}

.f3 {
  width: 384px;
  height: 276px;
  flex-shrink: 0;
  background-image: url("img/Frames/f3.png");
}

.f4 {
  width: 384px;
  height: 337px;
  flex-shrink: 0;
  background-image: url("img/Frames/f4.png");
}

.f5 {
  width: 384px;
  height: 572px;
  flex-shrink: 0;
  background-image: url("img/Frames/f5.png");
}

.why_us_main  h1, h2 {
  color: #e0ffff;
  font-family: 'Exo 2', sans-serif;
  margin: 10px 0;
  text-align: center;
   /* Ensuring the titles are centered */
}

.why_us_main p {
  color: #a8a8b1;
  font-size: 1rem;
  margin: 10px;
  text-align: center; /* Ensuring the paragraphs are centered */

}

.contact-form-container {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 50px auto;
	margin-top: 40vh;
}

.get-in-touch, .contact-details {
    width: 45%;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	font-family: 'Exo 2', sans-serif;
}

.get-in-touch {
    background-color: #f5f5f500;
}

.input-field {
    width: 100%;
    padding: 10px;
	background-color: #ffffff2c;
    margin-bottom: 10px;
    border: 1px solid #cccccc98;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
	color: #eeeeee;
	font-family: 'Exo 2', sans-serif;
}

.textarea {
    height: 100px;
    resize: none;
}

.get-in-touch button {
    background-color: #0099ff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-details {
    background-color:#212534;
    color: white;
	padding: auto;
}

.icon {
    margin-right: 10px;
}

.contact-details p {
	padding: 16px;
}