body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  padding: 0;
  
}
/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: #121212;
  color: white;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  font-size: 1.4rem;
  font-weight: bold;
}

/* Navbar links */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.navbar a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #00bcd4;
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background: #1f1f1f;
    position: absolute;
    top: 60px;
    right: 2rem;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
  }

  .navbar ul.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}


.hero {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #00bcd4, #2196f3);
  color: white;
}

.hero h1 span {
  color: #ffeb3b;
}

.hero .btn {
  display: inline-block;
  margin-top: 1.5rem;
  color: black;
    background: #0e0d0d;
  

  padding: 0.8rem 1.4rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.hero .btn:hover {
  color: #2196f3;
}

.featured-projects {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background: #f1f1f1;
  padding: 1.5rem;
  border-radius: 8px;
  transition: 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

footer {
  padding: 2rem;
  background: #121212;
  color: white;
  text-align: center;
}

footer .socials a {
  color: #00bcd4;
  text-decoration: none;
  margin: 0 0.3rem;
}


.about-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
  background-color: #ffffff;
}

.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-section p {
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.highlight-box {
  background: #e0f7fa;
  padding: 1.5rem;
  border-left: 5px solid #00acc1;
  margin: 2rem 0;
  border-radius: 6px;
}

.highlight-box h3 {
  margin-top: 0;
}

.highlight-box ul {
  list-style-type: none;
  padding-left: 0;
}

.highlight-box li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.btn {
  display: inline-block;
  background-color: #2196f3;
  color: white;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #1976d2;
}


.skills-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
  background-color: #fdfdfd;
}

.skills-section h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.skills-section p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  background: #e3f2fd;
  border-left: 5px solid #2196f3;
  padding: 1rem;
  border-radius: 8px;
  transition: 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-4px);
  background: #bbdefb;
}


.projects-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.projects-section h1 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 1rem;
}

.projects-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.project-item {
  background: #f0f0f0;
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.project-item:hover {
  transform: translateY(-5px);
  background: #e0f7fa;
}

.project-item h3 {
  margin-top: 0;
  color: #00796b;
}

.project-item .tag {
  display: inline-block;
  background-color: #b2ebf2;
  color: #00796b;
  font-size: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
  margin-right: 0.4rem;
  margin-top: 0.6rem;
}

.services-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
}

.services-section h1 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 1rem;
}

.services-section p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #e8f5e9;
  padding: 1.2rem;
  border-left: 4px solid #388e3c;
  border-radius: 8px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: #c8e6c9;
}


.experience-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.timeline {
  margin-top: 3rem;
  position: relative;
  border-left: 3px solid #2196f3;
  padding-left: 2rem;
}

.timeline-item {
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 5px;
  background-color: #2196f3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.timeline-item .year {
  font-weight: bold;
  color: #2196f3;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-item .details h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
  color: #333;
}

.timeline-item .details p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}


.testimonials-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.testimonials-section h1 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.testimonials-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background-color: #f3e5f5;
  border-left: 5px solid #8e24aa;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  background: #e1bee7;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  text-align: right;
  margin: 0;
  font-weight: normal;
  color: #6a1b9a;
}

.resume-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.resume-section h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.resume-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.resume-embed {
  margin-bottom: 2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.btn {
  background-color: #2196f3;
  color: white !important;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #1976d2;
}



.contact-section {
  padding: 4rem 2rem;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2196f3;
  outline: none;
}

.contact-form button.btn {
  align-self: center;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  background-color: #2196f3;
  color: white;
  border: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.contact-form button.btn:hover {
  background-color: #1976d2;
}

.social-contact {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: #444;
}

.social-link {
  color: #2196f3;
  text-decoration: none;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #1976d2;
}


.blog-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
}

.blog-section h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.blog-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #555;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-post h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}

.blog-post h3 a {
  color: #2196f3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post h3 a:hover {
  color: #1976d2;
}

.blog-post p {
  margin: 0 0 0.6rem 0;
  color: #444;
  line-height: 1.5;
}

.blog-post small {
  color: #888;
}




.visit-btn {
  display: inline-block;
  margin-top: 1em;
  background: #00bcd4;
  color: white;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.visit-btn:hover {
  background: #00796b;
}


.flutter-capabilities {
  background: #f9f9f9;
  padding: 4rem 2rem;
}

.flutter-capabilities .container {
  max-width: 1200px;
  margin: 0 auto;
}

.flutter-capabilities h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #121212;
}

.flutter-capabilities .intro {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.flutter-use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.flutter-use-cases .card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.flutter-use-cases .card:hover {
  transform: translateY(-6px);
}

.flutter-use-cases ul {
  list-style: none;
  padding: 0;
}

.flutter-use-cases li {
  margin-bottom: 0.6rem;
}

.examples-table {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.examples-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.examples-table th,
.examples-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.examples-table th {
  background-color: #00bcd4;
  color: white;
}

.flutter-why ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.flutter-why li {
  background: #00bcd4;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 24px;
}



.additional-skills {
  margin-top: 50px;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.additional-skills h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.additional-skills p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}



.achievements {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.achievements h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #003366;
}

.achievement-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.achievement-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.achievement-text h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 10px;
}

.achievement-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
















.packages-sectionz{
padding:80px 20px;
background:#f9f9f9;
text-align:center;
}

.packages-sectionz h2{
font-size:32px;
margin-bottom:10px;
}

.package-tabsz{
margin:30px 0;
}

.package-tabsz button{
padding:10px 20px;
margin:5px;
border:none;
background:#111;
color:white;
border-radius:5px;
cursor:pointer;
}

.package-tabsz button:hover{
background:#00bcd4;
}

.package-group{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.package-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.package-card:hover{
transform:translateY(-10px);
}

.package-card h3{
margin-bottom:10px;
}

.price{
font-weight:bold;
color:#00bcd4;
margin-bottom:15px;
}

.package-card ul{
list-style:none;
padding:0;
margin-bottom:20px;
}

.package-card ul li{
margin:6px 0;
}

.package-btn{
display:inline-block;
padding:10px 18px;
background:#25D366;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:bold;
}

.package-btn:hover{
background:#1ebe5d;
}