* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0b1c3d;
  color: #fff;
  line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #081530;
    top: 1px;
    position: fixed;
    width: 100%;
}

header .logo {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

header .logo span {
  color: #2f9bff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #2f9bff;
}

/* Hero */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 10%;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 48px;
}

.hero-text span {
  color: #2f9bff;
}

.hero-text .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #2f9bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.hero-img {
  position: relative;
}

.hero-img img {
  border-radius: 10px;
}

.hero-img .tag {
    position: absolute;
    top: 62px;
    right: 236px;
    background: #2f9bff;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
}

/* Services */
.services {
  padding: 80px 10%;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-box {
  background: #11244d;
  padding: 20px;
  border-radius: 10px;
}

/* Resume */
.resume {
  padding: 80px 10%;
  text-align: center;
}

.resume .tabs {
  margin: 20px 0;
}

.resume .tabs button {
  padding: 10px 20px;
  border: none;
  margin: 0 5px;
  background: #11244d;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.resume .tabs .active {
  background: #2f9bff;
}

.resume-content {
  margin-top: 20px;
  text-align: left;
}

.resume-item {
  margin-bottom: 20px;
}

/* Portfolio */
.portfolio {
  padding: 80px 10%;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio img {
  width: 100%;
  border-radius: 10px;
}
.footer {
    font-family: montserrat;
    font-size: 15px ;
    color: #FFFFFF;
    background-color: #2F9BFF;
    height: 50px;
    width: 100%;
}
.footer p {
    text-align: center;
    padding-top: 15px;
    color: #FFFFFF;
    font-family: montserrat;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
}
/* Contact Section */
.contact {
  padding: 80px 10%;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact p {
  margin-bottom: 40px;
  color: #ccc;
}

.contact-form {
  max-width: 700px;
  margin: auto;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #11244d;
  color: #fff;
  font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form textarea {
  resize: none;
}

.contact-form .btn {
  background: #2f9bff;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form .btn:hover {
  background: #1d7ed1;
}
/* About Section */
.about {
  padding: 80px 10%;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-img img {
  border-radius: 12px;
  width: 300px;
  height: auto;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: #ccc;
}

.resume-box {
  background: #11244d;
  padding: 20px;
  border-radius: 8px;
}

/* Blog Section */
.blog {
  padding: 80px 10%;
  text-align: center;
}

.blog h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.blog p {
  margin-bottom: 30px;
  color: #ccc;
}

.video-container {
  max-width: 800px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
/* Portfolio Page */
.portfolio {
  padding: 80px 10%;
  text-align: center;
}

.portfolio h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.portfolio p {
  margin-bottom: 40px;
  color: #ccc;
}

.portfolio-section {
  margin-bottom: 70px;
  text-align: left;
}

.portfolio-section h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #2f9bff;
}

.portfolio-section p {
  margin-bottom: 20px;
  color: #bbb;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.portfolio-grid img,
.portfolio-grid iframe {
  width: 100%;
  border-radius: 10px;
  background: #11244d;
  padding: 5px;
}
