/* fonts imported for tonybaskar's portfolio */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body {
    background-color:#fef9e7;
}
html {
    scroll-behavior: smooth;
}

/* logo and name design styles */

/* Global Styles */
:root {
    --primary-color: darkblue;
    --secondary-color: orangered;
    --background-color: darkblue;
    --text-color: #ffffff;
    --nav-height: 70px;
    --transition-speed: 0.3s;
}

/* Navigation Bar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    height: var(--nav-height);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform var(--transition-speed) ease;
}

.logo:hover {
    transform: scale(1.1);
}

.name {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 600;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.nav-links a i {
    font-size: 1.2rem;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all var(--transition-speed) ease;
}

/* Mobile Nav Links */
.nav-links.active {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-speed) ease;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
    }

    .nav-links.active {
        max-height: 600px;
    }

    /* Hamburger Menu Animation */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}




/* tonybaskar's portfolio profile section styles */
#profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
    height: 80vh;
}

/* Profile picture container styling */

.section__pic-container {
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(251, 248, 204, 1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.section__pic-container img {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    border: 10px solid darkblue;
    transition: transform 0.3s ease; 
}

/* tonybaskar's portfolio hover effect while clicking on the profile */

.section__pic-container:hover img {
    transform: scale(1.1); 
}



/* Text container styling */

.section__text {
    flex: 1;
    text-align: left; 
    align-self: center;
}

.section__text p {
    font-weight: 600;
}
.section__text1 {
    text-align: center;
}

.section__text1 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: medium;
    
    color: darkblue;
}

.title {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    text-align: center;
    color:darkblue;
}
.section__text2 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: medium;
    
    color: darkblue;
    text-align: center;
}

/* for social container styling */
 #social-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .social-icon {
            font-size: 2.2rem;
            color: #1a237e;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .social-icon:hover {
            color: #3949ab;
            transform: translateY(-5px);
        }
        


/* tonybaskar's portfolio Resume button design  */

.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.resButton {
    background-color: #FFEB99; 
    color: #333; 
    border: 2px solid #555; 
    padding: 10px 20px; 
    border-radius: 5px; 
    font-size: 16px; 
    font-weight: bold; 
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;  
    transition: box-shadow 0.3s ease; 
}

button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); 
}

button:active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}



/* tonybaskar's portfolio General styling for the About section */
#About {
    padding: 80px 20px;
    background-color: #fbf8cc; 
    color: #1a237e; 
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

#About::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(26, 35, 126, 0.05);
    z-index: 0;
}

#About::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(57, 73, 171, 0.05);
    z-index: 0;
}

.title_about {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a237e;
    position: relative;
    padding-bottom: 15px;
    z-index: 1;
}

.title_about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #3949ab, #1a237e);
    border-radius: 2px;
}

.about_description {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.about_description p {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.1);
    border-left: 5px solid #1a237e;
}

.about_description b {
    color: #3949ab;
    font-weight: 600;
}

.about_details_container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 70px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.details_container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.1);
    transition: all 0.3s ease;
    width: 280px;
    border-top: 5px solid #1a237e;
}

.details_container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(26, 35, 126, 0.2);
}

.details_container .aicon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: invert(16%) sepia(22%) saturate(3763%) hue-rotate(213deg) brightness(91%) contrast(97%);
}

.details_container h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a237e;
}

.details_container p {
    color: #3949ab;
    line-height: 1.6;
}

/* Timeline Cards Styling */
.timeline_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.timeline_card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.1);
    width: 280px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #1a237e;
}

.timeline_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #1a237e, #3949ab);
}

.timeline_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 35, 126, 0.2);
}

.timeline_icon {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.timeline_card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a237e;
    position: relative;
    padding-bottom: 10px;
}

.timeline_card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3949ab;
    border-radius: 2px;
}

.timeline_card p {
    color: #3949ab;
    line-height: 1.6;
}

.timeline_card b {
    color: #1a237e;
    font-weight: 600;
}

.arrow-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.arrow-icon {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    filter: invert(16%) sepia(22%) saturate(3763%) hue-rotate(213deg) brightness(91%) contrast(97%);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.arrow-icon:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .title_about {
        font-size: 2.2rem;
    }
    
    .about_description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .about_details_container {
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .details_container {
        width: 100%;
        max-width: 320px;
    }
    
    .timeline_cards {
        gap: 20px;
    }
    
    .timeline_card {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    #About {
        padding: 60px 15px;
    }
    
    .title_about {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .about_description p {
        padding: 20px;
    }
    
    .details_container {
        padding: 20px;
    }
    
    .timeline_card {
        padding: 20px;
    }
    
    .timeline_icon {
        font-size: 2rem;
    }
}

/* tonybaskar's portfolio Styling for the arrow container */
.arrow-container {
    text-align: right;
    margin-top: 40px;
    display: flex;
    justify-content: flex-end; 
    padding: 20px 0;
}

/* tonybaskar's portfolio Styling for the arrow icon */
.arrow-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/*tonybaskar's portfolio Arrow hover effect */

.arrow-icon:hover {
    transform: translateY(9px);
}

/*tonybaskar's portfolio Fade-in animation for about section elements */

.details_container, .timeline_box {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.details_container.visible, .timeline_box.visible {
    opacity: 1;
    transform: translateY(0);
}



/* tonybaskar's portfolio  skills section styles */
#Skills {
    padding: 80px 20px;
    background-color: #fbf8cc;
    color: #1a237e; 
    font-family: 'Poppins', sans-serif;
}

.title_skills {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a237e;
    position: relative;
    padding-bottom: 15px;
}

.title_skills::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #3949ab, #1a237e);
    border-radius: 2px;
}

.skills_container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid #1a237e;
}

.skill:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 35, 126, 0.2);
}

.skill:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a237e, #3949ab);
}

.skill-icon {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.skill:hover .skill-icon {
    transform: scale(1.2);
    color: #3949ab;
}

.skill h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #1a237e;
    font-weight: 600;
}

.skill-bar-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.skill-bar {
    flex-grow: 1;
    height: 10px;
    background: #e8eaf6;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.skill-level {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #1a237e, #3949ab);
    border-radius: 5px;
    transition: width 1.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.skill-level::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    z-index: 1;
    background-size: 20px 20px;
    animation: move 2s linear infinite;
    overflow: hidden;
}

@keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

.skill-percentage {
    font-weight: 600;
    color: #1a237e;
    min-width: 40px;
    text-align: right;
    transition: all 1.5s ease-in-out;
}

.arrow-container {
    text-align: center;
    margin-top: 60px;
}

.arrow-icon {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    filter: invert(16%) sepia(22%) saturate(3763%) hue-rotate(213deg) brightness(91%) contrast(97%);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.arrow-icon:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .title_skills {
        font-size: 2.2rem;
    }
    
    .skills_container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .skill {
        padding: 20px;
    }
    
    .skill-icon {
        font-size: 2rem;
    }
    
    .skill h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    #Skills {
        padding: 60px 15px;
    }
    
    .title_skills {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .skills_container {
        grid-template-columns: 1fr;
    }

    
    .skill-percentage {
        align-self: flex-end;
    }
}


/*tonybaskar's portfolio Achievements Section styles */

#Achievements {
    font-family: "Poppins", sans-serif;
    background-color: #fbf8cc;
    padding: 50px 20px;
    text-align: center;
}
.title_achievements {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a237e;
    position: relative;
    padding-bottom: 15px;
    z-index: 1;
}

.title_achievements::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #3949ab, #1a237e);
    border-radius: 2px;
}

.achievements_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.achievement {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: left;
    padding: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.achievement-icon {
    width: 100%;
    border-radius: 10px;
}

.achievement-content {
    margin-top: 15px;
}

.achievement-content h3 {
    font-size: 1.5em;
    color: #002B5B;
}

.achievement-content p {
    font-size: 1em;
    color: darkblue;
}

/* tonybaskar's portfolio Animation triggered when the section comes into view */

.achievement.animate-achievement {
    opacity: 1;
    transform: translateY(0);
}

.achievement:hover {
    transform: translateY(-10px);
}

/* tonybaskar's portfolio projects section styles */
  #Projects {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .title_projects {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 50px;
            color: #1a237e;
            position: relative;
            padding-bottom: 15px;
        }
        
        .title_projects::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #1a237e, #3949ab, #1a237e);
            border-radius: 2px;
        }
        
        .projects_container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .project {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(26, 35, 126, 0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .project:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(26, 35, 126, 0.2);
        }
        
        .project-image-container {
            position: relative;
            overflow: hidden;
            height: 200px;
        }
        
        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project:hover .project-image {
            transform: scale(1.05);
        }
        
        .project-info {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .project-info h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #1a237e;
        }
        
        .project-info p {
            color: #3949ab;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .tech-item {
            background: rgba(26, 35, 126, 0.1);
            color: #1a237e;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .tech-item i {
            font-size: 0.9rem;
        }
        
        .project-buttons {
            display: flex;
            gap: 15px;
        }
        
        .view-project-btn, .view-code-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .view-project-btn {
            background: #1a237e;
            color: white;
        }
        
        .view-project-btn:hover {
            background: #283593;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
        }
        
        .view-code-btn {
            background: transparent;
            color: #1a237e;
            border: 2px solid #1a237e;
        }
        
        .view-code-btn:hover {
            background: rgba(26, 35, 126, 0.1);
            transform: translateY(-3px);
        }
        
        .arrow-container {
            text-align: center;
            margin-top: 60px;
        }
        
        .arrow-icon {
            width: 50px;
            height: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: bounce 2s infinite;
            filter: invert(16%) sepia(22%) saturate(3763%) hue-rotate(213deg) brightness(91%) contrast(97%);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }
        
        .arrow-icon:hover {
            transform: scale(1.1);
        }
        
        /* Featured project styling */
        .featured-project {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin-bottom: 40px;
        }
        
        .featured-project .project-image-container {
            height: 100%;
        }
        
        .featured-project .project-info {
            padding: 30px;
        }
        
        .featured-project .project-info h3 {
            font-size: 1.8rem;
        }
        
        .featured-project .tech-stack {
            margin-bottom: 25px;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .featured-project {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .title_projects {
                font-size: 2.2rem;
            }
            
            .projects_container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .project-buttons {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            #Projects {
                padding: 60px 15px;
            }
            
            .title_projects {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .project-info {
                padding: 20px;
            }
            
            .project-info h3 {
                font-size: 1.2rem;
            }
        }




/* tonybaskar's portfolio certificates section old try */


/*#Certificates {
    font-family: "Poppins", sans-serif;
    position: relative;
    padding: 40px;
    background-color: #fbf8cc;
    margin-top: 40px;
    text-align: center;
}
.title_Certificates{
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
    font-size: 2rem;
    color: #002B5B;
}
.certificate-container {
    position: relative;
    display: inline-block;
    margin: 20px;
}

.certificate-image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.certificate-image:hover {
    transform: scale(1.05); */
}




 /* tonybaskar's portfolio new try for certificates section */

 #Certificates {
    padding: 50px;
    background-color: #fbf8cc;
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title_Certificates {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a237e;
    position: relative;
    padding-bottom: 15px;
    z-index: 1;
}

.title_Certificates::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #3949ab, #1a237e);
    border-radius: 2px;
}

.certificate-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%; 
    max-width: 1000px; 
    margin: 0 auto;
}

.certificate-container {
    position: relative;
    width: 100%;
    height: 600px; 
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.certificate-container:hover {
    transform: translateY(-10px); 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.certificate-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.certificate-image:hover {
    transform: scale(1.1); 
}

.certificate-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: 30px; 
    text-align: center;
    font-size: 1.3rem; 
    border-radius: 20px; 
    backdrop-filter: blur(5px); 
}

.certificate-container:hover .certificate-description {
    opacity: 1;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 2.5rem; 
    padding: 15px 25px; 
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; 
    height: 60px; 
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

#prevBtn {
    left: -80px; 
}

#nextBtn {
    right: -80px; 
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .certificate-container {
        height: 400px;
    }

    .nav-btn {
        font-size: 2rem; 
        width: 50px;
        height: 50px;
    }

    #prevBtn {
        left: -40px; 
    }

    #nextBtn {
        right: -40px; 
    }
}
/*tonybaskar's portfolio styles for the contact section */
 #Contact {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            position: relative;
        }
        
        .container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            justify-content: center;
        }
        
        .contact-left, .contact-right {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(26, 35, 126, 0.1);
        }
        
        .sub-title {
            font-size: 2.2rem;
            margin-bottom: 30px;
            color: #1a237e;
            position: relative;
            padding-bottom: 15px;
        }
        
        .sub-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #1a237e, #3949ab);
            border-radius: 2px;
        }
        
        .contact-left p {
            margin-bottom: 25px;
        }
        
        .contact-left a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #3949ab;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .contact-left a:hover {
            color: #1a237e;
            transform: translateX(5px);
        }
        
        .contact-icon {
            font-size: 1.5rem;
            margin-right: 15px;
            color: #1a237e;
            width: 30px;
            text-align: center;
        }
        
        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(26, 35, 126, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #1a237e;
            transform: translateY(-5px);
        }
        
        .social-icons a:hover .contact-icon {
            color: white;
        }
        
        /* Form Styling */
        .contactForm {
            display: flex;
            flex-direction: column;
        }
        
        .input-group {
            position: relative;
            margin-bottom: 30px;
        }
        
        .contactForm label {
            font-weight: 500;
            margin-bottom: 8px;
            color: #1a237e;
            display: block;
        }
        
        .contactForm input, .contactForm textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e8eaf6;
            border-radius: 10px;
            background: #f9f9f9;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .contactForm input:focus, .contactForm textarea:focus {
            border-color: #1a237e;
            background: white;
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.2);
        }
        
        .input-caption {
            position: absolute;
            bottom: -20px;
            left: 0;
            font-size: 0.8rem;
            color: #3949ab;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .contactForm input:focus + .input-caption,
        .contactForm textarea:focus + .input-caption {
            opacity: 1;
        }
        
        .contactForm button {
            background: #1a237e;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .contactForm button:hover {
            background: #283593;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
        }
        
        /* Modal Styling */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            position: relative;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .close-button {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #1a237e;
        }
        
        .modal-content p {
            font-size: 1.2rem;
            color: #1a237e;
            margin-top: 20px;
        }
        
        .arrow-container {
            text-align: center;
            margin-top: 60px;
        }
        
        .arrow-icon {
            width: 50px;
            height: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: bounce 2s infinite;
            filter: invert(16%) sepia(22%) saturate(3763%) hue-rotate(213deg) brightness(91%) contrast(97%);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }
        
        .arrow-icon:hover {
            transform: scale(1.1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            
            .contact-left, .contact-right {
                width: 100%;
            }
            
            .sub-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            #Contact {
                padding: 60px 15px;
            }
            
            .contact-left, .contact-right {
                padding: 25px;
            }
            
            .social-icons a {
                width: 45px;
                height: 45px;
            }
        }


/*tonybaskar's portfolio styles for the testimonials section */
body {
    font-family: 'Poppins', sans-serif;
    background-color: rgba(251, 248, 204, 1);
    color: #333;
    margin: 0;
    padding: 0;
  }

  .testimonials-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            position: relative;
        }
         .sub-title {
            font-size: 2.2rem;
            margin-bottom: 30px;
            color: #1a237e;
            position: relative;
            padding-bottom: 15px;
        }
        
        .sub-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #1a237e, #3949ab);
            border-radius: 2px;
        }
        /* Carousel Styling */
        .carousel {
            position: relative;
            max-width: 900px;
            margin: 0 auto 80px;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(26, 35, 126, 0.15);
        }
        
        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel-item {
            min-width: 100%;
            padding: 40px;
            background: white;
            text-align: center;
            box-sizing: border-box;
        }
        
        .carousel-item img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #1a237e;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(26, 35, 126, 0.2);
        }
        
        .carousel-item h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: #1a237e;
        }
        
        .designation {
            color: #3949ab;
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .feedback {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #333;
            margin-bottom: 25px;
            position: relative;
            padding: 0 20px;
        }
        
        .feedback::before, .feedback::after {
            content: '"';
            font-size: 3rem;
            color: rgba(26, 35, 126, 0.2);
            position: absolute;
            line-height: 1;
        }
        
        .feedback::before {
            top: -15px;
            left: 0;
        }
        
        .feedback::after {
            bottom: -30px;
            right: 0;
        }
        
        .rating {
            color: #FFD700;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .carousel-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none;
        }
        
        .carousel-controls button {
            pointer-events: auto;
            background: #1a237e;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
        }
        
        .carousel-controls button:hover {
            background: #283593;
            transform: scale(1.1);
        }
        
        .carousel-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(26, 35, 126, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: #1a237e;
            transform: scale(1.2);
        }

/* tonybaskar's portfolio styles for the arrowup icon */

.arrowup-container {
    text-align: right; 
    margin: 20px 0; 
}

.arrowup-icon {
    width: 40px; 
    height: 40px;
    cursor: pointer; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

/* Hover effect for tonybaskar's portfolio arrow icon */
.arrowup-icon:hover {
    transform: scale(1.2); 
    box-shadow: 0 4px 8px rgba(87, 30, 220, 0.409); 
}

/* Additional styling tonybaskar's portfolio arrow icon */
.arrowup-icon:active {
    transform: scale(1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}

/* Scroll-to-Top Button Styles */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: darkblue;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: #007BFF;
    opacity: 1;
    transform: scale(1.1);
}

.scroll-to-top.show {
    display: flex; 
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.7;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-to-top.bounce {
    animation: bounce 1s ease;
}

/* tonybaskar's portfolios styles for the footer */
 
        
        .content {
            flex: 1;
            padding: 20px;
        }
        
        .site-footer {
            background: linear-gradient(135deg, #0f172a 0%, #1a237e 100%);
            color: #fef9e7;
            padding: 60px 20px 30px;
            position: relative;
            overflow: hidden;
        }
        
        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #4cc9f0, #4361ee, #e94560);
        }
        
        
        
        .footer-copyright {
            text-align: center;
            margin: 30px 0 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(254, 249, 231, 0.1);
            position: relative;
        }
        
        .footer-copyright p {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .footer-message {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(254, 249, 231, 0.05);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .footer-message::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 6rem;
            opacity: 0.1;
            color: #4cc9f0;
            font-family: serif;
        }
        
        .footer-message p {
            font-size: 1.1rem;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        
        .footer-message b {
            color: #4cc9f0;
            font-weight: 600;
        }
        
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(254, 249, 231, 0.1);
            border-radius: 50%;
            color: #fef9e7;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .footer-social a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #4cc9f0, #4361ee);
            opacity: 0;
            transition: all 0.3s ease;
            border-radius: 50%;
        }
        
        .footer-social a:hover::before {
            opacity: 1;
        }
        
        .footer-social a:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 5px 15px rgba(76, 201, 240, 0.4);
        }
        
        .footer-social i {
            font-size: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
          
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(254, 249, 231, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
            
            .footer-links h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .newsletter-form {
                flex-direction: column;
                gap: 10px;
            }
            
            .newsletter-form input,
            .newsletter-form button {
                border-radius: 30px;
            }
            
            .back-to-top {
                right: 50%;
                transform: translateX(50%);
            }
        }
        
        @media (max-width: 480px) {
            .site-footer {
                padding: 50px 15px 20px;
            }
            
            .footer-social a {
                width: 45px;
                height: 45px;
            }
            
            .footer-social i {
                font-size: 1.3rem;
            }
            
            .footer-message p {
                font-size: 1rem;
            }
        }


/* end of tonyBaskar's portfolio styles */