* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
     font-family: 'montextralight_demo';
    scroll-behavior: smooth;
}
html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #232323 ;
    --text-color:#FFFFFF;
    

  }


/* Navigation Dots Styles */
       .nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(204, 200, 219, 0.7); 
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 2px solid transparent;
    

    --hover-color: rgba(255, 255, 255, 0.7);
    --active-color: #ffffff;
}

.nav-dot:hover {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.nav-dot.active {
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}


.nav-dot::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dot:hover::after {
    opacity: 1;
    visibility: visible;
    right: 20px;
}


.nav-dot[data-bg="light"]::after {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
}


.nav-dot.active::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}


.nav-dot {
    transition: 
        background-color 0.3s ease,
        transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-dots {
        right: 20px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .nav-dot::after {
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media (max-width: 768px) {
    .nav-dots {
        right: 15px;
        gap: 12px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
    
    .nav-dot:hover {
        transform: scale(1.2);
    }
    
    .nav-dot.active {
        transform: scale(1.3);
    }
    
    .nav-dot::after {
        display: none; 
    }
}


@media (prefers-reduced-motion: reduce) {
    .nav-dot,
    .nav-dot::after,
    .nav-dot::before {
        transition-duration: 0.1s !important;
        animation-duration: 0.1s !important;
    }
    
    .nav-dot.active::before {
        animation: none;
    }
}


.nav-dot:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.nav-dot:focus::after {
    opacity: 1;
    visibility: visible;
    right: 20px;
}

.Section-One {
    position: relative;
   min-height: 100vh;
}


.Section-One .container {
    padding-top: 90px; 
}
.Section-One h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
}

.Section-One p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 300;
    color: #000000;
}

.GetStarted{
    background: linear-gradient(45deg, #000000, #797777);
    color: white;
    text-decoration: none;
    border-radius: 30px;
   padding: 13px 27px;
    border: none;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.GetStarted::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.GetStarted:hover::before {
    left: 100%;
}

.GetStarted:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, #1a1a1a, #444444);
}

.GetStarted:active {
    transform: translateY(-1px) scale(1.02);
}

.Dimensions-gif {
    display: flex;
    justify-content: center;
    align-items: center;
}
.Dimensions-gif img{
    width: 400px;
}

.clients-section {
    padding-top: 120px ;
    padding-bottom: 10px;
    background-color: #ffffff;
    text-align: center;
}

.clients-section h5 {
    color: #00000059;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 28px;
}

/* Ticker container and animation */
.customers-ticker-container {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.customers-ticker {
    display: flex;
    position: relative;
    z-index: 2;
    width: fit-content;
}

.ticker-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.customer-logo {
    width: 120px;
    height: auto;
    transition: transform 1s ease;
}

.ticker-item:hover .customer-logo {
    transform: scale(1.1);
}



@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}





/* Section Two Styles */

.Section-Two {
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    /* Smoother, longer transition for background */
    transition: background-color 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.Section-Two.dark-mode {
    background-color: var(--primary-color);
}

.Section-Two-heading {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 40px;
    z-index: 3;
    position: relative;
    /* Smoother color transition */
    transition: color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #000;
}

.Section-Two.dark-mode .Section-Two-heading {
    color: #fff;
}

.sphere-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 100%;
    overflow: visible;
}

.geometric-sphere {
    max-width: 65%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: static;
    z-index: 2;
    /* Enhanced transition for smooth effects */
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Prevent any jumping during transforms */
    transform-origin: center center;
}

.content-wrapper {
    position: relative;
    z-index: 3;
    /* Smoother transitions for all content */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Prevent any layout shifts during animation */
    transform-origin: center center;
}

.who-are-we-badge {
    display: inline-block;
    background-color: #222;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    /* Smoother badge transition */
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.Section-Two.dark-mode .who-are-we-badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-text {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 25px;
    /* Enhanced text transition */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #000;
}

.Section-Two.dark-mode .about-text {
    color: #fff;
}

.ReadMore {
    background: linear-gradient(45deg, #000000, #4d4c4c);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* Smoother button transitions */
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    transform-origin: center center;
}

.ReadMore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ReadMore:hover::before {
    left: 100%;
}

.ReadMore:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, #1a1a1a, #444444);
}

/* Enhanced scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 1000;
    /* Smoother indicator transitions */
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.scroll-indicator.dark {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

/* Additional smooth animation classes */
.smooth-transform {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-smooth {
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Performance optimizations */
.Section-Two * {
    /* Enable GPU acceleration for smoother animations */
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .Section-Two,
    .Section-Two *,
    .content-wrapper,
    .geometric-sphere,
    .who-are-we-badge,
    .about-text,
    .ReadMore,
    .scroll-indicator {
        transition-duration: 0.2s !important;
        animation-duration: 0.2s !important;
    }
}

/* Responsive adjustments with smooth transitions */
@media (max-width: 768px) {
    .sphere-container {
        height: 300px;
        margin-bottom: 30px;
        transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .geometric-sphere {
        max-width: 80%;
    }
    
    .Section-Two-heading {
        font-size: 2rem;
        text-align: center;
        transition: font-size 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .about-text {
        text-align: center;
    }
}

/* Additional animation enhancement classes */
.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-out {
    opacity: 0.8;
    transform: translateY(10px) scale(0.98);
}
/* -----------------------Scrollable section-------------- */
.scrollable-container {
    position: relative;
    height: 400vh; 
}

.services-section {
    position: sticky;
    top: 0;
    background-color: var(--primary-color);
    z-index: 2;
    height: 100vh;
    width: 100%;
    
}

.services-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("/assets/images/LapTop.png");
    background-repeat: no-repeat;
    background-size: cover;
   
}

.section-title {
    font-size: 70px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    transition: top 0.8s ease, opacity 0.8s ease;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: white;
    white-space: nowrap;
    line-height: 1;
}

.services-content {
    position: absolute;
    width: 100%;
    max-width: 1000px;
    opacity: 0;
    transition: opacity 0.8s ease;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 50px;
    z-index: 4;
}

.service-item {
    background: 
    linear-gradient(204.93deg, rgba(4, 5, 9, 0.098) -72.87%, rgba(255, 255, 255, 0) 109.39%),
    linear-gradient(180deg, rgba(254, 227, 213, 0.035) 0%, rgba(255, 165, 193, 0.035) 100%);
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-icon img{
    width: 70px;
}

.service-description-container {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.service-description-container p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
     background: 
    linear-gradient(204.93deg, rgba(4, 5, 9, 0.098) -72.87%, rgba(255, 255, 255, 0) 109.39%),
    linear-gradient(180deg, rgba(254, 227, 213, 0.035) 0%, rgba(255, 165, 193, 0.035) 100%);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item:nth-child(1):hover {
    background-color: rgba(163, 209, 176, 0.6);
}

.service-item:nth-child(2):hover {
    background-color: rgba(113, 97, 167, 0.7);
}

.service-item:nth-child(3):hover {
    background-color: rgba(152, 172, 217, 0.7);
}

.service-description-container.active {
    opacity: 1;
}





/* -------------Section three -----------*/
.Section-Three {
    background-color: var(--primary-color);
    color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0px;
    position: relative;
   
  }

  .section-content{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    gap: 25px;
  }
  
  .section-content-titles{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .section-content-titles .title{
    font-weight: 700;
    font-size: 4rem;
    color: rgb(179, 179, 179);
  }
  .section-content-titles span{
    color: white;
  }
  .background-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .Section-Three-subtitle {
    font-size: 14px;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
    background-color: rgba(207, 113, 202, 0.04);
    border-radius: 30px;
    padding: 3px 10px;
    width: fit-content;
   
  }
  

  .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    width: 320px;
    border-radius: 50px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);

}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featurdetails {
    flex-grow: 1;
    text-align: left;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
   
}

.feature-desc {
    font-size: 12px;
    color: #a0a0a0;
}
  .shape {
    position: absolute;
    opacity: 0.15;
    border: 1px solid #666;
  }
  
  .shape1 {
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border-radius: 30px;
    transform: rotate(45deg);
  }
  
  .shape2 {
    bottom: 15%;
    left: 5%;
    width: 300px;
    height: 180px;
    transform: skewX(20deg);
  }
  
  .shape3 {
    top: 25%;
    left: 25%;
    width: 100px;
    height: 100px;
    transform: rotate(30deg);
  }

  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .feature-item {
    opacity: 0;
    transform: translateY(40px);
  }
  
 
  .feature-item.animate {
    animation: fadeUp 0.6s ease forwards;
  }
  



/* -----------Section Four------- */

       
        .Section-Four {
            background-color: #252525;
            padding: 100px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 10px;
        }

        .portfolio-header h1 {
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: 700;
            color: #aaa;
        }

        .portfolio-header p {
            color: #aaa;
            font-size: 1.1rem;
        }

        .masonry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            grid-auto-rows: 200px;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .masonry-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #333 0%, #555 100%);
            text-decoration: none;
            color: inherit;
        }

        .masonry-item:nth-child(1) { grid-row: span ; }
        .masonry-item:nth-child(4) { grid-row: span 2; }
        .masonry-item:nth-child(6) { grid-row: span 2; }

        .masonry-item:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }

        .masonry-item:hover .masonry-image {
            transform: scale(1.1);
        }

        .masonry-item:hover .masonry-overlay {
            opacity: 0.9;
        }

        .masonry-image {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: transform 0.3s ease;
        }

        .masonry-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .masonry-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            z-index: 2;
        }

        .masonry-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #fff;
        }

        .masonry-tech {
            font-size: 0.8rem;
            color: #aaa;
        }

        .view-project {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 500;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 3;
        }

        .masonry-item:hover .view-project {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.05);
        }

        @media (max-width: 768px) {
            .masonry-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 250px;
            }
            
            .masonry-item:nth-child(n) {
                grid-row: span 1;
            }
            
            .portfolio-header h1 {
                font-size: 2rem;
            }
        }

/* --------------Section five---------- */

 .section-five {
            height: 100vh;
            background-color: var(--primary-color);
            display: flex;
            flex-direction: column;
            color: #CCCCCC;
            align-items: center;
            justify-content: center;
            gap: 20px;
            position: relative;
            overflow: hidden;
        }

        /* Floating particles animation */
        .section-five::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 200px 20px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 150px 100px, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(1px 1px at 80px 120px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 180px 60px, rgba(255, 255, 255, 0.2), transparent);
            background-repeat: repeat;
            background-size: 200px 100px;
            animation: randomFloat 10s infinite ease-in-out alternate;
            pointer-events: none;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .section-five.animate::before {
            opacity: 1;
        }

        @keyframes randomFloat {
    0% {
        transform: translateX(0px) translateY(0px);
    }
    25% {
        transform: translateX(30px) translateY(-15px);
    }
    50% {
        transform: translateX(-20px) translateY(10px);
    }
    75% {
        transform: translateX(15px) translateY(-25px);
    }
    100% {
        transform: translateX(-10px) translateY(20px);
    }
}

        .five-container {
            width: 50%;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.1s ease-out;
        }

        .section-five.animate .five-container {
            opacity: 1;
            transform: translateY(0);
        }

        .section-five-paragraph h3 {
            text-align: center;
            line-height: 1.4;
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: 0.5px;
            margin: 0 auto;
            min-height: 3em; 
        }

        /* Typewriter cursor */
        .typewriter-cursor {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.7);
            width: 3px;
            animation: blink 0.3s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .dection-five-contact-btn {
            background: linear-gradient(45deg, #000000, #333333);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 30px;
            font-size: 14px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px) scale(0.9);
            text-decoration: none;
        }

        .section-five.animate .dection-five-contact-btn {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: 0.4s;
        }

        .dection-five-contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .dection-five-contact-btn:hover::before {
            left: 100%;
        }

        .dection-five-contact-btn:hover {
            transform: translateY(-3px) scale(1.05);
            background: linear-gradient(45deg, #1a1a1a, #444444);
        }

        .dection-five-contact-btn:active {
            transform: translateY(-1px) scale(1.02);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .five-container {
                width: 90%;
            }
            
            .section-five-paragraph h3 {
                font-size: 1.5rem;
            }
            
            .dection-five-contact-btn {
                padding: 12px 25px;
                font-size: 16px;
            }
        }



  





