* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    /* Updated font-family to use Poppins */
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;

}

/* Header Navigation */
.header {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    align-items: center;
}

.logo {
    width: 70px;
    height: 70px;
    background-image: url("logo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
}
@media (max-width: 768px) {
  .portfolio-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px;
  }

  .portfolio-item {
    flex: 0 0 80%; /* each slide takes 80% of screen */
    scroll-snap-align: start;
    background: #f9f9f9;
    border-radius: 10px;
    min-height: 200px;
  }
  .project-display {
    gap: 0px !important;
}

  /* hide ugly scrollbar */
  .portfolio-grid::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 768px) {
    .scroll-button {
    font-size: 0.8rem;
    padding: 10px 20px;

}
    
    .nav-toggle {
        display: block;
    }

    .header {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 20px 16px;
        justify-content: space-between;
    }

    .logo {
        order: 1;
    }

    .buttons {
        display: flex;
        /* show button on mobile */
        order: 2;
    }

    .nav-toggle {
        display: block;
        order: 3;
    }

    .nav {
        order: 4;
        /* menu stays below */
    }

    .logo {
        width: 44px;
        height: 44px;
    }

    .header {
        align-items: center;
    }

    .nav {
        display: none;
        flex-direction: column;
        background: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 10px 20px;
    }

    .nav.show {
        display: flex;
        align-items: flex-start;
    }

    .nav a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .buttons {
        display: none;
        /* hide button on mobile */
    }
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;

    font-size: 14px;
    /* Updated font-weight to match Poppins styling */
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ff6b35;
}

.nav a.active {
    color: #ff6b35;
    font-weight: 500;
}

.header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-icon,
.menu-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Added animated background pattern */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 120px 40px;
    position: relative;
}

.first-section {
    flex-direction: column;
    gap: 80px;
}

/* Enhanced hero content with better animations */
.hero-content {
    max-width: 1200px;
    margin-bottom: 5px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    color: #000;
    margin-top: 30px;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

/* Enhanced highlight with animated underline */
.highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 6px;
    background: #000;
    transform: skew(-12deg);
    animation: expandLine 1.5s ease-out 0.5s forwards;
}

@keyframes expandLine {
    to {
        width: 100%;
    }
}

.hero-subtitle {
    margin-top: 10px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle p {
    font-size: 1.4rem;
    color: #555;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* Enhanced portfolio container with staggered animations */
.portfolio-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.portfolio-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0;
    perspective: 1500px;
    flex-wrap: wrap;
}

/* More sophisticated 3D cards with enhanced animations */
.portfolio-item {
    width: 320px;
    height: 200px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    background: #fff;
    border: 3px solid #000;
}

/* Staggered and angled entrance animations */

.portfolio-item:nth-child(1) {
    transform: rotateY(-15deg) rotateX(5deg) translateY(-10px) scale(1.08);
    animation: slideInLeft1 0.8s ease-out 0.8s both;
}

.portfolio-item:nth-child(2) {
    transform: rotateY(-8deg) rotateX(3deg) translateY(-10px) scale(1.08);
    animation: slideInLeft2 0.8s ease-out 1s both;
}

.portfolio-item:nth-child(3) {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px) scale(1.08);
    z-index: 2;
    animation: slideInUp 0.8s ease-out 1.2s both;
}

.portfolio-item:nth-child(4) {
    transform: rotateY(-8deg) rotateX(3deg) translateY(-10px) scale(1.08);
    animation: slideInRight4 0.8s ease-out 1.4s both;
}

.portfolio-item:nth-child(5) {
    transform: rotateY(15deg) rotateX(3deg) translateY(-10px) scale(1.08);
    animation: slideInRight5 0.8s ease-out 1.6s both;
}

/* KEYFRAMES FOR EACH ITEM TO MAINTAIN FINAL TRANSFORM */

/* 1st item */
@keyframes slideInLeft1 {
    from {
        opacity: 0;
        transform: rotateY(-15deg) rotateX(5deg) translateZ(-50px) translateX(-100px);
    }

    to {
        opacity: 1;
        transform: rotateY(-15deg) rotateX(5deg) translateY(-10px) scale(1.08);
    }
}

/* 2nd item */
@keyframes slideInLeft2 {
    from {
        opacity: 0;
        transform: rotateY(-8deg) rotateX(3deg) translateZ(-50px) translateX(-100px);
    }

    to {
        opacity: 1;
        transform: rotateY(-8deg) rotateX(3deg) translateY(-10px) scale(1.08);
    }
}

/* 3rd item (center) */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: rotateY(0deg) rotateX(0deg) translateY(50px) scale(1);
    }

    to {
        opacity: 1;
        transform: rotateY(0deg) rotateX(0deg) translateY(-10px) scale(1.08);
    }
}

/* 4th item */
@keyframes slideInRight4 {
    from {
        opacity: 0;
        transform: rotateY(8deg) rotateX(3deg) translateZ(-50px) translateX(100px);
    }

    to {
        opacity: 1;
        transform: rotateY(8deg) rotateX(3deg) translateY(-10px) scale(1.08);
    }
}

/* 5th item */
@keyframes slideInRight5 {
    from {
        opacity: 0;
        transform: rotateY(15deg) rotateX(3deg) translateZ(-50px) translateX(100px);
    }

    to {
        opacity: 1;
        transform: rotateY(15deg) rotateX(3deg) translateY(-10px) scale(1.08);
    }
}

/* Enhanced featured card with pulsing effect */
.portfolio-item.featured {
    background: #000;
    color: #fff;
    transform: rotateY(0deg) rotateX(0deg) scale(1.08) translateZ(20px);
    z-index: 3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 3px #000, 0 0 30px rgba(0, 0, 0, 0.2);
}

.portfolio-item.featured::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #000, #333, #000);
    border-radius: 16px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* More dramatic hover effects */
.portfolio-item:nth-child(1):hover {
    /* Added specific hover state to maintain 3D rotation while scaling */
    transform: rotateY(-15deg) rotateX(5deg) translateY(-10px) scale(1.08);
    box-shadow: -6px 6px 0px rgba(0, 0, 0);
    transition: 3ms;
}

.portfolio-item:nth-child(2):hover {
    /* Added specific hover state to maintain 3D rotation while scaling */
    transform: rotateY(-8deg) rotateX(3deg) translateY(-10px) scale(1.08);
    box-shadow: -6px 6px 0px rgba(0, 0, 0);
    transition: 3ms;
}

.portfolio-item:nth-child(3):hover {
    /* Added specific hover state to maintain 3D rotation while scaling */
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px) scale(1.08);
    box-shadow: 0px 6px 0px rgba(0, 0, 0);
    transition: 3ms;
}

.portfolio-item:nth-child(4):hover {
    /* Added specific hover state to maintain 3D rotation while scaling */
    transform: rotateY(8deg) rotateX(-3deg) translateY(-10px) scale(1.08);
    box-shadow: 6px 6px 0px rgba(0, 0, 0);
    transition: 3ms;
}

.portfolio-item:nth-child(5):hover {
    /* Added specific hover state to maintain 3D rotation while scaling */
    transform: rotateY(15deg) rotateX(3deg) translateY(-10px) scale(1.08);
    box-shadow: 6px 6px 0px rgba(0, 0, 0);
    transition: 3ms;
}

.portfolio-item.featured:hover {
    transform: translateY(-25px) scale(1.2) rotateY(0deg) rotateX(0deg) translateZ(50px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4), 0 0 0 3px #000, 0 0 60px rgba(0, 0, 0, 0.2);
}

/* Enhanced portfolio content with better typography */
.portfolio-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Animated portfolio number */
.portfolio-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.1;
    transition: all 0.3s ease;
    line-height: 1;
}

.portfolio-item:hover .portfolio-number {
    opacity: 0.2;
    transform: scale(1.1);
}

.portfolio-item.featured .portfolio-number {
    color: #fff;
    opacity: 0.15;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 25px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.portfolio-content p {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

/* Enhanced tech tags with better styling */
.portfolio-tech {
    font-size: 0.85rem;
    opacity: 0.5;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-tech {
    opacity: 0.8;
}

.portfolio-item.featured .portfolio-tech {
    color: #fff;
    opacity: 0.6;
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* Enhanced description section with better animations */
.description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.description-content {
    margin-bottom: 40px;
}

.description p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.7;
}

/* Enhanced stats with counter animation effect */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.stat-item::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #000;
    opacity: 0.3;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Enhanced button with more sophisticated styling */
.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-button {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-weight: 700;
    color: #000;
    font-size: 1rem;
    padding: 14px 25px;
    border: 3px solid #000;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.scroll-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.scroll-button:hover::before {
    left: 0;
}

.scroll-button:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.scroll-icon {
    font-size: 1.4rem;
    animation: bounce 2s infinite;
    transition: transform 0.3s ease;
}

.scroll-button:hover .scroll-icon {
    animation-play-state: paused;
    transform: translateY(2px);
}

/* Responsive design improvements */
@media (max-width: 1200px) {
    .portfolio-grid {
        gap: 30px;
    }

    .portfolio-item {
        width: 300px;
        height: 220px;
    }

    .stats-row {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px;
    }

    .first-section {
        gap: 60px;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 3rem;
    }

    .stats-row {
        gap: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-item {
        width: 350px;
        height: 200px;
        box-shadow: -6px 6px 0px rgba(0, 0, 0);
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 6rem);
    }
}

/* Projects Section */
.projects-section {
    background-color: white;
    padding: 80px 40px;
    margin-top: 60px;
}


.projects-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}



.projects-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 400;
}

.project-display {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 80px;
    flex-direction: column;
    width: 400px;
    justify-content: center;
    border: 1px solid #000;
    height: 500px;
    padding: 40px;
    background-color: #ffffff;
    transition: box-shadow 0.8s ease;
    /* Smooth transition */
}

.project-item:hover {
    box-shadow: 8px 8px 0px rgba(0, 0, 0);
    transition: 3ms;
}

.project-item:nth-child(odd) {
    flex-direction: column-reverse;
}

.project-item .project-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #000;
    filter: grayscale(0%);
    transition: filter 0.4s ease-in-out;
}

.project-item .project-image:hover {
    filter: grayscale(100%);
}

.project-item:nth-child(1) .project-image {
    background-image: url("fairy_educational.png");

}

.project-item:nth-child(2) .project-image {
    background-image: url("deep_srilanka.png");

}

.project-item:nth-child(3) .project-image {
    background-image: url("personal_portfolio.png");

}

.project-item:nth-child(4) .project-image {
    background-image: url("kndfoods.png");

}

.project-item:nth-child(5) .project-image {
    background-image: url("slrcargo.png");

}

.project-item:nth-child(6) .project-image {
    background-image: url("YAGIINFLUX.png");

}

.project-item:nth-child(7) .project-image {
    background-image: url("ecocreation.png");

}

.project-item:nth-child(8) .project-image {
    background-image: url("united_professionals.png");

}

.project-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000000;
    color: white;
    display: flex;
    align-items: center;

    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.project-content {
    flex: 1;
}

.project-content h3 {
    font-size: 1.5rem;
    /* Updated font-weight for Poppins */
    font-weight: 600;
    color: #333;
    width: 100%;
    margin-bottom: 15px;
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 700;
}

.project-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.project-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    width: 100%;
}

.project-link:hover {
    text-decoration: underline;
}

.project-image {
    width: 360px;
    height: 200px;
    background-color: #e0e0e0;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 80px 40px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    /* Updated font-weight for Poppins */
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-email {
    font-size: 2.5rem;
    /* Updated font-weight for better Poppins appearance */
    font-weight: 600;
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin-bottom: 40px;
    display: block;
    letter-spacing: -0.01em;
}

.contact-email:hover {
    color: #ff6b35;
}

.rating {
    margin-top: 40px;
}

.rating h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    width: 24px;
    height: 24px;
    background-color: #ffd700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.footer-text {
    font-size: 0.9rem;
    color: #000000;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {


    .nav {
        display: none;
    }

    .hero h1 {
        font-size: 3.3rem;
    }

    .portfolio-grid {
        flex-direction: column;
        gap: 15px;
        perspective: 1500px;
        width: 100%;
    }

    .portfolio-item {
        width: 350px;
        transform: none !important;
    }

    .project-item {
        flex-direction: column !important;
    width: 600px;
    height: 400px;
    padding: 20px;

}
    }

    .project-image {
        width: 100%;
        max-width: 300px;
    }

    .contact-email {
        font-size: 1.8rem;
    }




.footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;

    margin-bottom: 2rem;

}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section:nth-child(1) {

    align-items: center;
    display: flex;
    flex-direction: column;
}

.footer-main .logo {
    width: 100px;
    height: 100px;
    background-image: url("logob.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #e0e0e0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #555;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
    .footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s ease;
}

    .pricing-section {
    padding: 30px 20px;
}
}

.pricing-section {
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 10px;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.pricing-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    background: #000;
    color: #fff;
}

.pricing-card.featured .plan-name,
.pricing-card.featured .price,
.pricing-card.featured .feature {
    color: #fff;
}

.pricing-card.featured .cta-button {
    background: #fff;
    color: #000;
}

.pricing-card.featured .cta-button:hover {
    background: #f0f0f0;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.price-period {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.pricing-card.featured .price-period {
    color: #ccc;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.feature {
    padding: 8px 0;
    color: #333;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
}

.feature:last-child {
    border-bottom: none;
}

.pricing-card.featured .feature {
    border-bottom-color: #333;
}

.cta-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.cta-button:hover {
    background: #333;
}

.popular-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #000;
    color: #000;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        gap: 50px;
    }

    .pricing-card {
        max-width: 100%;
        width: 100%;
    }
}


.services-section {
    padding: 80px 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.service-card {
    flex: 1;
    background: white;
    border: 2px solid black;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: black;
    color: white;
    transform: translateY(-10px);
}

.service-card:nth-child(1) {
    background: black;
    color: white;
}

.service-card:nth-child(1):hover {
    background: white;
    color: black;
}

.service-icon {
    width: 80px;
    height: 80px;
    border: 3px solid currentColor;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid currentColor;
    opacity: 0.8;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-button {
    background: transparent;
    color: currentColor;
    border: 2px solid currentColor;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: currentColor;
    color: white;
}

.service-card:hover .service-button:hover {
    background: white;
    color: black;
}

.service-card:nth-child(2) .service-button:hover {
    background: black;
    color: white;
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 20px;
    }
}

.about-section {

    display: flex;
    align-items: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

/* Enhanced background with animated geometric patterns 
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(0, 0, 0, 0.01) 49%, rgba(0, 0, 0, 0.01) 51%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 60px 60px;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}
*/

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 160px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.about-left {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* Added hover effect for left section */
    transition: transform 0.3s ease;
}

.about-left:hover {
    transform: translateX(5px);
}

/* Enhanced divider line with animation */
.about-left::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #000, transparent);
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(-50%) scaleY(1);
    }

    50% {
        opacity: 0.6;
        transform: translateY(-50%) scaleY(1.1);
    }
}

.section-number {
    font-size: 18px;
    font-weight: 300;
    color: #666;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* Added typewriter animation */
    opacity: 0;
    animation: typewriter 1s ease-out 0.2s forwards;
}

@keyframes typewriter {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    color: #000;
    line-height: 0.9;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: -2px;
    /* Enhanced title with 3D effect */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    transform: perspective(500px) rotateX(15deg);
    transition: all 0.3s ease;
    cursor: default;
}

.section-title:hover {
    transform: perspective(500px) rotateX(0deg) scale(1.02);
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
}

/* Enhanced underline with wave animation */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #000, #333, #000);
    transform: skewX(-20deg);
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: skewX(-20deg) scaleX(1);
    }

    50% {
        transform: skewX(-20deg) scaleX(1.2);
    }
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    /* Added subtle entrance animation */
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 1s ease-out 0.5s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.company-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    /* Added glitch effect on hover */
    transition: all 0.3s ease;
}

.company-name:hover {
    animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-2px);
    }

    40% {
        transform: translateX(2px);
    }

    60% {
        transform: translateX(-1px);
    }

    80% {
        transform: translateX(1px);
    }
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #000, transparent);
    transform: scaleX(0);
    transform-origin: left;
    animation: expandLine 2s ease-out 0.8s forwards;
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    position: relative;
    padding-left: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    /* Added hover effect for paragraphs */
    transition: all 0.3s ease;
    cursor: default;
}

.about-paragraph:hover {
    transform: translateY(-2px);
    color: #000;
}

.about-paragraph:nth-child(1) {
    animation-delay: 1s;
}

.about-paragraph:nth-child(2) {
    animation-delay: 1.3s;
}

/* Enhanced bullet point with pulsing animation */
.about-paragraph::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
    animation: bulletPulse 2s ease-in-out infinite;
}

@keyframes bulletPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.emphasis {
    font-style: italic;
    font-weight: 600;
    color: #000;
    position: relative;
    /* Added emphasis hover effect */
    transition: all 0.3s ease;
    cursor: default;
}



.stats-grid {
    display: flex;
    gap: 100px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    
}

/* Added animated border top */
.stats-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    animation: expandBorder 1.5s ease-out 1.5s forwards;
}

@keyframes expandBorder {
    to {
        width: 100%;
    }
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    /* Enhanced stat item with hover effects */
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Added floating effect for stat items */
.stat-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.stat-item:hover::after {
    width: 80%;
}

.stat-item:nth-child(1) {
    animation-delay: 1.6s;
}

.stat-item:nth-child(2) {
    animation-delay: 1.8s;
}

.stat-item:nth-child(3) {
    animation-delay: 2s;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    display: block;
    margin-bottom: 5px;
    /* Added counter animation */
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Added label animation */
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #000;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 40px;
    }

    .about-left {
        flex: none;
        text-align: center;
    }

    .about-left::after {
        display: none;
    }

    .section-title {
        font-size: 3rem;
    }

    .about-right {
        padding-left: 0;
        text-align: justify;
    }

    .stats-grid {
        justify-content: center;
    }

    .stat-item {
        flex: 1;
        max-width: 40px;
    }
}


.contact-section {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 280px 20px;
    background: #fff;
    /* Added fade-in animation */
    animation: fadeIn 1s ease-out;
}

/* Added fade-in keyframe animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-section h2 {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
    line-height: 1.1;
    letter-spacing: -0.02em;
    /* Added subtle hover animation */
    transition: transform 0.3s ease;
}

/* Added subtle hover effect for heading */
.contact-section h2:hover {
    transform: scale(1.02);
}

.contact-email {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 600;
    color: #000;
    text-decoration: none;
    padding: 30px 50px;
    border: 3px solid #000;
    border-radius: 8px;
    background: #fff;
    /* Enhanced transition with transform */
    transition: all 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-align: center;
}

.contact-email:hover {
    background: #000;
    color: #fff;
    /* Added subtle lift effect on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Added active state for better interaction feedback */
.contact-email:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-section h2 {
        margin-bottom: 30px;
    }

    .contact-email {
        padding: 20px 30px;
        font-size: clamp(1.2rem, 4vw, 2rem);
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 10px;
    }

    .contact-email {
        padding: 15px 25px;
        word-break: break-all;
    }
}