html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.6);
  z-index: 100;
}
.logo {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #004aad;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url("assets/hero-bg.jpg") no-repeat center center/cover;
}

/* Global Section Padding */
section {
  padding: 100px 60px;
}

/* About Section */
.about {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1100px;
  margin: auto;
}
.about img {
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.about-text {
  flex: 1;
}
.about-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #004aad;
}
.about-text p {
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 1rem;
}
.about-quote {
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 30px 0;
  font-style: italic;
  color: #ccc;
  font-size: 1.2rem;
}

/* Overview Section */
#overview {
  background-color: #0a0a0a;
  color: #fff;
}
.overview {
  max-width: 1000px;
  margin: auto;
  padding-top: 40px;
}
.overview h1 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #004aad;
  text-align: center;
}
.overview-section {
  margin-bottom: 40px;
}
.overview-section h2 {
  color: #1e90ff;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.overview-section ul {
  padding-left: 20px;
  line-height: 1.8;
}
.overview-section li {
  margin-bottom: 10px;
}
#services {
  background-color: #000;
  color: #fff;
}

.services {
  max-width: 1100px;
  margin: auto;
  padding-top: 40px;
}

.services h1 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #004aad;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-box {
  background-color: #111;
  padding: 30px 20px;
  border-left: 4px solid #004aad;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box h2 {
  color: #1e90ff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-box p {
  line-height: 1.6;
  font-size: 0.95rem;
  color: #ccc;
}
#portfolio {
  background-color: #0a0a0a;
  color: #fff;
}

.portfolio {
  max-width: 1100px;
  margin: auto;
  padding-top: 40px;
}

.portfolio h1 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #004aad;
  text-align: center;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.portfolio-gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.portfolio-gallery img:hover {
  transform: scale(1.05);
}

.portfolio-cta {
  text-align: center;
  margin-top: 40px;
}

.portfolio-cta a {
  color: #004aad;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid #004aad;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.portfolio-cta a:hover {
  background-color: #004aad;
  color: #fff;
}
#contact {
  background-color: #000;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.contact-13 {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.contact-13 h1 {
  font-size: 3rem;
  letter-spacing: 4px;
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.contact-btn {
  border: 1px solid #fff;
  padding: 15px 25px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #004aad;
}

.behance-preview {
  margin-top: 50px;
}

.behance-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.portfolio-cta {
  margin-top: 30px;
}

.portfolio-cta a {
  color: #004aad;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid #004aad;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.portfolio-cta a:hover {
  background-color: #004aad;
  color: #fff;
}

#contact {
  background-color: #000;
  color: #fff;
  padding: 100px 40px 60px;
  text-align: center;
}

.contact-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.contact-left {
  flex: 1;
  max-width: 500px;
}

.ipad-frame {
  position: relative;
}

.ipad-frame img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ipad-overlay {
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-right {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-right h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  color: #004aad;
  margin-bottom: 10px;
}

.contact-right h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.contact-right p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 10px;
}

.contact-right a {
  color: #fff;
  text-decoration: none;
}

.contact-right a:hover {
  color: #1e90ff;
}

.connect-heading {
  margin-top: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.social-row {
  display: flex;
  gap: 20px;
  margin: 10px 0 30px;
}

.social-row img {
  width: 28px;
  height: 28px;
  filter: none;
  transition: transform 0.3s;
}

.social-row img:hover {
  transform: scale(1.2);
}

.footer-centered {
  background-color: #000;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #222;
}

.footer-centered p {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 10px;
}

.footer-copy {
  color: #555;
  font-size: 0.85rem;
}
.cv-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  border: 2px solid #004aad;
  color: #004aad;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.cv-button-wrapper {
  text-align: center;
  margin-top: 10px;
}

.cv-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  border: 2px solid #004aad;
  color: #004aad;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cv-button:hover {
  background-color: #004aad;
  color: white;
}

