/*
 *= require_self
 *= require_tree .
 */
/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section{
    padding: 100px 0;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.about, .projects, .skills, .Education, .contact, footer{
    font-family: 'Poppins', sans-serif;
}
.about .about-content,
.projects .proj-content,
.skills .skills-content,
.Education .Education-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #fff;
    transform: translateX(-50%);
}
section .title::after{
 /* content: " "; */
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #4A90E2;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
  /*  z-index: 1;  Ensure the background color is visible */
}

/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 15px 0;
    background: #4A90E2;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.navbar .logo a span{
    color: #4A90E2;
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: #fff;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: #4A90E2;
}
.navbar.sticky .menu li a:hover{
    color: #fff;
}

/* menu btn styling */
.menu-btn {
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: block; /* Ensure it's visible by default */
    z-index: 999;
}
/* scroll-up button */
.scroll-up-btn {
    position: fixed;
    height: 45px;
    width: 42px;
    background: #4A90E2;
    right: 30px; /* Position on the right side */
    bottom: 30px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show {
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover {
    filter: brightness(90%);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 27px; /* Increased spacing to ensure it doesn't overlap with the footer */
    right: 80px; /* Adjusted for a more consistent appearance */
    z-index: 100; /* Ensure it stays above other content */
    display: none; /* Hide by default */
}

.whatsapp-btn.show {
    display: flex; /* Show when the 'show' class is added */
}

.whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 25px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.whatsapp-btn a:hover {
    background-color: #128c7e;
}




.thank-you-message {
    margin-top: 20px;
    padding: 10px;
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
    border-radius: 4px;
    text-align: center;
}

.hire-me {
    text-align: center;
    margin-top: 30px;
}

.hire-me h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hire-me p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.hire-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hire-btn:hover {
    background-color: #0056b3;
}


/* .dark-mode {
    background-color: #121212;
    color: #ffffff;
} */












/* home section styling */
.home{
    display: flex;
    background: url('Background_img_Home.jpg');
	background-position: bottom;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
}
.home .max-width{
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: left;
}
.home .max-width .row{
  margin-right: 0;
}
.home .home-content .text-1{
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cfd7e1;
    font-size: 35px;
}
.home .home-content .text-2{
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
}
.home .home-content .text-3{
    font-size: 40px;
    margin: 5px 0;
}
.home .home-content .text-3 span{
    color: #4A90E2;
    font-weight: 500;
}
.home .home-content a{
    display: inline-block;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid #4A90E2;
    transition: all 0.3s ease;
    background: none;
}
.home .home-content a:hover{
    background: #4A90E2;
}

/* about section styling */
.about h2{
	font-weight: 700;
}
.about .title::after{
    content: "WHO  I  AM";
	font-weight: 600;
}
.about .about-content .left{
    width: 30%;
}
.about .about-content .left img{
    height: 340px;
    width: 340px;
    object-fit: scale-down;
    border-radius: 10px;
}
.about .about-content .right{
    width: 65%;
}
.about .about-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about .about-content .right .text span{
    color: #4A90E2;
}
.about .about-content .right p{
    text-align: justify;
}
.about .about-content .right a{
    display: inline-block;
    background: #4A90E2;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #4A90E2;
    transition: all 0.3s ease;
}
.about .about-content .right a:hover{
    color: #4A90E2;
    background: none;
}


/* Experience section styling */
.Experience {
    padding: 50px 0;
    background-color: #111;
    color: #fff;
}

.Experience h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

/* .Experience .title::after {
    background: #111;
    content: "Where I've Worked";
    font-weight: 600;
    display: block;
    text-align: center;
    margin: 10px auto;
} */

.Experience .Experience-content {
    display: flex;
    flex-wrap: wrap; /* Ensure cards wrap to next line */
    gap: 20px;
    justify-content: space-between;
}

/* Base styling for Experience title */
/* .Experience .title::after {
    background: #111;
    content: "Where I've Worked";
    font-weight: 600;
    display: block;
    text-align: center;
    margin: 10px auto;
} */

/* Ensure Experience content wraps properly */
.Experience .Experience-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Adjust card width for various screen sizes */
.Experience .card {
    background: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: left;
    transition: all 0.3s ease;
    flex: 1;
    max-width: calc(50% - 20px);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .Experience .card {
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 690px) {
    .Experience .card {
        max-width: 100%;
    }
}

/* Add additional media query for 1080x2400 screen size */
@media (max-width: 1080px) {
    .Experience .title {
        font-size: 30px;
    }
    .Experience .card {
        padding: 20px 30px;
    }
}




.Experience .box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}


.Experience .year {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4A90E2; /* Orange color for year */
}

.Experience .text {
    font-size: 35px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

.Experience .college {
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cfd7e1;
    font-size: 15px;
}

.Experience .grade {
    font-size: 16px;
    color: #ccc;
}

.Experience .box p {
    margin-top: 15px;
    text-align: justify;
}

.Experience .box ul {
    margin-top: 10px;
    padding-left: 20px;
}

.Experience .box ul li {
    margin-bottom: 10px;
}
@media (max-width: 991px) {
    .Experience .card {
        max-width: calc(100% - 20px); /* Full width on smaller screens */
    }
}

@media (max-width: 690px) {
    .Experience .card {
        max-width: 100%; /* Full width on even smaller screens */
    }
}



/* projects section styling */
.projects h2{
	font-weight: 700;
}
.projects, .Education{
    color: #fff;
    background: #111;
}
.projects .title::before,
.Education .title::before{
    background: #fff;
}
.projects .title::after,
.Education .title::after{
    background: #111;
    content: "WHAT I BUILT";
	font-weight: 600;
}
.projects .proj-content .card{
    width: calc(33% - 30px);
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.projects .proj-content .card:hover{
    background: #4A90E2;
}
.projects .proj-content .card .box{
    transition: all 0.3s ease;
}
.projects .proj-content .card:hover .box{
    transform: scale(1.05);
}
.projects .proj-content .card i{
    font-size: 55px;
    color: #4A90E2;
    transition: color 0.3s ease;
}
.projects .proj-content .card:hover i{
    color: #fff;
}
.projects .proj-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}




/* skills section styling */
.skills h2 {
    font-weight: 700;
    text-align: center;
}

/* .skills .underline {
    width: 100%;
    height: 4px;
    margin-bottom: 20px;
    background-image: linear-gradient(to right, rgb(243, 18, 18) 0%, rgb(133, 255, 77) 25%, rgb(255, 173, 173) 50%, rgb(0, 153, 153) 100%);    opacity: 50%;
}

.projects .underline {
    width: 100%;
    height: 4px;
    margin-bottom: 20px;
    background-image: linear-gradient(to right, rgb(243, 18, 18) 0%, rgb(133, 255, 77) 25%, rgb(255, 173, 173) 50%, rgb(0, 153, 153) 100%);    opacity: 50%;
} */



.skills .title::after {
    content: "WHAT I KNOW";
    font-weight: 600;
}

.skills .skills-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.skills .skills-content .column {
    flex: 1;
    margin: 10px;
}

.skills .skills-content .left .text {
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0028FF;
    font-size: 20px;
    margin-bottom: 10px;
}

.skills .skills-content .left p {
    text-align: justify;
}

.skills .skills-content .left a {
    display: inline-block;
    background: #4A90E2;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #4A90E2;
    transition: all 0.3s ease;
    text-decoration: none;
}

.skills .skills-content .left a:hover {
    color: #4A90E2;
    background: none;
}

/* Specific styling for the technical skills table */
.skills-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    margin-bottom: 20px;
}

.skills-table th,
.skills-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.skills-table th {
    background-color: #4A90E2;
    color: white;
    font-weight: 600;
    text-align: center;
}

.skills-table td {
    text-align: left;
}

.skills-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.skills-table tr:hover {
    background-color: #ddd;
}

.skills-table td strong {
    font-weight: 600;
}

/* Styling for personal qualities */
.personal-qualities {
    font-weight: bold;
    margin: 20px 0;
}


/* Education section styling */
.Education {
    padding: 50px 0;
    background-color: #111;
    color: #fff;
}

.Education h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.Education .title::after {
    background: #111;
    content: "Learning Path";
    font-weight: 600;
    display: block;
    text-align: center;
    margin: 10px auto;
}

.Education .Education-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.Education .card {
    background: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: left; /* Change to left */
    transition: all 0.3s ease;
    flex: 1;
}

.Education .card:hover {
    background: #4A90E2;
}

.Education .box {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Change to flex-start */
    transition: all 0.3s ease;
}

.Education .card:hover .box {
    transform: scale(1.05);
}

.Education .year {
    font-size: 20px;
    margin-bottom: 10px;
}

.Education .text {
    font-size: 35px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

.Education .college {
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cfd7e1;
    font-size: 15px;
}

.Education .grade {
    font-size: 16px;
    color: #ccc;
}


/* Additional styling for dots if needed
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #4A90E2!important;
    transition: all 0.3s ease;
}

.owl-dot.active {
    width: 35px;
    border-radius: 14px;
}

.owl-dot.active,
.owl-dot:hover {
    background: #4A90E2!important;
} */



/* Contact section styling */



/* Media queries for small devices */
@media (max-width: 768px) {
    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 20px; /* Add space between columns */
    }

    .contact .right form .name,
    .contact .right form .email,
    .contact .right form .msg {
        margin-bottom: 20px; /* Increase space between form fields */
    }
}










footer {
    background: #111;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
    position: relative;
}

footer span a {
    color: #4A90E2;
    text-decoration: none;
}

footer span a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    width: 32px; /* Default icon size */
    height: 32px; /* Default icon size */
    font-size: 32px; /* FontAwesome icon size */
    color: #fff; /* Icon color */
}

.social-icons a:hover {
    color: #4A90E2; /* Hover color */
}













/* responsive media queries */
@media (max-width: 1104px) {
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
}
.summary-heading {
    color: #dc0000;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
  }
@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
        z-index: 998; /* Lower than .menu-btn to prevent overlap */
    }
    
    .navbar .menu.active {
        left: 0;
    }
    
    .navbar .menu li {
        display: block;
        margin: 20px 0;
    }
    
    .navbar .menu li a {
        display: inline-block;
        font-size: 25px;
    }
    
    .home .home-content .text-2{
        font-size: 70px;
    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .home .home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width{
        max-width: 930px;
    }
    .about .about-content .column{
        width: 100%;
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
    }
    .projects .proj-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .skills .skills-content .column,
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
}
@media (min-width: 948px) {
    .menu-btn {
        display: none; /* Hide on larger screens where the menu is shown inline */
    }
}

@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 32px;
    }
    .home .home-content a{
        font-size: 20px;
    }
    .projects .proj-content .card{
        width: 100%;
    }
}

@media (max-width: 500px) {
    .home .home-content .text-2{
        font-size: 50px;
    }
    .home .home-content .text-3{
        font-size: 27px;
    }
    .about .about-content .right .text,
    .skills .skills-content .left .text{
        font-size: 19px;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
    .whatsapp-btn{
        right: 75px;
        bottom: 15px;
        height: 45px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
}

