/* Global Styles */
html {
    overflow-x: hidden;
    scroll-behavior: smooth; 
}

:root {
    --primary-color: #e74c3c;
    --secondary-color: #333333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #6c757d;
    --sections-bg:#F7F7F7
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative; 
}

a {
    text-decoration: none;
}

/* Header Styles */
header {

    background: rgba(255, 255, 255, 0.15);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(6.3px);
-webkit-backdrop-filter: blur(6.3px);
}


.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color) !important;
    padding: 0;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons .fab{
    color: var(--light-color);
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--dark-color);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    margin-left: 5px;
    background-color: var(--primary-color);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(300deg,var(--primary-color) 45%, rgb(247, 247, 247) 45%);
    height: 800px;
    display: flex;
    align-content: center;
    align-items: flex-end;
}

.container-xl {
    max-width: 1320px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.hero-content-wrapper {
    padding: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    max-width: 600px;
    position: relative;
    padding-right: 30px;
}

.btn-pin {
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    padding: 5px 15px;
}

.btn-pin:hover {
    background-color: #c0392b;
    color: white;
}

.looking-text {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-hire {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-hire:hover {
    background-color: #c0392b;
    color: white;
}

.btn-download {
    border: 1px solid #ddd;
    color: var(--text-color);
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-download:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    height: 700px;
    object-fit: cover;
    object-position: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--light-color);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 3px;
    height: 8px;
    background-color: var(--light-color);
    border-radius: 3px;
    position: absolute;
    top: 5px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

/* Responsive Styles */
@media (max-width: 1399.98px) {
    .hero-content {
        max-width: 450px;
    }
}

@media (max-width: 1199.98px) {
    .hero-content {
        max-width: 400px;
    }
}

@media (max-width: 991.98px) {
    .hero-content-wrapper, .hero-image-wrapper {
        height: auto;
        min-height: 50vh;
    }
    
    .hero-section {
        height: auto;
    }
    
    .hero-content {
        padding: 100px 15px;
        margin: 0 auto;
        text-align: center;
        max-width: 100%;
    }
    
    .social-icons {
        margin-top: 15px;
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-image-wrapper {
        clip-path: none;
        margin-right: 0;
    }
    
    .hero-image img {
        position: relative;
        height: auto;
        max-height: 70vh;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .container-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-image {
    position: relative;
    background-color: #f8f9fa;
    border: 20px solid #eee;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding: 0 20px 0 40px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.profession p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 20px;
    font-weight: 500;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.about-description p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.btn-view-portfolio {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-view-portfolio:hover {
    background-color: #c0392b;
    color: white;
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 70px 0;
    }
    
    .about-image {
        margin-bottom: 40px;
    }
}

/* Hobbies & Interests Section */
.hobbies-section {
    padding: 100px 0;
    background-color: var(--sections-bg);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 25px;
}

.left-line, .right-line {
    height: 1px;
    width: 40px;
    background-color: var(--primary-color);
}

.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin: 0 10px;
    position: relative;
}

.circle::before, .circle::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.circle::before {
    left: -20px;
    top: 2px;
}

.circle::after {
    right: -20px;
    top: 2px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #6c757d;
    line-height: 1.7;
}

.hobbies-items {
    margin-top: 40px;
}

.hobby-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.hobby-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hobby-item i {
    font-size: 1.5rem;
    color: #6c757d;
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.hobby-item span {
    font-weight: 500;
    color: #333;
}

/* Counter Section */
.counter-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/img3.jpg');
    background-size: cover;
    background-position: center top;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.counter-item {
    padding: 20px 15px;
}

.counter-icon {
    margin-bottom: 15px;
}

.counter-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.counter-text {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--sections-bg);
}

.services-items {
    margin-top: 50px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.0);
    height: 100%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7675 100%);
    opacity: 0;
    z-index: -1;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.0);
    border-radius: 5px;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.service-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-item:hover .service-icon i,
.service-item:hover .service-title,
.service-item:hover .service-description {
    color: white;
}

.service-item:hover .service-icon {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.service-icon {
    margin-bottom: 20px;
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(231, 76, 60, 0.1);
    transform: scale(0);
    transition: all 0.5s ease;
}

.service-item:hover .service-icon::before {
    transform: scale(1);
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.5s ease;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.5s ease;
    transform: translateX(-50%);
}

.service-item:hover .service-title::after {
    width: 50px;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
    transition: all 0.5s ease;
    transform: translateY(0);
}

.service-item:hover .service-description {
    transform: translateY(5px);
}

/* 3D Tilt Effect */
.services-items {
    perspective: 1000px;
}

.service-item {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Work Participation Section */
.work-section {
    padding: 100px 0;
    background-color: var(--sections-bg);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 5px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #e6e6e6;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    margin: 120px 0;
    min-height: 150px;
    clear: both;
}

.timeline-date-wrapper {
    position: absolute;
    width: 150px;
    text-align: center;
}

.timeline-item:nth-child(odd) .timeline-date-wrapper {
    left: 33%;
    top: 60%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-date-wrapper {
    right: 33%;
    top: 60%;
    transform: translateY(-50%);
}

.timeline-date {
    background-color: #f8f9fa;
    border: 1px solid #e6e6e6;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 500;
    color: #333;
    display: inline-block;
}

.timeline-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: none;
    z-index: 1;
    left: 49%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.timeline-marker::before {
    content: '\f005'; 
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.7rem;
}

.timeline-content {
    position: absolute;
    width: 40%;
    padding: 25px;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.right-content {
    text-align: left;
    right: 65px;
}

.left-content {
    text-align: right;
    left: 65px;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.timeline-company {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.timeline-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Timeline Styles */
@media (max-width: 991.98px) {
    .timeline::after {
        left: 30px; 
        margin-left: 0;
    }

    .timeline-item {
        margin: 50px 0; 
    }

    .timeline-date-wrapper,
    .timeline-item:nth-child(odd) .timeline-date-wrapper,
    .timeline-item:nth-child(even) .timeline-date-wrapper {
        position: relative; 
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        width: auto; 
        text-align: left;
        margin-left: 60px; 
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .timeline-marker {
        left: 16px; 
        top: 0; 
        transform: translateX(-50%); 
    }
    
    .timeline-content,
    .left-content,
    .right-content {
        position: relative; 
        width: auto; 
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        margin-left: 60px; 
        padding: 20px;
        text-align: left !important; 
    }

    .timeline-item:nth-child(even) .timeline-content {
        float: none; 
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        float: none; 
    }

    .timeline-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .timeline::after {
        left: 16px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-date-wrapper {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
        padding-left: 12px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .timeline-content {
        margin-left: 70px;
    }
    
    .left-content {
        text-align: left;
    }
}

/* Work Expertise Section */
.expertise-section {
    padding: 100px 0;
    background-color: white;
}

.expertise-image img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.expertise-content {
    padding-left: 30px;
}

.expertise-content .section-header {
    text-align: left;
}

.expertise-content .divider {
    margin: 15px 0;
    justify-content: flex-start;
}

.expertise-content .section-description {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    color: #777;
}

/* Skills Tabs Styling */
.skills-tabs-container {
    margin-top: 30px;
}

.skills-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: none;
}

.skills-tabs .nav-link {
    text-align: center;
    padding: 15px 10px;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    background-color: #fff;
}

.skills-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color);
}

.skills-tabs .nav-link:hover:not(.active) {
    background-color: #f8f8f8;
}

.skills-content {
    padding-left: 20px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name {
    font-weight: 500;
    color: #333;
}

.skill-percentage {
    font-weight: 500;
    color: #333;
}

.progress {
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
}

.progress-bar {
    background-color: var(--primary-color);
    border-radius: 4px;
    box-shadow: none;
    animation: progressAnimation 1.5s ease-in-out;
}

@keyframes progressAnimation {
    0% {
        width: 0;
    }
}

/* Responsive styles for expertise section */
@media (max-width: 991.98px) {
    .expertise-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .skills-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .skills-tabs .nav-link {
        flex: 1;
        min-width: 120px;
    }
    
    .skills-content {
        padding-left: 0;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: #fff;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
}

.filter-btn {
    padding: 8px 20px;
    background-color: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.filter-btn:hover:not(.active) {
    background-color: #f8f8f8;
}

.portfolio-grid {
    margin-top: 20px;
}

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-overlay:hover {
    opacity: 1;
}

.portfolio-zoom, .portfolio-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-overlay:hover .portfolio-zoom,
.portfolio-overlay:hover .portfolio-link {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-zoom:hover, .portfolio-link:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.portfolio-content {
    padding: 20px;
    text-align: center;
}

.portfolio-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.portfolio-category {
    font-size: 14px;
    color: #777;
}

/* Responsive styles for portfolio */
@media (max-width: 991.98px) {
    .portfolio-filter {
        margin: 30px 0;
    }
}

@media (max-width: 767.98px) {
    .portfolio-filter {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 14px;
    }
}

/* Portfolio Modal */
.portfolio-modal-image {
    max-height: 80vh;
    object-fit: contain;
}

.modal-content {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 20px;
}

.modal-body {
    padding: 20px;
}

.modal-title {
    font-weight: 600;
    color: #333;
}

.btn-close:focus {
    box-shadow: none;
    outline: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--sections-bg);
}

.testimonials-slider-container {
    margin-top: 50px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%; 
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #ff5959;
    margin-bottom: 15px;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto; 
    padding-top: 20px; 
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.author-company {
    font-size: 14px;
    color: #777;
    margin: 0;
}


/* Responsive styles for testimonials */
@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-title {
        font-size: 16px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
}

/* Animation Classes */
.fade-up {
    animation: fadeUp 1s ease forwards;
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 1s ease forwards;
}

.testimonials-section .splide__list{
    margin-bottom: 3rem !important;
    padding: 0 0.1rem !important;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-info-row {
    margin-top: 50px;
    margin-bottom: 60px;
}

.contact-info-item {
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 89, 89, 0.1);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-text {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #333;
}

.contact-form-row {
    margin-bottom: 50px;
}

.contact-form .form-control {
    height: auto;
    padding: 15px 20px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    font-size: 15px;
    color: #555;
    background-color: #fff;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 89, 89, 0.25);
}

.contact-form textarea.form-control {
    min-height: 180px;
    resize: none;
}

.send-message-btn {
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
}

.send-message-btn:hover {
    background-color: #ff4040;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 89, 89, 0.3);
}

/* Responsive styles for contact section */
@media (max-width: 991.98px) {
    .contact-info-item {
        margin-bottom: 30px;
    }
    
    .contact-form-row {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .contact-form .form-control {
        margin-bottom: 15px;
    }
    
    .send-message-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
   .hobbies-section, .expertise-section, 
   .services-section, .portfolio-section, 
   .work-section, .contact-section, .testimonials-section{
    padding: 50px 0;
   }
}

/* Footer Section */
.footer-section {
    background-color: #343a40; 
    color: #adb5bd; 
    padding-top: 60px;
}

.footer-content {
    padding-bottom: 40px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #ced4da; 
}

.social-icons {
    margin-bottom: 0;
}

.social-icons .list-inline-item a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #495057; 
    border-radius: 50%;
    color: #adb5bd; 
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.social-icons .list-inline-item a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #2c3036; 
    padding: 20px 0;
    border-top: 1px solid #495057; 
}

.copyright-text {
    font-size: 14px;
    color: #adb5bd;
    margin-bottom: 0;
}

.copyright-text .fa-heart {
    color: var(--primary-color); 
}

/* Portfolio Filter Buttons */
.portfolio-filters .btn-filter { 
    background-color: #fff;
    color: var(--secondary-color, #333);
    border: 1px solid #ddd;
    padding: 8px 20px;
    margin: 0 5px 10px 5px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer; 
}

.portfolio-filters .btn-filter:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.portfolio-filters .btn-filter.active {
    background-color: var(--primary-color, #e74c3c);
    color: #fff;
    border-color: var(--primary-color, #e74c3c);
}

/* Portfolio Item Card Styling */
.portfolio-item { 
    margin-bottom: 30px; 
}

.portfolio-card { 
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    overflow: hidden; 
    height: 100%; 
    display: flex;
    flex-direction: column;
    text-align: left; 
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.portfolio-card img {
    width: 100%;
    object-fit: cover;
}

.portfolio-card-body {
    padding: 20px;
    text-align: center; 
    flex-grow: 1; 
}

.portfolio-title { 
    font-size: 1.15rem; 
    font-weight: 600;
    color: var(--secondary-color, #333);
    margin-bottom: 5px; 
}

.portfolio-category { 
    font-size: 0.85rem; 
    color: var(--text-color, #6c757d);
    margin-bottom: 0;
    text-transform: capitalize; 
}

/* Portfolio Modal Specific Styles */
.modal-header {
    border-bottom: 1px solid #dee2e6;
}

.modal-title {
    color: var(--secondary-color, #333);
    font-weight: 600;
}

.modal-body img {
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.modal-body h3 {
    color: var(--primary-color, #e74c3c);
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.modal-body p {
    color: var(--text-color, #6c757d);
    line-height: 1.7;
}

.modal-body p strong {
    color: var(--secondary-color, #333);
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ff7070; 
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.splide__slide {
    padding: 20px 0;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
  }

  .splide__arrow{
  background-color: var(--primary-color) !important;
}

.splide__arrow svg{
  fill: var(--text-color) !important;
}

.splide__pagination{
  bottom: -20px !important;
}

.splide__pagination__page.is-active{
    background-color:var(--primary-color)
}

/* Page Loader Styles */
#page-loader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: linear-gradient(135deg, #e74c3c 0%, #f8f9fa 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  
  #page-loader.loaded {
    opacity: 0;
    pointer-events: none;
  }
  
  .loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .loader-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  
  .loader-spinner {
    width: 60px;
    height: 60px;
    border: 7px solid #fff;
    border-top: 7px solid #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 18px 2px #e74c3c33;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }