
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #f9f9fb;
  color: #333;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  background: linear-gradient(to right, , );
  padding: 15px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
.navbar .logo {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.navbar .nav-links li a:hover {
  color: #71100F;
}


.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
   background: linear-gradient(to right, #111, #5c6bc0);
  color: white;
  text-align: center;
  padding: 0 20px;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero span {
  color: #ffeb3b;
}
.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: white;
  color: #3f51b5;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}
.hero .btn:hover {
  background: #ddd;
}


.section {
  max-width: 900px;
  margin: 80px auto;
  padding: 20px;
}
.section h2 {
  margin-bottom: 20px;
  color: ;
  border-bottom: px solid ;
  display: inline-block;
}


.card {
  background: white;
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
  margin-top: 50px;
}

.footer .social-icons {
  margin-top: 10px;
}

.footer .social-icons a {
  display: inline-block;
  margin: 0 10px;
}

.footer .social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer .social-icons img:hover {
  transform: scale(1.2);
  opacity: 0.8;
}




.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}


.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.card h3 {
  margin: 15px;
  font-size: 1.2rem;
  color: #333;
}

.card p {
  margin: 0 15px 15px;
  color: #666;
  font-size: 0.95rem;
}


.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}



* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
header, nav, section, main { margin: 0; padding: 0; }





.hero {
 
  text-align: center;
  padding: 60px 20px;
  color: white;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  
}

.hero p {
  font-size: 18px;
  margin-top: 10px;
  color: #cccccc;
}



footer {
  background-color: #111;
  color: white;
  padding: 20px 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-icons img {
  width: 28px;
  height: 28px;
  margin-left: 15px;
  transition: transform 0.2s;
}

.footer-icons img:hover {
  transform: scale(1.2);
}



html {
  scroll-behavior: smooth;
}




a {
    text-decoration: none; 
    color: inherit;        
}









.see-more-wrapper {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}


.see-more-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;

	
    color:darkgrey;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.see-more-link:hover {
    background-color: white;
}














  
        body {
            opacity: 1;
            transition: opacity 0.5s ease-in-out;
        }

       
        body.fade-out {
            opacity: 0;
        }

       
      

        .fade-link:hover {
            background-color: #0056b3;
        }

     
        .container {
            display: flex;
            height: 100vh;
            justify-content: center;
            align-items: center;
        }










body {
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.fade-in {
  opacity: 1;
}

body.fade-out {
  opacity: 0;
}
