@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barrio&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Barrio&family=Charm:wght@400;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Barrio&family=Charm:wght@400;700&family=Marhey:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family:  Verdana, Arial, Helvetica, sans-serif;
}

:root {
    --bg-color: #ffffff;
    --second-bg-color: #f1ebeb;
    --text-color: #000000;
    --main-color: #e43f3f;  
    --skill-color: white;
    --bot-msg-color: #e43f3f;
}

.dark-mode {
    --bg-color: #000000;
    --second-bg-color: #262626;
    --text-color: #ffffff;
    --main-color: #94b2bd;
    --skill-color: black;
    --bot-msg-color: black;
}


html {
    font-size: 62.5%;
    overflow-x: hidden;
    width: 100vw;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 2rem 9%;
    background: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
    margin-right: auto;
}

.floating-bulb {
    position: absolute;
    top: 100px;
    right: 20px;
    width: 80px;
    height: 80px;
    /* z-index: 999; */
    z-index: 10;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
    user-select: none; /* prevent image selection while dragging */
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;

}


.bulb-glow {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,0,0.5) 30%, rgba(255,255,0,0) 70%);
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(20px);
  z-index: 0;
}

.bulb-img {
  width: 80%;
  position: relative;
  z-index: 1;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.groq-message {
  position: absolute;
  text-align: center;
  top:100px;
  right:100px;
  max-width: 260px;
  background-color: #222;
  color: #ffd700;
  font-size: 1.2rem;
  padding: 10px 14px;
  border-radius: 10px;
  opacity: 0;
  transform: translateX(20px); /* Slide from right */
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 999;
  line-height: 1.5;
  pointer-events: none; /* Prevent accidental clicks */
}
.groq-message.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
/* =============== CHATBOT WIDGET STYLES =============== */

/* Chatbot Toggle Button */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--main-color);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.chatbot-toggle svg {
    width: 28px;
    height: 28px;
    fill: white;
    transition: transform 0.3s ease;
}

.chatbot-toggle.active svg {
    transform: rotate(180deg);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(102, 126, 234, 0.8); }
    100% { box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4); }
}

/* Chatbot Container */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 500px;
    background: var(--main-bg-color);
    /* border: 2px solid var(--main-color); */
    border-radius: 20px;
    box-shadow: 0 10px 20px var(--text-color);
    z-index: 999;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-container.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Chatbot Header */
.chatbot-header {
    background: var(--main-color);
    color: rgb(255, 255, 255);
    padding: 20px;
    text-align: center;
    position: relative;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.chatbot-header p {
    margin: 5px 0 0 0;
    font-size: 12px;
    opacity: 0.9;
}

.chatbot-status {
    position: absolute;
    top: 15px;
    left: 20px;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Chat Messages Area */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* background: red; */
    background: rgb(243, 243, 243);
    /* background: transparent; */
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

/* Message Styles */
.message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    word-wrap: break-word;
    animation: messageSlide 0.3s ease-out;
    line-height: 1.4;
    font-size: 14px;
}

.user-message {
    background: var(--main-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.bot-message {
    background: var(--second-bg-color);
    color: var(--text-color);
    align-self: flex-start;
    border: 1px solid var(--main-color);
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.bot-message::before {
    /* content: "🤖 "; */
    font-weight: 600;
    color: #667eea;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing Indicator */
.typing-indicator {
    align-self: flex-start;
    padding: 12px 16px;
    background: white;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots::before {
    content: "🤖";
    font-size: 12px;
    color: #666;
    margin-right: 8px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #667eea;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Input Area */
.chatbot-input-area {
    padding: 15px 20px;
    /* background: var(--main-bg-color); */
    background: rgb(243, 243, 243);
    border-top: 1px solid #e0e0e0;
}

.chatbot-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    /* background: var(--main-bg-color); */
    background: rgba(255, 255, 255, 0.296);
    color: black;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    max-height: 80px;
    min-height: 20px;
    transition: border-color 0.3s ease;
    overflow: hidden;
}

.chatbot-input:focus {
    border-color: #667eea;
}

.chatbot-send-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.chatbot-send-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.chatbot-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.chatbot-send-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Welcome Message */
/* .welcome-message {
    text-align: center;
    color: #d1d1d1;
    font-style: italic;
    font-size: 13px;
    margin: 10px 0;
    padding: 15px;
    background: var(--bot-msg-color);
    border-radius: 12px;
    border: 1px dashed #d0d0d0;
} */

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-action-btn {
    background: rgb(255, 255, 255);
    border: 1px solid var(--main-color);
    color: black;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: #fcfdff;
    color: rgb(135, 135, 135);
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .chatbot-container {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        right: 10px;
        bottom: 80px;
        border-radius: 15px;
    }
    
    .chatbot-toggle {
        right: 20px;
        bottom: 20px;
    }
} */


/* Minimize button styles */
.chatbot-minimize {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: none; /* Hidden on desktop by default */
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.chatbot-minimize:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.chatbot-minimize svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Header adjustments for minimize button */
.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.chatbot-header-content {
    flex: 1;
}

.chatbot-header h3 {
    margin: 0;
}

.chatbot-header p {
    margin: 5px 0 0 0;
    font-size: 0.9em;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .chatbot-container {
        width: 100vw !important;
        height: 100vh !important;
        right: 0 !important;
        bottom: 0 !important;
        border-radius: 0 !important;
        position: fixed !important;
        z-index: 10000 !important;
    }
   
    .chatbot-toggle {
        right: 20px;
        bottom: 20px;
        z-index: 9999;
    }

    /* Show minimize button on mobile */
    .chatbot-minimize {
        display: flex !important;
    }

    /* Adjust header layout for mobile */
    .chatbot-header {
        padding: 20px 15px 15px 20px;
    }

    /* Ensure messages area takes full height on mobile */
    .chatbot-messages {
        flex: 1;
        max-height: calc(100vh - 140px);
    }

    /* Adjust input area for mobile */
    .chatbot-input-area {
        padding: 15px 20px 20px 20px;
    }

    /* Hide chatbot toggle when chatbot is open on mobile */
    .chatbot-container.active ~ .chatbot-toggle {
        display: none;
    }
}


/* Error State */
.error-message {
    background: #ffe6e6;
    color: #d32f2f;
    border-left: 4px solid #d32f2f;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    margin: 10px 0;
}
/* =======================================================Navbar========================================================= */
.navbar a {
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 3.5rem;
    transition: .3s;
    padding: 10px 15px 0px 0px ;
}

.navbar a:hover, .navbar a.active {
    color: var(--main-color);
}

#theme-toggle {
    font-size: 30px; 
    background-color: var(--bg-color);
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
  }
  
  #theme-toggle:hover {
    transform: rotate(360deg);
  }
  @media screen and (max-width: 768px) {
    #theme-toggle {
        font-size: 20px; 
        padding: 4px 10px 10px;
    }
}
#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    cursor: pointer;
    display: none;
}

section {
    min-height: 100vh;
    max-height: auto;
    padding: 10rem 9% 2rem;
}

.home {
    display: flex;
    align-items: center;
    padding: 0 9%;
    justify-content: space-between;
}

.my-img { 
    display: flex;
    justify-content: center;
    width: 40rem;
}

.my-img img {
    /* margin: 0 auto; */
    width: 30rem;
    }

.home-content {
    max-width: 60rem;
    text-align: justify;
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
}
.home-content h1 span {
    font-family: "Barrio", system-ui;
    font-size: 80px;
}
.home-content .text-animate {
    
    font-size: 3.2rem;
}

.home-content .text-animate span {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--main-color);
    /* -webkit-text-stroke: .7px var(--main-color); */
}

.home-content p {
    font-size: 1.6rem;
    margin: 2rem 0 4rem;
}

.btn-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 34.5rem;
    height: 5rem;
}

.btn-box .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 15rem;
    height: 100%;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: .8rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .1rem;
    color: var(--bg-color);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box .btn:hover {
    color: var(--main-color);
} 

.btn-box .btn:nth-child(2) {
    background: transparent;
    color: var(--main-color);
}

.btn-box .btn:nth-child(2):hover {
    color: var(--bg-color);
}

.btn-box .btn:nth-child(2)::before {
    background: var(--main-color);
}

.btn-box .btn::before {
    content: '';;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-color);
    z-index: -1;
    transition: .5s;
}

.btn-box .btn:hover::before {
    width: 100%;
}

.home-sci {
    position: relative;
    bottom: 10rem;
    width: 35rem;
    display:flex;
    justify-content: space-between;
    gap: 1rem;
    /* marginfa-left: 58%; */
    
}

.home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 20px;
    color: var(--main-color);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.home-sci a:hover {
    color: var(--bg-color);
}

.home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
    transition: .5s;
}

.home-sci a:hover::before {
    width: 100%;
}

.askme {
    background: var(--second-bg-color);
    padding-top: 10px;
}

.askme  p {
    font-size: 2.1rem;
    text-align: center;
    max-width: 700px;
    margin: 1rem auto;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 2rem;
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}


.card {
    /* background: rgb(255, 255, 255); */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: solid 1px var(--main-color);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease both;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px var(--main-color);
}

.icon-wrapper {
    background: var(--main-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;  
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 24px;                                  
}

.askme .card p{
    color: var(--text-color);
    font-size: medium;
}
.card h3 {
    margin: 0;
    margin-bottom: 0;
    font-size: 1.25rem;
    color:var(--main-color);
    text-align: center;
    font-weight: 700;
    font-size: large;
}
@media screen and (max-width: 768px) {
  .card-container {
    grid-template-columns: 1fr; /* stack vertically */
    padding: 1rem;
  }

  .askme p {
    font-size: 2.1rem;
    color: #565656;
    padding: 0 1rem;
  }

  .card {
    padding: 1.5rem;
    margin: 0 auto;
  }

  .card h3 {
    font-size: 2.1rem;
  }

  .askme .card p {
    font-size: 1.95rem;
    text-align: center;
  }
}

.para1 {
    background-color: yellow;
    color: rgb(0, 0, 0)
}
.para2 {
    background-color: rgb(72, 255, 0);
    color: rgb(0, 0, 0)

}
.para3 {
    background-color: rgb(250, 0, 0);
    color: rgb(255, 255, 255)

}
.para4 {
    background-color: rgb(17, 0, 255);
    color: rgb(255, 255, 255)   

}
.para5 {    
    background-color: rgb(255, 128, 0);
    color: rgb(0, 0, 0)

}
.para6 {
    background-color: rgb(21, 105, 0);
    color: rgb(255, 255, 255)

}
.para7 {
    background-color: rgb(255, 0, 132);
    color: rgb(255, 255, 255)

}
.para8 {
    background-color: rgb(83, 0, 147);
    color: rgb(255, 255, 255)

}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    background: var(--bg-color);
    padding-bottom: 6rem;
    flex-wrap: wrap;
}
.about-para{
    text-align: justify;
}
.line {
    height: 3px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(9, 84, 132), rgba(0, 0, 0, 0));
  }
  
.about-details {
    width: 60%;
}
.about-details h3 {
    margin-top: 5%;
}

.heading {
    font-size: 5rem;
    text-align: center;
}

span {
    color: var(--main-color);
    font-family: "Marhey", sans-serif;
}

.about-img {
    position: relative;
    width: 30rem;
    height: 30rem;
    border-radius: 50;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 50%;
    border: .2rem solid var(--main-color);
}

.about-img .circle-spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border-top: .2rem solid var(--second-bg-color);
    border-bottom: .2rem solid var(--second-bg-color);
    border-left: .2rem solid var(--main-color);
    border-right: .2rem solid var(--main-color);
    animation: aboutSpinner 8s linear infinite;
}

.about-content {
    text-align: center;
}

.about-content h3 {
    font-size: 2.6rem;
}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

.btn-box.btns {
    display: inline-block;
    width: 15rem;
    border-radius: .8rem;
}

.btn-box.btns a::before {
    background: var(--second-bg-color);
}

.education {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    min-height: auto;
    padding-bottom: 20rem;
    background-color: var(--second-bg-color);
    
}

.education .education-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.education-row .education-column {
    flex: 1 1 40rem;
}

.education-column .title {
    font-size: 2.5rem;
    margin: 0 0 1.5rem 2rem;
}

.education-column .education-box {
    border-left: .2rem solid var(--main-color);
}

.education-box .education-content {
    position: relative;   
    padding-left: 2rem;
}

.education-box .education-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1.1rem;
    width: 2rem;
    height: 2rem;
    background: var(--main-color);
    border-radius: 50%;
}

.education-content .content {
    position: relative;
    padding: 1.5rem;
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    margin-bottom: 2rem;
}

.education-content .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    z-index: -1;
    transition: .5s;
}

.education-content .content:hover::before {
    width: 100%;
}

.education-content .content .year {
    font-size: 1.5rem;
    color: var(--main-color);
    padding-bottom: .5rem;
}

.education-content .content .year i {
    padding-right: .5rem;
}

.education-content .content h3 {
    font-size: 2rem;
}

.education-content .content p {
    font-size: 1.6rem;
    padding-top: .5rem;
}
.education-img{

    height: 50rem; 
    display: flex;
    padding-bottom: 50px;

}
.skills {
    background: var(--main-bg-color);
    padding-top: 20px;
    padding-bottom: 100px;
}
.img-icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.img-icon img {
    width: 60px;  /* Set uniform width */
    height: 60px; /* Set uniform height */
    object-fit: contain; /* Ensures images scale properly */
}

.img-icon li {
    margin: 20px;
    display: inline-flex;
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.img-icon li.visible {
    opacity: 1;
    transform: translateY(0);
}
.img-icon li:hover {
    transform: scale(1.2); /* Scale up slightly on hover */
}
.skill-border {
    border: 2px solid white;
    border-radius: 20px;
    padding: 20px;
    background-color: var(--skill-color);
    box-shadow: 0 0 12px 4px var(--main-color); 
}

@media screen and (max-width: 768px) {
    .img-icon {
        margin: 0 auto;
        flex-wrap: wrap;
    }
    .img-icon li {
        height: 40px;
        width: 40px;
        margin: 18px;
    }
    .img-icon li img {
        width: 100%;
        height: auto;
    }
    .skill-border {
        padding: 10px;
        border-radius: 40px;
    }
}

.projects {
    background: var(--second-bg-color);
}
.projects p{
    text-align: center;
    padding: 10%;
    border: solid var(--main-color);
    border-radius: 20px;
    font-weight: lighter;
    font-size: 25px;
    font-family: "Marhey", sans-serif;
}

.contact {
    /* min-height: 80vh; */
    padding-bottom: 7rem;
    background-color: var(--main-bg-color);
}

.contact form {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}

.contact form .input-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box .input-field {
    position: relative;
    width: 49%;
    margin: .8rem 0;
}

.contact form .input-box .input-field input,
.contact form .textarea-field textarea {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: transparent;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
} 

.contact form .input-box .input-field input::placeholder,
.contact form .textarea-field textarea::placeholder {
    color: var(--text-color);
}   

.contact form .focus {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    border-radius: .6rem;
    z-index: -1;
    transition: .5s;
}

.contact form .input-box .input-field input:focus~.focus,
.contact form .input-box .input-field input:valid~.focus,
.contact form .textarea-field textarea input:focus~.focus,
.contact form .textarea-field textarea input:valid~.focus {
    width: 100%;
}


.contact form .textarea-field {
    position: relative;
    margin: .8rem 0 2.7rem;
    display: flex;
}

.contact form .textarea-field textarea {
    resize: none;
}

.contact form .btn-box.btns .btn {
    cursor: pointer;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
}

.footer-text p {
    font-size: 1.6rem;
}

.footer-iconTop a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
}

.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--bg-color);
}

@media (max-width: 1200px) {
    html {
        font-size: 55%;
        overflow-x: hidden;
    }
}

@media (max-width: 991px) {
    html {
        overflow-x: hidden;
    }

    .header {
        padding: 2rem 4%;
    }

    section {
        padding: 10rem 4% 2rem;
    }

    .home {
        padding: 0 4%;
    }

    .footer {
        padding: 2rem 4%;
    }
}

@media (max-width: 884px) {
    html {
        overflow-x: hidden;
    }
    
    .portfolio-layer h4 {
        font-size: 2rem;
    }

    .portfolio-layer p {
        font-size: 1rem;
    }

    .portfolio-layer a {
        width: 3rem;
        height: 3rem;
    }
}

@media (max-width: 720px) {
    html {
        width: 100vw;
        overflow-x: hidden;
    } 

    .header {
        background: var(--bg-color);
        width: 100vw;
    }

    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        padding: 1rem 4%;
        background: var(--bg-color);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        transition: .30s ease;
        transition-delay: .30s;
    }

    .navbar.active {
        left: 0;
        transition-delay: .30s;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    .home {
        padding-top: 10rem;
        flex-direction: column;
        justify-content: space-evenly;        
    }

    .home-content h1{
        text-align: center;
        overflow: hidden;

    }
    .home-content p {
        text-align: justify;
        overflow: hidden;

    }

    .home-content .text-animate {
        margin: 0 auto;
        text-align: center;
    }

    .home .home-info {
        order: 2;
        height: auto;
        
    }

    .home-sci {
        width: 35rem;
        position: static;
        margin: 5rem auto;
    }
 
    .home .home-info .home-content .btn-box {
        margin: 0 auto;
    }

    .about {
        flex-direction: column;
        justify-content: space-evenly;
        overflow-x: hidden;
    }

    .about .about-details {
        width: 90%;
        max-width: 100%;
    }

 
    .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-layer h4 {
        font-size: 2.25rem;
    }

    .portfolio-layer p {
        font-size: 1.5rem;
    }

    .portfolio-layer a {
        width: 5rem;
        height: 5rem;
    }
} 

@media (max-width: 654px) {
    html {
        font-size: 50%;
    }

    .portfolio-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
    }

    .portfolio-layer h4 {
        font-size: 2.5rem;
    }
    
    .portfolio-layer p {
        margin-top: 2rem;
        font-size: 2rem;
    }

    .portfolio-layer a {
        margin-top: 3.5rem;
        width: 6rem;
        height: 6rem;
    }

    .portfolio-layer a i {
        font-size: 3rem;
    }
}

@keyframes aboutSpinner {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
