@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
   /* Button Styling */
   .view-certificate-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #008cba;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	text-align: center;
	font-size: 10px;
	cursor: pointer;
	border: none;
}

.view-certificate-button:hover {
	background-color: #005f5f;
}

.custom-box12 {
    background-color: darkgreen;
    border: none;
    border-radius: 5px;
    padding: 8px;
    max-width: 40px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s ease;
}
.login-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #45a049;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Modal styles */
.modal {
	display: none; 
	position: fixed; 
	z-index: 1; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%; 
	overflow: auto; 
	background-color: rgba(0,0,0,0.8); 
	padding-top: 60px; 
	backdrop-filter: blur(10px);
  }
  
  .modal-content {
	background: linear-gradient(135deg, #222, #444);
	margin: 5% auto; 
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	width: 80%; 
	border-radius: 15px;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.2), 0 0 40px rgba(255, 255, 255, 0.2), 0 0 50px rgba(255, 255, 255, 0.2);
	animation: glow 1.5s infinite alternate, slideIn 0.5s ease-out;
	color: #fff;
  }
  
  @keyframes glow {
	0% {
	  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.5);
	}
	100% {
	  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5), 0 0 30px rgba(0, 255, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.5), 0 0 50px rgba(0, 255, 0, 0.5);
	}
  }
  
  @keyframes slideIn {
	from {
	  transform: translateY(-50px);
	  opacity: 0;
	}
	to {
	  transform: translateY(0);
	  opacity: 1;
	}
  }

  .animated-name {
    display: inline-block; /* Ensure the text behaves like an inline element */
    font-size: 2.5rem; /* Adjust font size */
    font-weight: bold; /* Make the text bold */
    background: linear-gradient(270deg, #1e3c72, #2a5298, #4b79a1, #283e51);
    background-size: 200% 200%; /* Increase background size for smoother animation */
    -webkit-background-clip: text; /* Clip the gradient to the text */
    -webkit-text-fill-color: transparent; /* Make the text itself transparent */
    background-clip: text;
    color: transparent;
    transition: transform 0.5s ease, background-position 5s ease; /* Smooth transition */
    animation: gradient-animation 8s ease infinite, fadeIn 2s forwards; /* Initial fade-in and background animation */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Start from below */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* End at original position */
    }
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-name:hover {
    transform: scale(1.1); /* Scale up on hover */
    background-position: 100% 50%; /* Adjust background position on hover for a more dynamic effect */
}

  
  #skills1{
	text-align: left;
  }
  #skills2{
	text-align: left;
  }

  .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s ease;
  }
  
  .close:hover,
  .close:focus {
	color: #fff;
  }
  
  .cta {
	display: inline-block;
	padding: 10px 20px;
	font-size: 20px;
	color: #fff;
	background-color: #ff0000;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.5);
  }
  
  .cta:hover {
	background-color: #ff4d4d;
	box-shadow: 0 0 20px rgba(255, 77, 77, 0.7), 0 0 30px rgba(255, 77, 77, 0.7), 0 0 40px rgba(255, 77, 77, 0.7), 0 0 50px rgba(255, 77, 77, 0.7);
  }
  
/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
    width: 48px;
    height: 48px;
}
/*End WhatsApp Button */

/* Style for the read more button */


/* CSS to initially truncate text */
.content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1.4rem * 2); /* Adjust based on the number of lines you want to show */
    /* Add the following line for compatibility */
    line-clamp: 3; /* This property may not be fully supported in all browsers */
	font-size: 0.9rem; /* Slightly smaller font size for mobile screens */
    padding: 8px; /* Adjust padding for mobile */
}


/* Responsive adjustments */
@media only screen and (min-width: 768px) {
    .content {
        -webkit-line-clamp: 4;
        line-clamp: 4; /* This property may not be fully supported in all browsers */
        height: calc(1.4rem * 4); /* Adjust for tablet */
		font-size: 1rem; /* Standard font size for tablets */
        padding: 12px; /* Adjust padding for tablets */
    }
}


@media only screen and (min-width: 1200px) {
    .content {
        -webkit-line-clamp: 5;
        line-clamp: 5; /* This property may not be fully supported in all browsers */
        height: calc(1.4rem * 5); /* Adjust for desktop */
		font-size: 1.1rem; /* Slightly larger font size for desktops */
        padding: 16px; /* Adjust padding for desktops */
    }
}

#preloader{
	background: #000 url(./img/Walk.gif) no-repeat center;
	background-size: 15%;
	height: 100vh;
	width: 100%;
	position: fixed;
	z-index: 100;

}
	
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}
.section-title span {
	color: crimson;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid crimson;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: crimson;
}
.brand h1 {
	font-size: 2rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	color: crimson;
}

/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: crimson;
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* End Header section */

/* Hero Section */
#hero {
	background-image: url(./img/AdobeStock_443709176.jpg);
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
}
#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.7;
	z-index: -1;
}
#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}
#hero h1 {
	display: block;
	width: fit-content;
	font-size: 6vh;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
}
#hero h1:nth-child(1) {
	animation-delay: 1s;
}
#hero h1:nth-child(2) {
	animation-delay: 2s;
}
#hero h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: crimson;
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}
#hero h1:nth-child(1) span {
	animation-delay: 0.5s;
}
#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
	animation-delay: 2.5s;
}

/* End Hero Section */

/* Services Section */
#services .services {
	flex-direction: column;
	text-align: center;
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 0;
}
/* Modal styles */
.modal {
	display: none; /* Hidden by default */
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.4);
  }
  
  .modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 600px;
	border-radius: 5px;
	position: relative;
	text-align: center;
  }
  
  .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
  }
  
  form {
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
  h3 {
	margin-bottom: 20px;
  }
  
  label {
	margin-bottom: 5px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  button {
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
	font-size: 14px;
  }
  
  button[type="submit"] {
	background-color: #007bff;
	color: white;
	border: none;
	cursor: pointer;
  }
  
  button[type="submit"]:hover {
	background-color: #0056b3;
  }
.read-more {
	display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    text-decoration: none;
   
    color: white;
    background-color: crimson;
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    cursor: pointer;
    transition: 0.3s ease;
    
}

.read-more:hover {
    background-color: #d00000;
}
.apply-now.hidden {
    display: none;
}
.apply-now {
    display: inline-block;
    background-color: rgb(1, 36, 133);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
	
    margin-top: 10px; /* Add margin to separate from the Read More button */
    border-radius: 3px; /* Optional: Add border-radius for rounded corners */
}
.apply-now:hover {
background-color: rgb(14, 72, 180);
}
#services .service-top {
	max-width: 500px;
	margin: 0 auto;
}
#services .service-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}
#services .service-item {
	flex-basis: 80%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
	background-size: cover;
}
#services .service-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.9;
	z-index: -1;
}
#services .service-bottom .icon {
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
}
#services .service-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: uppercase;
}
#services .service-item:nth-child(1) .icon img {
    width: 60px;  /* Adjusted width for a smaller icon */
    height: 60px; /* Adjusted height for a smaller icon */
    border-radius: 50%; /* Keeps the image circular */
    object-fit: cover; /* Ensures the image covers the entire area */
    border: 2px solid white; /* Optional: Adds a border around the circle */
}
#services .service-item:nth-child(2) .icon img {
    width: 60px;  /* Adjusted width for a smaller icon */
    height: 60px; /* Adjusted height for a smaller icon */
    border-radius: 50%; /* Keeps the image circular */
    object-fit: cover; /* Ensures the image covers the entire area */
    border: 2px solid white; /* Optional: Adds a border around the circle */
}
#services .service-item:nth-child(3) .icon img {
    width: 60px;  /* Adjusted width for a smaller icon */
    height: 60px; /* Adjusted height for a smaller icon */
    border-radius: 50%; /* Keeps the image circular */
    object-fit: cover; /* Ensures the image covers the entire area */
    border: 2px solid white; /* Optional: Adds a border around the circle */
}
#services .service-item:nth-child(4) .icon img {
    width: 60px;  /* Adjusted width for a smaller icon */
    height: 60px; /* Adjusted height for a smaller icon */
    border-radius: 50%; /* Keeps the image circular */
    object-fit: cover; /* Ensures the image covers the entire area */
    border: 2px solid white; /* Optional: Adds a border around the circle */
}


#services .service-item p {
	color: white;
	text-align: left;
}
#services .service-item:nth-child(1) {
    background-image: url('./img/pexels-sophors-25437427.jpg'); /* Image for the first service */
}

#services .service-item:nth-child(2) {
    background-image: url('./img/pexels-jonathanborba-3052727.jpg'); /* Image for the second service */
}

#services .service-item:nth-child(3) {
    background-image: url('./img/pexels-tima-miroshnichenko-8327573.jpg'); /* Image for the third service */
}

#services .service-item:nth-child(4) {
    background-image: url('./img/pexels-mikhail-nilov-7731330.jpg'); /* Image for the fourth service */
}

/* End Services Section */

/* Projects Section */
#projects .projects {
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
    position: relative;
}

#projects .projects-header h1 {
    margin-bottom: 50px;
    font-size: 3rem;
    color: #333;
    text-align: center;
    animation: fadeIn 1s ease-out; /* Animation */
}

#projects .all-projects {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#projects .project-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f9f9f9; /* Light background for contrast */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease; /* Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards; /* Animation */
}

#projects .project-item:nth-child(even) {
    animation-delay: 0.2s; /* Stagger animation */
}

#projects .project-item:nth-child(odd) {
    animation-delay: 0.4s; /* Stagger animation */
}

#projects .project-item:hover {
    transform: translateY(-10px); /* Elevate on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

#projects .project-info {
    padding: 30px;
    flex-basis: 50%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    color: white;
    transition: background-color 0.3s ease; /* Animation */
}

#projects .project-info h1 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 10px;
}

#projects .project-info h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 10px;
}

#projects .project-info p {
    color: white;
}

#projects .project-img {
    flex-basis: 50%;
    height: 300px;
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s ease; /* Animation */
}

#projects .project-img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    opacity: 0.7;
}

#projects .project-img img {
    transition: transform 0.3s ease;
}

#projects .project-item:hover .project-img img {
    transform: scale(1.1); /* Zoom effect */
}

#projects .project-item:hover .project-img {
    opacity: 0.5; /* Fade out image on hover */
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* About Section */
#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}

  
#about .col-left {
	width: 250px;
	height: 360px;
}
#about .col-right {
	width: 100%;
}
#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
}
#about .col-right p {
	margin-bottom: 20px;
}
#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}
#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}
#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid crimson;
	z-index: -1;
}
.word {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .word.visible {
	opacity: 1;
	transform: translateY(0);
  }
  
/* End About Section */

/* Contact Section */
#contact .contact {
    flex-direction: column;
    max-width: 500px;
	max-height: auto;
    margin: 0 auto;
    width: 90%;
    padding: 50px 0;
    text-align: center;
	border: 1px solid black;
	background-color:rgb(23, 164, 113) ;
	position: relative;
    animation: bounceIn 1s ease-out; /* Animation */
}

#contact .contact-items {
    width: 100%;
}

#contact .contact .container {
    max-width: 600px;
    margin: 0 auto;
    
    padding: 30px;
    box-shadow: 0 0 10px rgba(143, 210, 209, 0.1);
    border-radius: 10px;
    border: 3px solid #007BFF;
  
	
}

#contact .contact .container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid #169981;
    border-radius: 12px;
    z-index: -1;
}

#contact .contact .container h1 {
    margin-bottom: 20px;
    color: black;
}

#contact .contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
    opacity: 0;
	color: black;
    animation: fadeIn 0.5s ease-out forwards; /* Animation */
}

#contact .contact-form .form-group:nth-child(1) {
    animation-delay: 0.1s;
}

#contact .contact-form .form-group:nth-child(2) {
    animation-delay: 0.2s;
}

#contact .contact-form .form-group:nth-child(3) {
    animation-delay: 0.3s;
}

#contact .contact-form .form-group:nth-child(4) {
    animation-delay: 0.4s;
}

#contact .contact-form .form-group:nth-child(5) {
    animation-delay: 0.5s;
}

#contact .contact-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; /* Makes the text bold */
    background: linear-gradient(270deg, #1e3c72, #2a5298, #012d54, #5f3305);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradient-animation 8s ease infinite;
    font-size: 1.2em; /* Increase font size to make it more visible */
}

/* Gradient Animation */
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


#contact .contact-form .form-group input,
#contact .contact-form .form-group textarea {
    width: 280px;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact .contact-form .form-group input:focus,
#contact .contact-form .form-group textarea:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

#contact .contact-form .form-group button {
    padding: 10px 20px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#contact .contact-form .form-group button:hover {
    background-color: #892acd;
    transform: scale(1.05);
}

#contact .contact-item {
    width: 80%;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 0px 18px 0 #0000002c;
    transition: 0.3s ease box-shadow;
}

#contact .contact-item:hover {
    box-shadow: 0px 0px 5px 0 #0000002c;
}
/* End Contact Section */

/* Keyframes */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    60% {
        opacity: 1;
        transform: translateY(20px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

	

/* Footer */
#footer {
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
}
#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}
#footer .social-item img {
	filter: grayscale(1);
	transition: 0.3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: white;
	font-size: 1.3rem;
}
/* End Footer */

/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: crimson;
		font-weight: 500;
	}
}
/* End Keyframes */

/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
	}

	/* Hero */
	#hero h1 {
		font-size: 7rem;
	}
	/* End Hero */

	/* Services Section */
	#services .service-bottom .service-item {
		flex-basis: 45%;
		margin: 2.5%;
	}
	/* End Services Section */

	/* Project */
	#projects .project-item {
		flex-direction: row;
	}
	#projects .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#projects .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#projects .all-projects .project-info {
		height: 100%;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}
	/* End Project */

	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid crimson;
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}
	/* End About */

	/* contact  */
	#contact .contact {
		flex-direction: column;
		padding: 100px 0;
		align-items: center;
		justify-content: center;
		min-width: 20vh;
	}
	#contact .contact-items {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
	}
	#contact .contact-item {
		width: 30%;
		margin: 0;
		flex-direction: row;
	}
	#contact .contact-item .icon {
		height: 100px;
		width: 100px;
	}
	#contact .contact-item .icon img {
		object-fit: contain;
	}
	#contact .contact-item .contact-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
	/* End contact  */
}
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */

	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}
/* End  Media Query For Desktop */
