
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter';
}

.icon-container {

  display: flex;
  align-items: center;
  gap: 0;
}
.icon-container span{
  margin-left: 4px;
}
.log-icon a img{
width: 32px;
height: 32px;
}
.circle {
  width: 16px;
  height: 16px;
  background-color: #0066ff;
  border-radius: 50%;
}

.triangle {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14.6px solid #0066ff;
  margin-left: 0px;
}
.fnt-12
{
  font-size: 12px;
}
.fnt-14
{
  font-size: 14px;
}

.fnt-16
{
  font-size: 16px;
}

.fnt-18
{
  font-size: 18px;
}
.fnt-20
{
  font-size: 20px;
}
.fw-400
{
  font-weight: 400;
}
.fw-500
{
  font-weight: 500;
}


.nav {
    padding: 1rem 2rem;
    background: #fff;
    border-bottom: 1px solid #00000033
}

.logo {
    font-weight: bold;
    color: #333;
    font-size: 1.2rem;
    display: flex;
    gap: 8px;
    justify-content: space-between;
  //  max-width: 1200px;
    margin: 0rem auto;
    padding: 0 2rem;
}

.nav-section{
  padding: 1rem 4rem !important;
}
.hero {
  //  max-width: 1200px;
    margin: 0rem auto;
    padding: 0 2rem;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 15rem;
    align-items: center;
  //  height: 50vh;
    
}

#hobbies{
	padding: 3rem 4rem 1rem 4rem !important;
}
.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000000;
    text-align: left;
}

.hero-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.btn-primary {
    background: #1a73e8;
    color: white;
}

.btn-secondary {
    border: 1px solid #1a73e8;
    color: #1a73e8;
}

.projects {
  //  max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.projects h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
    display: flex ;
    align-items: center;
    gap: 4px;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 2rem;

}

.project-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 32px;

}
.project-grid .colm
{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-card h3{

font-size: 16px;
font-weight: 400;
text-align: left;
text-decoration-line: underline;
text-decoration-style: solid;
text-underline-position: from-font;
text-decoration-skip-ink: auto;
border-bottom: 1px solid #E6EBF5;
padding-bottom: 8px;

}

.deliverables {
    list-style:decimal;
    padding-inline: 16px;
    margin-top: 8px;
}

.deliverables li {
    margin-bottom: 0.5rem;
    color: #272666;
    font-size: 15px;
    font-weight: 400px  ;
}

.skills {
    list-style: none;
}

.skills li {
    color: #666;
    margin-bottom: 0.5rem;
}

.hero-image {
    display: grid;
    grid-template-columns: repeat( 1fr);
  

}

.hero-image img {
    width: 450px;
    height: 500px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3em;
        height: auto;
		display: block;
    }
    .project-grid {
        grid-template-columns: 1fr;
    }
    .hero-image
    {
      margin: auto;
    }
    .hero-image img
    {
      width: 250px;
      height: 300px;
    }
    .hero-content
    {
      margin-top: 24px;
    }
    .hero-content h1
    {
      text-align: center;
      font-size: 32px;
    }
}
.container {
  //  max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }

  h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
    color: #000;
  }

  .grid {   
    display: grid;
    grid-template-columns: repeat(3 ,1fr);
    gap: 24px;
  }

  .card {
    background: #f8f9ff;
    border-radius: 16px;
    padding: 32px;
  }

  .card:nth-child(2),
  .card:nth-child(4),
  .card:nth-child(6) {
    background: #fff0f7;
  }

  .card .icon {
    width: 110px;
    height: 110px;
    margin-bottom: 24px;
  }

  .title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 12px 0;
  }

  .description {
    color: #666;
    line-height: 1.6;
    margin: 0 0 24px 0;
    font-size: 14px;
  }

  .link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background-color: white;
    border-radius: 6px;
    padding: 8px 12px;
  }
  .link:hover
  {
    background-color: #fafafa;
  }

  .link svg {
    width: 16px;
    height: 16px;
  }

  @media (max-width: 1024px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .grid {
      grid-template-columns: 1fr;
    }
  }


  
  .skill-container {
  //  max-width: 1200px;
margin: 80px auto;
 padding: 4rem 4rem !important;
display: flex;
background: #D9D9D91A;

}

.text-section {
  flex: 1;
  margin-right: 20px;
}

.text-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
 
}

.text-section p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #555;
  margin-top: 24px;
}

.text-section button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.text-section button:hover {
  background-color: #0056b3;
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  flex: 1;
}
.icons-grid .sec-grid
{
position: relative;
top:30px;
}
.icons-grid .fourth-grid
{
    position: relative;
    bottom: 40px;
    
}

.icon-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  height: 120px;
  width: 120px;
  box-shadow: 0px 5.25px 23px 0px #2F285B2B;

  margin-bottom: 20px;
}

.icon-card img {
  max-width: 100px;
  max-height: 100px;
  object-fit: scale-down;
}


      .ux-container {
    //  max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .ux-container h1 {
      text-align: center;
      font-size: 2rem;

      width: 75%;
      margin: auto;
      padding-bottom: 3rem;
    }

    .ux-grid {
      display: grid;
      grid-template-columns:  repeat(4, 1fr);
      gap: 20px;
    }
    @media (max-width: 1024px) {
        .ux-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
    
      @media (max-width: 640px) {
        .ux-grid {
          grid-template-columns: 1fr;
        }
        .skill-container
        {
          display: grid;
        }
        .icons-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          padding-top: 32px;
          margin: auto  ;
          gap: 40px;
        }
        .icons-grid .fourth-grid
        {
          top: 40px;
          bottom: 0;
        
        }
      }
    .lighter-text {
  font-weight: 100;
  color: #101010;
}
    .ux-step {
      background: #101010;
      border-radius: 8px;
      box-shadow: 1px 2px 15px 0px #00000026;

      padding: 20px;
      text-align: center;
    }

    .ux-step h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #ffffff;
      text-align: left;
    }

    .ux-step p {
      font-size: 13px;
      color: #ddd8d8;
      margin-bottom: 15px;
      text-align: left;
    }

    .ux-step .icon {
      width:40px;
      height:   40px;
      margin: 0 10px;
      background-color: #0a1a41;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon img {
      width: 20px;
      height: 20px;
      color: #0066ff;
    }

    .blog-container {
    //  max-width: 1200px;
      margin: 0 auto;
     padding: 4rem 4rem !important;
  }
#hobbies{
  background: #f7f7f7;
}
  header {
      text-align: center;
      margin-bottom: 3rem;
  }

  .header-title {
      font-size: 2rem;
      margin-bottom: 1rem;
  }

  .blog-grid {
display: flex;flex-direction: column;
      gap: 2rem;
  }

  .blog-post {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: row-reverse;
  }
  .blog-post:nth-of-type(2)
  {
    flex-direction: row;
  }
  /* .blog-post:hover {
      transform: translateY(-5px);
  } */

  .tag {
      display: inline-block;
      color: #1a73e8;
      font-size: 24px;
      margin-bottom: 1rem;
  }

  .blog-content {
      padding: 1.5rem;
      flex: 1;
  }

  .blog-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #1a1a1a;
  }

  .blog-description {
      color: #666;
      margin-bottom: 1.5rem;
  }

  .image-container .blog-image {
      width: 500px;
      height: 300px;
      object-fit: contain;
      padding: 1rem;
      background: #f8f9fa;
  }

  .image-container {
      position: relative;
      width: 50%;
      height: 300px;
      overflow: hidden;
      background: #f8f9fa;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .explore-btn {
      display: inline-block;
      background: #1a73e8;
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s ease;
  }

  .explore-btn:hover {
      background: #1557b0;
  }

  @media (max-width: 768px) {
      .container {
          padding: 1rem;
      }

      .blog-post {
         flex-direction: column;
      }
      .blog-post:nth-of-type(2)
      {
        flex-direction: column;
      }
      .blog-title {
          font-size: 1.3rem;
      }

      .header-title {
          font-size: 1.7rem;
      }
      
      .blog-image {
          height: 250px;
          width: 100% !important;
          border-radius: 10px 10px 0px  0px !important;
      }
      
      .image-container {
          height: 250px;
          width: 100%;
      }
  }
  .skills-container {
    max-width: 100%;
   // margin: 4rem auto;
    //padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #F7F7F7;

}

@media (min-width: 968px) {
    .skills-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px)
{
  .skills-container {
    grid-template-columns: 1fr;
}
}
.left-column {
    padding-right: 1rem;
}

.header h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
	text-align: left;
}

.intro-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.skills-grid {
    display: grid;
    gap: 1.5rem;
}

.skill-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
}

.skill-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 9px 0px #0000000D;

    flex-shrink: 0;
}

.skill-icon.marketing {
    color: #2563eb;
}

.skill-icon.content {
    color: #0891b2;
}

.skill-icon.networking {
    color: #4f46e5;
}

.skill-content h2 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.skill-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 967px) {
    .container {
        padding: 0 1rem;
    }

    .header h1 {
        font-size: 1.75rem;
    }

    .left-column {
        padding-right: 0;
    }
}

.footer-container {
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  background: #222D65;

  position: relative;
}

/* Sidebar */
.sidebar {
  flex: 0 0 250px;

  border-radius: 10px;
  padding: 1.5rem;
  height: fit-content;
}

.profile-section h1 {
  margin-bottom: 1rem;
}

.profile-section p {
  margin-bottom: 0.5rem;
  color: #90caf9;
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  color: #2196f3;
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Main Content */
.main-content {
display: flex;
justify-content: space-between;
  border-radius: 10px;
  padding: 1.5rem;
  width: 100%;
}

/* Navigation */
.nav-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1rem 0;
  margin-bottom: 2rem;
  z-index: 1000;
  display: flex
;
  justify-content: center;  
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  background-color: rgb(255, 255, 255);
  padding: 12px;
  margin: 4px;
  border-radius: 25px;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;

}

.nav-links a {
  color: #1a237e;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 30px;
  transition: background-color 0.3s;
  margin: 4px;
}
.nav-links li a.active {
  color: #fff; /* active link color */
  background-color: #007BFF; /* active background color */
}
.nav-links a:hover {
  background-color: rgba(33, 150, 243, 0.1);
}

/* Content Sections */
.section {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section h2{
  color: white;
}
.section-list {
  list-style: none;
  margin-top: 1rem;
}

.section-list li {
  margin-bottom: 0.5rem;
  color: #90caf9;
}

/* Blog Cards */
.blog-card {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  color: #1a237e;
}

.blog-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-content h3 {
  margin-bottom: 0.5rem;
}

.blog-content .read-more {
  color: #2196f3;
  text-decoration: none;
}

/* Footer */
.footer {
  background-color: #0d47a1;
  color: white;
  padding: 1rem;
  text-align: center;

}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
      padding: 1rem;
  }

  .nav-links {
      flex-wrap: wrap;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
  }
  .nav-links a
  {
    font-size: 10px;
    padding: 2px 4px;
  }
  .sidebar {
      flex: none;
  }
  .main-content
  {
    flex-direction: column;
  }
  .blog-card
  {
  flex-direction: column;
  gap: 0;
  }
}
.sec-ac-items
{
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
 /* Media Query for low resolution  Tablets, Ipads */
 @media (min-width: 768px) and (max-width: 1024px){
  .hero
  {
    gap: 0 !important;
  }
}



.fade-in {
  opacity: 0;
  transform: translateY(120px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
