/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: #111; color: #fff; scroll-behavior: smooth; }

/* Global styles */
body {
  font-family: 'Lato', sans-serif;
  background: #111;
  color: #fff;
}


/* Hero title styling */
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Portfolio titles */
h2 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Navbar */
.navbar {
  position: fixed; top: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 50px; z-index: 1000;
  backdrop-filter: blur(12px); background: rgba(0,0,0,0.4);
}
.navbar .logo { font-size: 26px; font-weight: 700; color: #fff; }
.navbar .logo span { color: #ff3b3b; }
.navbar ul { list-style: none; display: flex;  flex-wrap: wrap;
  justify-content: center; }
.navbar ul li { margin-left: 25px;  margin: 8px;
  font-size: 16px;}
.navbar ul li a { text-decoration: none; color: #fff; transition: 0.3s; }
.navbar ul li a:hover { color: #ff3b3b; }



/*CHECK THIS PART*/
@media (max-width: 768px) {
  nav ul li{
    display: none;
  }
}
/*---------------------*/



/* Hero */
.hero::before {
  content:"";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 0;
}
.hero {
  height: 100vh; display: flex; justify-content: center; align-items: center;
  text-align: center; position: relative; color: white;
  overflow: hidden;
}
.hero-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -1;
}
.hero h1 { font-size: 3rem; }
.hero h1 span { color: #ff3b3b; }
.hero .btn {
  display: inline-block; margin-top: 20px;
  padding: 12px 25px; background: #ff3b3b; color: white;
  border-radius: 8px; text-decoration: none; font-weight: bold;
  transition: 0.3s;
}
.hero .btn:hover { background: #ff1c1c; }

/* Sections */
section { padding: 100px 50px; text-align: center; }
h2 { font-size: 2.5rem; margin-bottom: 30px; }

/* Portfolio */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery img {
  width: 100%; border-radius: 12px; transition: transform 0.4s;
}
.gallery img:hover { transform: scale(1.08); }

/* Services */
.service-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.service {
  background: rgba(255,255,255,0.05); padding: 25px; border-radius: 12px;
  width: 280px; transition: 0.4s ease; backgound 0.4s ease, box-shadow 0.4s ease; opacity: 1;
}
.service:hover { transform: scale(1.05); background: rgba(255,29,59,0.5); }

/* About Section */
.about {
  padding: 100px 50px;
  font-family: 'Lato', sans-serif;
  color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left text */
.about-left {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.about-left h2 {
  font-family: ,serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Right image */
.about-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-right img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.about-right img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .about-left, .about-right {
    text-align: center;
  }
}

/* Contact Section */
.contact {
  padding: 100px 50px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  color: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  max-width: 1000px;
  margin: auto;
}

.contact-left, .contact-right {
  flex: 1;
  min-width: 280px;
}

/* Headings */
.contact-left h2, .contact-right h2 {
  font-family: '', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Contact Info */
.contact-left p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.contact-left a {
  color: #ff3b3b;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: 0.3s;
}

.contact-left a:hover {
  color: #ff1c1c;
  text-decoration: underline;
}

/* Social Links */
.contact-right .social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-right .social-links a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff3b3b;
  text-decoration: none;
  transition: 0.3s;
}

.contact-right .social-links a:hover {
  color: #ff1c1c;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }
  .contact-left, .contact-right {
    min-width: 100%;
  }
}


/* Footer */
footer { background: #000; padding: 20px; text-align: center; color: #aaa; position: relative; }
