/* :root {
    --primary-color: #0E1728;
    --secondary-color: #f59e0b;
    --dark-color: #0E1728;
    --light-color: #f8fafc;
    --accent-color: #f59e0b;
    --text-color: #334155;
    --text-light: #64748b;
} */


:root {
    --primary-color: #0E1728;
    --secondary-color: #BAFF39;
    /* --secondary-color: #FCC60C; */
    --dark-color: #0E1728;
    --light-color: #f8fafc;
    --accent-color: #BAFF39;
    /* --accent-color: #FCC60C; */
    --text-color: #0E1728;
    --text-light: #64748b;
}
/* Base Styles */
body {
       /* background-image: url(../assets/dottedpng.png); */

    background-image: url(https://www.transparentpng.com/thumb/lines/bPllUs-lines-transparent-picture.png);

    background-position: center;
    /* opacity: 0; */
    background-size: cover ;
    background-attachment: fixed;
    backface-visibility: hidden;
    background-repeat: no-repeat;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    /* background-color: #f9fafb; */
    cursor: url(../assets/cursor.png) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-top: 0;
}

/* Responsive Section Padding */
section {
    padding: 60px 0;
    position: relative;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

@media (min-width: 992px) {
    section {
        padding: 100px 0;
    }
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.section-title .title-bg {
    font-size: 3rem;
}

@media (min-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    .section-title .title-bg {
        font-size: 4rem;
    }
}

@media (min-width: 992px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
    .section-title .title-bg {
        font-size: 5rem;
    }
}

/* Container */
.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    position: relative;
    z-index: 40 !important;
    overflow: hidden;
}


.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    /* position: relative; */
}
.btn-primary::after{
    content: "" !important;
    background-color: crimson  !important;
    display: inline-block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0px 0px !important;
    top: 0px;
    right: -50%;
    /* border-radius: 40px; */
    transform: perspective(45);
    position: absolute;
    z-index: -10;
    color: black !important;
    opacity: 0.5;
}
.btn-primary:hover::after{
    right: 0px;
    transition: all 0.5s ease-in;
    color: black;
    opacity: 5;
    
}
.btn-primary:hover{
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(59, 130, 246, 0.2);
    transition:all 0.3s ;
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(59, 130, 246, 0.2);
}

/* Responsive Typography */
html {
    font-size: 14px;
}

@media (min-width: 576px) {
    html {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 15.5px;
    }
}

@media (min-width: 992px) {
    html {
        font-size: 16px;
    }
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}


.navbar.scrolled {
    padding: 10px 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 20px 0;
    }
    .navbar-nav {
        margin-top: 15px;
    }
    .nav-item {
        margin-bottom: 10px;
    }
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
}

.hero-buttons .btn {
    margin-bottom: 10px;
}



@media (min-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.7rem;
    }
    .hero-buttons .btn {
        margin-bottom: 0;
        margin-right: 15px;
    }
}

@media (min-width: 992px) {
    .hero-section {
        padding-top: 150px;
        padding-bottom: 100px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-image .profile-img{
        max-width: 330px;
        height: 330px;
        
    }
}

/* About Section */
.info-box {
    position: relative;
    margin-top: 30px;
    width: 100%;
    right: 0;
}

@media (min-width: 768px) {
    .info-box {
        position: absolute;
        width: 80%;
        right: -30px;
        bottom: -50px;
    }
}

/* Skills Section */
.skills-radar {
    margin-top: 40px;
}

@media (min-width: 992px) {
    .skills-radar {
        margin-top: 0;
    }
}

/* Projects Section */
.project-card {
    margin-bottom: 30px;
}

/* Contact Section */
.contact-info {
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .contact-info {
        margin-bottom: 0;
    }
}

/* Footer */
.footer {
    padding: 40px 0 20px;
}

.footer-links a {
    display: inline-block;
    margin: 0 10px 10px;
}

/* Utility Classes */
.mt-xs-3 {
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .mt-xs-3 {
        margin-top: 0;
    }
}

/* Responsive Grid Adjustments */
@media (max-width: 767.98px) {
    .row-cols-md-1 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Animation Adjustments for Mobile */
@media (max-width: 767.98px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Mobile Menu Toggle */
.navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Back to Top Button */
.back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}



/* click effect animation */
  .circlee{
            position: absolute !important;
            transform:translate(-50%   , -50%) !important;
            /* background-color:red !important; */
            /* background-image:url('./hero.jpeg'); */
            background-position:center;
            background-repeat:no-repeat;
            background-size:cover;
            z-index: 199999999000;
            opacity:5;
            transition: all 0.5s linear;
            width: 20px;
            height:20px;
            border-radius:50%;
            border:3px solid rgb(0, 0, 0);
            box-shadow:0 0 20px #baff39;
            pointer-events:none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .circlee::after{
            position: absolute;
            content: '';
            width: 10px;
            height: 10px;
            background-color: black !important;
            border-radius: 50%;
            /* transform: translate(-50% ,-50%); */

        }
.circle_size{
    animation: sizemove 0.5s ease-in-out infinite;
    transition:1s ease-in-out;
}
@keyframes sizemove {
    0%{
        width: 20px;
        height: 20px;
        opacity:1;
        border:3px solid aqua;

    }
    50%{
        width: 45px;
        height: 45px;
        border:8px solid crimson;

    }
    100%{
        width: 270px;
        height: 270px;
        opacity:0.1;
        border:15px solid navy;


    }
}


