* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1e1e2f;
    color: #fff;
}

nav h1 {
    font-size: 1.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color:#ff7f50;
}

.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;

}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #ff7f50;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease transform 0.2 ease;
}

.cta-button:hover {
    background-color: #e76e3c;
    transform: scale(1.05);
}

main section{
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid #eee
}

main h2{
    font-size: 2rem;
    margin-bottom: 1rem;
}

main p{
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

main .cta-button {
    margin-top: 1rem
}

.social-links a{
    margin: 0 0.5rem;
    font-size: 1.5rem;
    color: #ff7f50;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e76e3c;
}

footer {
    text-align : center;
    padding: 2rem;
    background-color: #1e1e2f;
    color: #fff;
    font-size: 0.9rem;
}

footer .social-links {
    margin-top: 1rem;
}

footer .social-links a{
    margin: 0 0.5;
    color: #ff7f50;
    text-decoration: none;
    font-weight: 600;
}

footer .social-links a:hover {
    text-decoration: underline;
}


.page-header{
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f0f0f0;
}

.page-header h2{
    font-size: 2rem;
    margin-bottom: 1rem;
}

.page-header p{
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color:#555;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.service{
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
}

.service h3{
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1e1e2f;
}

.service p{
    font-size: 1rem;
    color: #444
}

.final-cta {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
}

.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.final-cta .cta-button {
    margin-top: 1rem
}

.packages {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.packages h2{
    font-size: 2rem;
    margin-bottom: 1rem;
}

.packages p{
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #555;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.package {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.package:hover {
    transition: translateY(-5px);
}

.package h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e1e2f;
}

.package ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package ul li{
    margin-bottom: 0.5rem;
    color:#444
}

.package .cta-button {
    margin-top: 1rem;
}

.package .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff7f50;
    margin-bottom: 1rem;
}

.package .addon{
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.small-screenshot {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.project {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3 ease;
    text-align: center;
}

.project:hover {
    transform: translateY(-5px);
}

.project img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.project h3{
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.project p{
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
}

.scroll-down {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #ff7f50;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce{
    0%, 100% { transform: translateY(0);}
    50% { transform: translateY(8px);}
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 2rem;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.about-text {
    flex: 1 1 400px;
    max-width: 600px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e1e2f;
}

.about-text p{
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

.about-text .cta-button{
    margin-top: 1rem;
}

.about-image {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
}

.about-image img{
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1)
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1e1e2f;
  color: #fff;
  position: relative;
}

.logo img{
  height: 60px;
  width: auto;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #1e1e2f;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 600px) {
  .contact-form {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff7f50;
  box-shadow: 0 0 0 2px rgba(255, 127, 80, 0.2);
}

.contact-form .cta-button {
  background-color: #ff7f50;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .cta-button:hover {
  background-color: #e96c3f;
}

.form-success {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
  background-color: #e6f9f0;
  border: 1px solid #b2e2c9;
  border-radius: 8px;
  color: #2f7d5f;
}

.form-success i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2f7d5f;
}

.form-success h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.form-success p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.form-success .cta-button {
  background-color: #ff7f50;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.form-success .cta-button:hover {
  background-color: #e96c3f;
}

html{
    scroll-behavior: smooth;
}