/* Custom Properties */
:root {
    --primary-color: #a52a2a;
    --active-color: white;
    --non-active-color: black;
    --bg-color: #f0f0f1;
    --bg-color-2:#a52a2a;
    --bg-color-3: #a52a2a;
    --cursor-color:#00BCD4;
    --switch-color: black;
    --switch-color-2: white;
    --btn-color:black;
    --text-color: #000000;
    --secondary-bg: #f5f5f5;
    --third-color:white;
    --pre-loader:black;
    --fourth-color:#4b0000;
    --filter-color:black;
    --background-color-2: #f0f0f1;
    --card-bg: #ffffff;
    --skill-color: black;
    --border-color: #eaeaea;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-color: #57423f;
    --transition: all 0.3s ease;
}

/* Dark Theme */
[data-theme="dark"] {
    --primary-color: #a52a2a;
    --active-color: white;
    --non-active-color: black;
    --bg-color: #1a1a1a;
    --bg-color-2: #1a1a1a;
    --bg-color-3: #a52a2a;
    --switch-color: white;
    --switch-color-2: black;
    --btn-color:white;
    --text-color: #ffffff;
    --third-color:#ffffff;
    --pre-loader:white;
    --fourth-color:#fffffff;
    --filter-color:white;
    --background-color-2: #2d2d2d;
    --secondary-bg: #2d2d2d;
    --card-bg: #333333;
    --skill-color: white;
    --border-color: #404040;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --hover-color: #d6cfe1;
}

@font-face {
    font-family: my-font;
    src: url(../Font/DisengagedTTF.otf);
  }

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: var(--transition);
    cursor: none;
}

/* Loader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

/* Sample logo */
.logo {
    width: 100%;
    height: 100%;
    background: #a52a2a;
    mask: url("https://i.postimg.cc/3wKhPzRg/2-0-2.png") center/contain no-repeat;
    -webkit-mask: url("https://i.postimg.cc/3wKhPzRg/2-0-2.png") center/contain no-repeat;
}

.loading-text {
    color: var(--pre-loader);
    font-family: my-font;
    font-size: 20px;
    margin-top: 8px;
    letter-spacing: 2px;
    text-align: center;
    text-decoration: none;
}

.loading-text-s{
    color: var(--pre-loader);
    font-family: my-font;
    font-weight: lighter;
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 2px;
    letter-spacing: 2px;
    text-align: center;
    text-decoration: none;
}

.loading-dots {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.dot-pr {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

.dot-pr:nth-child(1) { animation-delay: -0.32s; }
.dot-pr:nth-child(2) { animation-delay: -0.16s; }
.dot-pr:nth-child(3) { animation-delay: -0.12s; }


@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}
/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .logo-container {
        width: 100px;
        height: 100px;
    }
    .loading-text {
        font-size: 14px;
    }
    .loading-text-s {
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    .logo-container {
        width: 80px;
        height: 80px;
    }
    .loading-text {
        font-size: 15px;
        margin-top: 5px;
    }
    .loading-text-s {
        font-size: 10px;
    }
}
/* Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    bottom: 4px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--switch-color-2);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--switch-color);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--switch-color-2);
}

input:checked + .slider:before {
    transform: translateX(26px);
    background-color: var(--switch-color);
}

/*cursor*/

.custom-cursor {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: difference;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--cursor-color);
    transition: transform 350ms ease;
    transform: translate(-50%, -50%) scale(0.3);
    z-index: 1000;
  }
  
  .custom-cursor--link {
    transform: translate(-50%, -50%) scale(1.25);
  }
/*scroll bar*/
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--bg-color);
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--hover-color);
  }

.loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 10%;
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
    z-index: 100;
    transition: var(--transition);
}

.header.sticky {
    padding: 1rem 10%;
    background: var(--primary-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav img{
    width: 50px;
    height: 50px;
    margin-top: -10px;
    margin-bottom: -20px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color:var(--non-active-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a.active {
    color: var(--active-color);
    font-weight: bold;
}

.nav-links a:hover {
    color: var(--hover-color);
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--third-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

/* Hero Section */
/* Main Section */
.intro-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color:var(--bg-color);
    padding: 80px 0px 85px 30px;
    border-radius: 20px;
}

/* Text Section */
.text-content {
    flex: 1;
    padding-right: 20px;
    text-align: justify;
    margin: 80px 10px 0px 70px;
}

.greeting {
    font-size: 1.5rem;
    color: var(--text-color);
}

.h-name {
    font-size: 2.5rem;
    font-family: my-font;
    text-align: left;
    font-weight: 700;
    margin: -10px 0;
    color: var(--text-color);
}

.role {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0px;
}

.h-description {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Hire Buttons */
.h-btn{
    display: inline-block;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 10px;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    animation: fadeIn 2s;
}

.h-btn:hover {
    background-color: var(--btn-color);
    color: var(--bg-color);
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Image Section */
.image-content {
    flex: 1;
    margin:45px 0px -75px 0px ;
}

.image-content img {
    max-width: 55%;
    height: auto;
    border-radius: 50%;
    margin: 85px -60px 120px 135px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.container-hr-contact {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    background-color: var(--background-color);
    margin-top: -30px;
    margin-bottom: 30px;
  }

  /*card section*/
  .features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin:0 auto;
    padding: 95px 20px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.blue-circle {
    background-color: var(--primary-color);
}

.orange-circle {
    background-color: var(--background-color-2);
}

.icon {
    width: 40px;
    height: 40px;
    fill: var(--text-color);
}

.feature-title {
    color: var(--text-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-description {
    color: var(--text-color);
    line-height: 1.5;
}

.blue-card {
    background-color: var(--primary-color);
    color: var(--bg-color-3);
}

.blue-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 15px var(--shadow);
    transition: all 0.3s ease;
}

.blue-card .feature-title {
    color: white;
}

.blue-card .feature-description {
    color: rgba(255, 255, 255, 0.8);
}

/*fade in animation*/
.fade-in-section {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            will-change: opacity, transform;
        }
        .fade-in-section.is-visible {
            opacity: 1;
            transform: none;
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 30px 15px;
        min-width: auto;
    }
    
    .feature-title {
        font-size: 20px;
    }
}

  /* Services Section */
  .services-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.container-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

.services-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.services-center {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.character-container {
    position: relative;
    z-index: 2;
}

.character-img {
    max-width: 100%;
    height: auto;
}

.world-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: auto;
    opacity: 0.2;
    z-index: -1;
}

.services-column {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
}

.contact-title{
    font-size: 2.5rem;
    font-family: my-font;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-description{
    font-size:1rem;
    color: var(--text-color);
    margin-bottom: 25px;
}

/*service section packages*/
.container-packages {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.section-header-pack {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-pack h1 {
    font-size: 2.5rem;
    font-family: my-font;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-header-pack p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--border-color);
    color: var(--text-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.popular-badge {
    position: absolute;
    top: -13px;
    right: -35px;
    background-color: var(--bg-color-3);
    color: white;
    padding: 0.5rem 4rem;
    font-weight: 600;
    transform: translateY(-50%) rotate(30deg);
    transform-origin: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.package-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.package-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-color-2);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Additional CSS for the special card */
.pricing-card-special {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.pricing-card-special:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 480px) {
    .pricing-card-special {
        padding: 1.75rem;
    }
    
    .usd-price {
        font-size: 1.8rem;
    }
    
    .lkr-price {
        font-size: 1.3rem;
    }
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

.package-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.package-features li i {
    margin-right: 0.75rem;
    color: var(--text-color);
}

.package-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-color-2);
    color: var(--text-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
}

.package-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.popular .package-btn {
    background-color: var(--bg-color-3);
}

.popular .package-btn:hover {
    background-color: var(--bg-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2rem;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tab-container {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 1.75rem;
    }
    
    .package-name {
        font-size: 1.5rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-column {
        flex: 0 0 28%;
    }
    
    .services-center {
        flex: 0 0 44%;
    }
}

@media (max-width: 992px) {
    .services-wrapper {
        flex-direction: column;
    }
    
    .services-center {
        order: -1;
        margin-bottom: 40px;
        flex: 0 0 100%;
    }
    
    .character-container {
        max-width: 350px;
        margin: 0 auto;
        margin-right: 35px;
    }
    
    .services-column {
        flex: 0 0 100%;
        flex-direction: row;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .service-card {
        flex: 0 0 48%;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 32px;
    }
    
    .services-column {
        flex-direction: column;
    }
    
    .service-card {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .award-badge {
        width: 80px;
    }
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 16px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-desc {
        font-size: 14px;
    }
    
    .award-badge {
        width: 60px;
    }
}
.services {
    background: var(--background-color);
  }

 

.service-box {
    flex: 0 0 calc(33.33% - 20px);
    background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

.service-box:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-box:hover .service-icon {
    background: #007bff;
    color: white;
}

.service-icon i {
    font-size: 30px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.service-box:hover .service-icon i {
    color: white;
}

.service-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}

.about-skills {
    margin-top: 40px;
}

.skill-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    padding: 8px 18px;
    background-color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-3px);
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 35px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-image, .about-text {
        flex: 0 0 100%;
    }
    
    .about-image {
        margin-bottom: 50px;
    }
    
    .service-box {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .about-text h3 {
        font-size: 24px;
    }
    
    .about-section {
        padding: 70px 0;
    }
    
    .service-box {
        flex: 0 0 100%;
    }
}
  
  .service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .service-box {
    background: var(--background-color);
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1 1 250px;
    max-width: 300px;
  }

  .service-box :hover {
    transform: translateY(-2px);
  }

.about-hero,
.services,
.contact-hero {
  padding: 3rem 0;
  text-align: center;
  background:var(--background-color);
}

.services {
    background: var(--background-color);
  }

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 0 5%;
        text-align: center;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .content-container {
        padding: 0 0%;
        flex-direction: column-reverse;
        margin: 135px 0px 135px 0px;
    }

    .image-content{
        max-width: 80%;
        margin: -115px 0px -90px -75px;
    }

    .text-content {
        text-align: center;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }

    .image-content img {
        max-width: 60%;
        height: auto;
        border-radius: 50%;
        margin: 95px -60px 120px 0px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .h-name {
        font-size: 1.5rem;
        text-align: center;
        margin: 0px 0 0px 0;
    }

    .role {
        font-size: 1rem;
    }
    .h-description{
        font-size: 1rem;
    }

    .hire-buttons {
        justify-content: center;
        margin: 0px 0px 0px 0px;
    }
    .h-btn {
        font-size: 1rem;
    }
    .scroll-down {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 2rem;
    }

    .role, .description {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.9rem;
        margin: 10px 0px 0px -30px;
    }

.scroll-down {
    margin-bottom: -20px;
}
}

.scroll-down {
    opacity: 1;
    -webkit-transition: all .5s ease-in 3s;
    transition: all .5s ease-in 3s;
  }
  
  .scroll-down {
    position: absolute;
    scroll-behavior:smooth;
    bottom: 30px;
    left: 50%;
    margin-left: -17px;
    display: block;
    width: 32px;
    height: 32px;
    border: 2px solid var(--text-color);
    background-size: 14px auto;
    border-radius: 50%;
    z-index: 2;
    -webkit-animation: bounce 2s infinite 2s;
    animation: bounce 2s infinite 2s;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
  }
  
  .scroll-down:before {
      position: absolute;
      top: calc(50% - 8px);
      left: calc(50% - 7px);
      transform: rotate(-45deg);
      display: block;
      width: 12px;
      height: 12px;
      content: "";
      border: 2px solid var(--text-color);
      border-width: 0px 0 2px 2px;
  }
  
  @keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
    40% {
      -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      transform: translateY(-10px);
    }
    60% {
      -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      transform: translateY(-5px);
    }
  }

.anchor-btn {
    display: inline-flex;
    align-items: center;
    height: 55px;
    justify-content: center;
    background-color: #8946FF;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.anchor-btn:hover {
    background-color: black;
    color:white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.anchor-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

  /*landing page skill section*/
  #skills-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.skills-grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
.container-skills-tools {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.toggle-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    background-color: var(--white);
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.toggle-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.grid-container {
    position: relative;
    min-height: 400px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
    pointer-events: none;
}

.grid.active {
    opacity: 1;
    position: relative;
    pointer-events: all;
}

.skill-item, .tool-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.skill-item:hover, .tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.skill-item i, .tool-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.skill-item span, .tool-item span {
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .toggle-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .toggle-btn {
        width: 150px;
    }
    
    .skill-item, .tool-item {
        padding: 1rem 0.5rem;
    }
    
    .skill-item i, .tool-item i {
        font-size: 2rem;
    }
}

  /*top button*/
  #progress {
    position: fixed;
    bottom: 130px;
    right: 20px;
    height: 70px;
    width: 70px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 2;
  }
  #progress-value {
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background-color: var(--bg-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 35px;
    color: var(--text-color);
  }

/* About Section */
.about {
    padding: 6rem 10%;
    background-color: var(--secondary-bg);
}


.section-title {
    font-size: 2.5rem;
    font-family: my-font;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.about-text{
    line-height: 1.6;
    margin-bottom: 1rem;
    animation: fadeIn 2s;
}

.about-text a{
    color: var(--primary-color);
    text-decoration: none;
    animation: fadeIn 2s;
}

.about-img img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    animation: fadeIn 2s;
}
.about-text .about-btn{
    display: inline-block;
    margin-top: 10px;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    animation: fadeIn 2s;
}

.about-btn:hover{
    background-color:var(--btn-color);
    color:Var(--bg-color);
    opacity: 0.9;
    transform: translateY(-2px);
}

/*work section*/
.work{
    padding: 6rem 10%;
    background-color: var(--secondary-bg);
}
.work-container {
    max-width: 1200px;
    margin: 0 auto;
}

.work h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--text-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    background-color: var(--bg-color);
    border: 4px solid var(--primary-color);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -13px;
}

.content {
    padding: 20px 30px;
    background-color: var(--bg-color);
    border-radius: 6px;
    box-shadow: 0 4px 8px var(--shadow);
}

.date {
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.description {
    margin-bottom: 15px;
}
.description >a{
    color: var(--text-color);
    text-decoration: none;
}

/*service*/
.container-service-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    font-family: my-font;
}

.section-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px var(--shadow);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
}

.container-service-page-2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.section-header-2 {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-2 h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: my-font;
}

.section-header-2 h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px var(--shadow);
}
.service-card i{
    font-size: 2rem;
    padding-top:20px;
    color: var(--text-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.service-content p {
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
}

/* Projects Section */
#project * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#project body {
    line-height: 1.6;
    padding: 20px;
}
.portfolio-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 16px;
    background-color: var(--bg-color);
    color: var(--filter-color);
    border: 1px solid Var(--filter-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.portfolio-item {
    background-color:var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.portfolio-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    max-width: 300px; /* Adjust the max width as needed */
    height: auto; /* Maintain aspect ratio */
}

.portfolio-info {
    padding: 20px;
    text-align: center; /* Center align the text */
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
    text-decoration: none;
}

.portfolio-info h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.portfolio-info p {
    color: var(--gray);
    font-size: 0.9rem;
}
.portfolio-info a{
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 10px;
    padding: 8px 16px;
    color: var(--text-color);
    border-radius: 30px;
    transition: var(--transition);
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
}


/* Contact Info Section */
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

#contact {
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container-contact {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    background:var(--secondary-bg);
    margin-top: 80px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Info Section */
.contact-info {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.contact-info h2 {
    font-family: my-font;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 20px;
}

.info-item {
    font-size: 16px;
    margin-bottom: 10px;
}

.hire-buttons {
    margin-top: 10px;
    align-items: center;
    gap: 10px;
}

.hire-buttons a {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.hire-buttons a:hover {
    transform: translateY(-2px);
}
.fiverr {
    background: #1dbf73;
}

.upwork {
    background: #132633;
}

/* Contact Form Section */
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    resize: none;
    margin-bottom: 10px;
}

.btn-sub {
    width: 100%;
    padding: 12px;
    background: black;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-sub:hover {
    background: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .contact-info {
        margin-top: 60px;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .form-group {
        flex-direction: column;
    }
}



/*skills section*/
.container-skills {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 30px 90px 30px;
    text-align: center;
  }
  
  /* Section Title */
  .skills h1 {
    font-size: 2.5rem;
    font-family: my-font;
    font-weight: bold;
    margin-top: 80px;
    margin-bottom: 10px;
    color:var(--text-color);
  }
  
  .skills p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #666;
  }
  
  /* Skills Grid */
  .skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .skill {
    flex: 1 1 calc(50% - 20px);
    text-align: left;
    margin-bottom: 10px;
  }
  
  .skill-title {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .skill-bar {
    width: 100%;
    background: var(--skill-color);
    height: 15px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    margin-top: 5px;
  }
  
  .progress {
    height: 100%;
    background: var(--primary-color); /* Orange Color */
    color: var(--third-color);
    font-size: 0.9rem;
    font-weight: bold;
    text-align: right;
    padding-top: 3px;
    padding-right: 5px;
    line-height: 10px;
    transition: all 0.5s ease;
    animation: fillBar 2s ease-out forwards;
  }
  
  /* Progress Bar Animation */
  @keyframes fillBar {
    from {
      width: 1;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .skill {
      flex: 1 1 100%;
    }
  
    .skills h1 {
      font-size: 2rem;
    }
  
    .skills p {
      font-size: 1rem;
    }
  }
/*end of skills*/

/*site-map*/
.container-sitemap {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: var(--bg-color-3);
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    margin-bottom: -70px;
}

main {
    padding: 155px 0;
}

.site-map {
    color: var(--text-color);
    list-style: none;
    padding: 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: my-font;
    text-decoration: none;
}

.site-map li {
    margin: 10px 0;
    text-decoration: none;
}

.site-map a {
    color: var(--text-color);
    text-decoration: none;
}

.site-map a:hover {
    text-decoration: underline;
}

.site-map ul {
    margin-left: 20px;
}


/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        width: 95%;
    }

    header {
        padding: 10px 0;
    }

    .site-map ul {
        margin-left: 10px;
    }
}

/* Footer */

.footer {
    background-color: var(--primary-color);
    color: var(--bg-color-2);
    margin-top: 0px;
    padding-bottom: 2rem;
    transition: all 0.3s ease;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-logo > img{
    width: 100px;
    height: 100px;
    margin-top: 10px;
    margin-bottom: -20px;
}



@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.nav-menu {
    display: flex;
    margin-left: 315px;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    color: var(--third-color);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--third-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--third-color);
}

.nav-link:hover::after {
    width: 100%;
}

.social-links {
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 65px;
    margin-right: -30px;
}

.social-item .fab {
    color: var(--third-color);
    text-decoration: none;
}

.social-icon {
    color: var(--bg-color);
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    color: var(--bg-color-2);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 0rem;
    margin-left: 15rem;
    margin-bottom: -2rem;
    padding-top: 1rem;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color:var(--third-color);
}

.copyright > a{
    color: var(--third-color);
    cursor:default;
    text-decoration: none;
    font-family: my-font;
}

.creator {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--third-color);
}

.creator a{
    text-decoration: none;
    color: var(--third-color);
}

.creator span {
    color: var(--third-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .footer-logo >img {
        width: 30%;
        height: 30%;
        margin-top: -5px;
        margin-bottom: -75px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom{
        margin-left: 0px;
        margin-top: 1rem;
    }

    .nav-menu {
        font-size:15px;
        flex-direction: column;
        gap: 1rem;
        margin-left: 0px;
    }

    .social-links {
        font-size: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: -10px;
    }

    .social-item .fab {
        color: var(--third-color);
        font-size: 20px;
    }

    .copyright {
        font-size: 17px;
    }

    .copyright > a{
        color: var(--third-color);
        cursor:default;
        text-decoration: none;
        font-size: 21px;
        font-family: my-font;
    }
    .creator {
        font-size: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body{
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: var(--transition);
    cursor: none;
    }

    .header{
        flex-direction: column;
    }
    .header.sticky {
        padding: 1rem 10%;
    }
    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: var(--third-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
        background-color: var(--bg-color-3);
    }

    .nav img{
        width: 60px;
        height: 60px;
        margin-top: -10px;
        margin-bottom: -20px;
    }
    .menu-btn {
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }

    .custom-cursor{
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .card {
        transform: none !important;
        right: 20px;
    }

    .contact-item, .social-link {
        transform: none !important;
    }
}

/*marquee*/
.bungee-outline-regular {
  font-family: "Bonaro-Outline", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.marquee-wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
      height: 175px;
      display: flex;
      align-items: center;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: scroll-left 15s linear infinite;
    }

    .marquee-text {
      font-size: 10vw;
      font-weight: 600;
      font-family: 'Times New Roman', sans-serif;
      stroke-width: 1px;
      -webkit-text-stroke-color:var(--text-color);
      -webkit-text-stroke-width: 1px;
      stroke: var(--primary-color);
      color: var(--text-color);
      display: flex;
      white-space: nowrap;
    }

    .marquee-text span {
      margin: 0 1vw;
      color: transparent;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @media (max-width: 600px) {
      .marquee-text {
        font-size: 25vw;
      }
    }

/*Testimonial*/

.testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
.testimonial-container > h1 {
            text-align: center;
            font-family: my-font;
            margin-bottom: 40px;
            color: var(--text-color);
            font-size: 2.5rem;
}

.testimonials {
            position: relative;
            overflow: hidden;
            min-height: 230px;
        }

        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            background-color: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: center;
        }

        .testimonial-slide.active {
            opacity: 1;
            position: relative;
        }

        .testimonial-content {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 20px;
            color: var(--text-color);
        }

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

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--primary-color);
        }

        .author-info h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--text-color);
        }

        .author-info p {
            color: #7f8d83;
            font-size: 0.9rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: white;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .nav-dot.active {
            background-color: var(--primary-color);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .testimonial-content {
                font-size: 1rem;
            }

            .testimonial-slide {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }

            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }

            .author-img {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }

/* Responsive design */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 18px;
    }

    .left::after, .right::after {
        left: 18px;
    }

    .right {
        left: 0;
    }
}

@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 2) {
    body{
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color-2);
    color: var(--third-color);
    line-height: 1.6;
    transition: var(--transition);
    cursor: none;
    }
    
    .header{
        flex-direction: column;
    }
    .header.sticky {
        padding: 1rem 10%;
    }
    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: var(--card-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav img{
        width: 80px;
        height: 80px;
        margin-top: 5px;
        margin-bottom: -10px;
    }
    .menu-btn {
        display: block;
    }

    .hero {
        padding: 0 5%;
        text-align: center;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .custom-cursor{
        display: none;
    }
}

@media (max-width: 320px) {
    .container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .card {
        transform: none !important;
    }

    .contact-item, .social-link {
        transform: none !important;
    }
}

/* Responsive design */
@media screen and (max-width: 670px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 18px;
    }

    .left::after, .right::after {
        left: 18px;
    }

    .right {
        left: 0;
    }
}


