* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sauce One', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/*
body {
    background: #1a1a1a;
    color: #ffffff;
    min-height: 100vh;
}
*/
body {
    background: #252629;
    color: #ffffff;
    min-height: 100vh;
}



.yellowtail-regular {
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  font-style: normal;
}


/* new styles for navs */

.nav-container {
      width: 100%;
      padding-top: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

.nav-container a {
	text-decoration: none;
}


.logo {
    font-size: 1.5rem;
    color: #fff;
	font-family: "Yellowtail", cursive;
	font-weight: 400;
	font-style: normal;
    margin-bottom: 20px;
    }

    .menu-icon {
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .menu-icon span {
      width: 40px;
      height: 2px;
      background-color: white;
      display: block;
      margin: 0 auto;
    }

    .menu-icon span:nth-child(2) {
      width: 30px;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      background-color: rgba(30, 31, 34, 0.98);
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: center;
      z-index: 999;
      transform: scale(0);
      transition: transform 0.3s ease;
	  
    }

    .overlay.active {
      transform: scale(1);
    }

.aligner{
	display:flex;
	text-align:start;
	flex-direction: column;
	margin-top: 8rem;
	
}
    .overlay a {
      position: relative;
      color: white;
      text-decoration: none;
      font-size: 44px;
      margin: 15px 0;
      padding-bottom: 5px;
	  font-weight:100;
    }

    .overlay a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0%;
      background-color: #3BDDAA;
      transition: width 0.3s ease;
    }

    .overlay a:hover::after {
      width: 100%;
    }

    .close-btn {
      position: relative;
      margin-top: 4rem;
      font-size: 60px;
	  font-weight:100;
      cursor: pointer;
      color: white;
    }



/* main site start */

.bar {
    width: 35px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.4s;
}


.home-main {
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero-text {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: left;
}

@media (max-width: 768px) {
	.dws h2 {
        font-size: 32px !important;
		margin-bottom:2rem !important;
    }
}

.parallax-text {
    position: relative;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.spacer {
    height: 5vh;
}

@media (max-width: 768px) {
    .parallax-text {
        font-size: 48px;
    }
}


/*
.home-main h1 {
    font-size: 76px;
	font-weight:300;
    margin-bottom: 4rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

*/

.section-title {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top:13rem;
}

.title-line{
	position: absolute;
	width:8px;
	height:200px;
	margin-bottom:12rem;
	background-color:#2C2D30;
	z-index:0;
}

@media (max-width: 768px) {
	.section-title {
	padding-top:10rem;
	
	}
	
	.title-line{
		height:140px;
		margin-bottom:7rem;
	}
	
}

.sub-title {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top:1rem;
}


.home-main h1 {
    font-size: 76px;
	font-weight:300;
    margin-bottom: 4rem;
    line-height: 1.2;
    
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}


.dws h2 {
    font-size: 44px;
	font-weight:300;
    margin-bottom: 4rem;
    line-height: 1.2;
    z-index:1;
    transform: translateY(44px);
    animation: fadeIn 1s ease-out forwards;
}



@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.basic-p {
	font-size: 24px;
	font-weight:300;
    margin-bottom: 4rem;
    line-height: 1.6;
	color:#6F6F72;
	text-align: left;
	
}

@media (max-width: 768px) {
	.basic-p {
		font-size: 20px;
	}
	
}


.basic-p-sub {
	font-size: 18px;
	font-weight:300;
    margin-bottom: 4rem;
    line-height: 1.6;
	color:#6F6F72;
	text-align: left;
	
}

@media (max-width: 768px) {
	.basic-p-sub {
		font-size: 16px;
	}
	
}




@media (max-width: 768px) {
    .home-main h1 {
        font-size: 64px;
        /* Remove text-align: center */
        text-align: left !important; /* Maintain left alignment */
    }

    .hero-text {
        padding: 0 1.5rem; /* Adjust padding for mobile */
        justify-content: flex-start; /* Align to left on mobile */
    }
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1rem;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.project-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s;
	text-align: left;
	line-height:2.2rem
}

.project-card:hover .card-overlay {
    opacity: 0.5;
	background-color:#252629;
}

.project-card:hover .card-content {
    transform: translateY(0);
}

.project-page {
    padding: 6rem 2rem 4rem;
    text-align: center;
    max-width: 1366px;
    margin: 0 auto;
}

.project-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.project-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding: 0 1rem;
}

.nav-button {
    border: 1px solid #6F6F72;
    color: #6F6F72;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
	font-size:14px;
}

.nav-button:hover {
	border: 1px solid #3BDDAA;
	color: #3BDDAA;
    background: #252629;
    transform: translateY(-2px);
}


.act {
    display: inline-flex;
    flex-direction: row;
    gap: 2rem;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1rem;
	max-height:56px;
}

.act-btm {
    display: inline-flex;
    flex-direction: row;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
	max-height:56px;
	align:center;
}

.cmb {
    display: flex;
    justify-content: center;
    margin-top: 0rem;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .act {
		display: flex;
		flex-direction: column !important;
		gap: 2rem;
		max-width: 768px;
		margin: 4rem auto;
		padding: 0 1.5rem;
		align-items: center;
	}
	
	.cm-button {
		min-width:100% !important;
		justify-content: center !important;
	}
	
	.tg-button {
		min-width:100% !important;
		justify-content: center !important;
		max-height:56px!important;
	}
	
	.act-btm {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 768;
    margin: 1rem auto;
    padding: 0 1rem;
	align-items: center;
	}
	
}



.cmb-act {
    display: flex;
    justify-content: left;
    margin-top: 0rem;
    padding: 0 1rem;
}


.cm-button {
    color: #fff;
    padding: 1.2rem 4rem;
	width:284px;
	justify-content: center;
    border-radius: 8px;
    text-decoration: none;
	text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
	font-size:14px;
	background-image: linear-gradient(to right, #2B765E 0%, #229F78  100%);
}


.cm-button:hover {
	color: #fff;
    /* background-color:#27886A; */
    transform: translateY(-2px);
}

/* tg button styles */
.tg-button {
    /* border: 1px solid #24A1DE; */
    color: #fff;
    padding: 1.2rem 4rem;
	width:284px;
    border-radius: 8px;
    text-decoration: none;
	text-transform: uppercase;
    display: flex;
	align-items: center;
	justify-content: center;
    gap: 10px;
    transition: all 0.3s;
	font-size:14px;
	background-image: linear-gradient(to right, #1E6081 0%, #24A1DE  100%);
}

.tg-button .btn-icon {
  width: 24px;
  height: 24px;
}

.tg-button:hover {
	color: #fff;
    /* background-color:#24A1DE; */
    transform: translateY(-2px);
}


/* .sn-ar-dwn {
	position:absolute;
	z-index:0;
	padding: 3rem 0rem;
	
} */



.contact-main {
    padding: 6rem 1rem 4rem;
    max-width: 576px;
    margin: 0 auto;
}

.contact-main form {
    
    padding: 2rem;
    border-radius: 8px;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.2); */
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid #424346;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0 0.5rem;
    background: #252629;
    color: #3BDDAA;
    pointer-events: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #30B89A;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -0.8rem;
    left: 0.8rem;
    font-size: 0.9rem;
    color: #30B89A;
}

button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background-image: linear-gradient(to right, #2B765E 0%, #229F78  100%);
	text-transform:uppercase;
    color: #fff;
    border: none;
    border-radius: 8px;
	font-size:14px;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s;
}

button[type="submit"]:hover {
    background: #30B89A;
}

footer {
    background: #252629;
    text-align: center;
    padding: 1rem;
    
    width: 100%;
}

.foo {
	color:#6F6F72;
}

.soc {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top:2rem;
  padding-bottom:2rem;
}

.social-links {
  width: 100%;
  max-width: 300px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  align: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: opacity 0.2s ease;
}

.social-links a:hover {
  opacity: 0.7;
}

.tg{
	margin-left:1rem;
}





	
@media (max-width: 768px) {
    .home-main h1 {
        font-size: 48px;
        text-align: center;
    }
}

.message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: white;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.message.success {
    background: #3BDDAA;
}

.message.error {
    background: #ff4444;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}


