@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

html {
    scroll-behavior: smooth;
}


* {
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body {
    background-color: #eeeeee;
    overflow-x: hidden;
    margin: 0;
    scrollbar-width: none;           
    -ms-overflow-style: none;        
  }
  body::-webkit-scrollbar {
    display: none;
  }

.offset-section {
    scroll-margin-top: 100px; 
}

/*-------------NavBar--------------*/

.navbar {
    box-shadow: black;
    
}

.navbar-brand {
    color: maroon !important; 
}

.nav-link {
    color: #000000 !important; 
    font-family: 'Poppins', sans-serif;
    font-weight: 400; 
    font-size: 1rem;
}


.nav-link:hover {
    color: maroon !important; 
}

/*-------------Hero Section--------------*/

.hero-section {
    background-color: black;
    color: white;
    font-family: 'Georgia', serif;
    background-image: url("images/bg.png");
}

.hero-img {
    max-width: 75%;
    border-radius: 12px;
}

.hero-roles {
    font-size: 2.5rem;
    line-height: 1.5;
    font-style: oblique;
}

.hero-description {
    font-size: 1.1rem;
    
}

.portfolio-label {
    color: maroon;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
}

#hero-text {
    margin-top: 30vh;
    font-size: 2rem;
    color:#0c051a;
}

#hero-text h1 {
    font-size: 5rem;
    margin-top: 2vh;
    color:#0c051a;
}

#hero-text h1 span {
    background: linear-gradient(#F8D6DF, #ED87A4, #f84f7f);
    -webkit-background-clip: text;         /* Safari/Chrome */
    background-clip: text;                 /* Standard */
    -webkit-text-fill-color: transparent;  /* WebKit-specific */
    color: transparent;                    /* Fallback */
}

#catchphrase {
    font-size: 1.5rem;
    margin-top: 2vh;
    color:#000000;
}

.hero-btns a {
    
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: .5s;
}

#resume-btn {
    background: #3b151c;
    background: linear-gradient(90deg,rgba(59, 21, 28, 1) 0%, rgba(240, 224, 223, 1) 35%, rgba(186, 73, 78, 1) 100%);
    border: 2px solid ;
    margin: 0;
    padding: 10px 30px;
    transition: .5s;
}

#resume-btn a {
    color: black;
}

#resume-btn:hover {
    background-color: transparent;
    transform: translateY(-5px);
}

#resume-btn:hover a {
    color: #a19191;
}

#email-btn {
    background: maroon;
    border: 2px solid ;
    margin: 0;
    padding: 10px 30px;
    transition: .5s;
}



#email-btn:hover{
    background-color: transparent;
    transform: translateY(-5px);
}



#github-btn {
    background: maroon;
    border: 2px solid ;
    margin: 0;
    padding: 10px 30px;
    transition: .5s;
}

#github-btn:hover {
    background-color: transparent;
    transform: translateY(-5px);
}



#linkedin-btn {
    background: maroon;
    border: 2px solid ;
    margin: 0;
    padding: 10px 30px;
    transition: .5s;
}

#linkedin-btn:hover {
    background-color: transparent;
    transform: translateY(-5px);
}



/*------About Me--------*/

#about {
    margin-top: 30 vh;
}

.about-text {
    font-size: 1.2rem;
    color:#000000;
}

.section-title {
    font-size: 85px;
    color:maroon;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold';
}



.about-img img {
    width: 125%;
    border-radius: 15px;
    transition: .5s;

}

.about-img img:hover {
    transform: translateY(-10px);
}


/*------Technical Skills Section--------*/

.skill-category {
    border-color: transparent !important;
    border-radius: 10px;
}

#skill-title {
    color:#000000;
}

.skill-icon {
    width: 60px;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .skill-icon:hover {
    transform: scale(1.2);
    filter: brightness(1.2) drop-shadow(0 0 5px maroon);
  }

.descript{
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
}

#skills {
    background-color: black;
    padding: 60px 30px;
    color: white; /* optional to ensure text is readable */
}

.scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .scroll-track {
    display: flex;
    gap: 40px;
    animation: scrollLeft 30s linear infinite;
    align-items: center;
  }
  
  .skill-icon {
    height: 60px;
    width: auto;
    flex-shrink: 0;
  }
  
  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  


/*------Projects Section--------*/ 

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.tag {
    display: inline-block;
    padding: 0.5em 1em;
    border: 2px solid white;
    
    border-radius: 2rem;
    color: white;
    font-size: 0.875em;
}

.proj-card {
    border: 1px solid #FAEFF2;
    background: black;
    transition: transform 0.5s, box-shadow 0.5s;
}

.proj-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-link {
    text-decoration: none;
}

.card-text{
    color: white;
    font-size: 12px;
}

.card-title {
    color: white;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: maroon;
}

/*-----Certifications Section-------*/

.cert-card {
    border: 2px solid maroon !important;
    border-radius: 10px;
    transition: transform 0.5s, box-shadow 0.5s;
    
}
.cert-card:hover{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card a {
    color: maroon;
    text-decoration: none;
    font-weight: 500;
    transition: .5s;
}

.card a:hover {
    color: #F84F7F;
}
.card-text1{
    color: black;
    font-size: 12px;
}

.card-title1 {
    color: black;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: maroon;
}


/*------Education Section--------*/
.education {
    background-color: maroon;
    padding: 60px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.education h4 {
    color: maroon;
    font-weight: 600;
}

.education p {
    color: #333;
    margin-bottom: 0.25rem;
}

.education ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #000000;
}

.education li {
    margin-bottom: 0.5rem;
}


/*-------Connect with me ---------*/

.custom-footer {
    background-color: #fff;
    color: #000;
    font-family: 'Georgia', serif;
    border-top: 1px solid #000;
}

.custom-footer a {
    color: #000;
    text-decoration: none;
}

.custom-footer a:hover {
    text-decoration: underline;
}

.custom-footer .social-icons a {
    color: #000;
}

.custom-footer h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.text-muted {
    color: maroon !important;
}

/*------Services Section--------*/
.service-icon {
    width: 200px;
    height: auto;
}

#services {
    background-color: black;
    padding: 60px 30px;
    color: white; /* optional */
}

.tlel{
    color: maroon;
}

.hover-effect {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: maroon !important;
    transition: all 0.3s ease;
  }