:root {
    --primary: #1a1a1a;
    --secondary: #2d2d2d;
    --accent: #E62F2D;
    --accent-2: #E8532B;
    --accent-3: #E83A26;
    --gradient: linear-gradient(135deg, #E62F2D 0%, #E8532B 50%, #E83A26 100%);
    --gradient-reverse: linear-gradient(135deg, #E83A26 0%, #E8532B 50%, #E62F2D 100%);
    --text: #2c2c2c;
    --text-light: #666;
    --bg: #ffffff;
    --bg-alt: #fafafa;
    --border: #e0e0e0;
}

*{
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,h2,h3{
    color: var(--accent-3);
    font-weight: 800;
}

body {
    font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

.container{
    max-width: 1200px;
    /* overflow: hidden; */
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.content-image {
            width: 100%;
            max-width: 600px;
            height: 450px;
            object-fit: cover;
            margin: 0;
            display: block;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .content-image:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 30px 80px rgba(230, 47, 45, 0.25);
        }


/* Two Column Layout for Images */
.content-with-image-round {
    max-width: 1200px;
    margin: 60px auto;
    line-height: 1.7;
}

/* Circular floating image */
.content-image-round {
    width: 40vw;     
    max-width: 420px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;

    float: left;
    shape-outside: circle(50%);
    clip-path: circle(50%);

    margin: 0 40px 20px 0;
}

/* Text container */
.content-text p {
    margin-bottom: 16px;
}

/* Mobile: disable wrapping */
@media (max-width: 768px) {
    .content-image {
        float: none;
        shape-outside: none;
        clip-path: none;
        /* border-radius: 50%; */
        width: 100%;
        height: 100px;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .content-with-image {
        text-align: left;
    }   
    
}

@media (max-width: 768px) {
    .design-services {
        margin-top: -150px;
        margin-bottom: -100px;
    }
        .process {
    margin-top: -150px;
    margin-bottom: 0;
    }
}



.hero{
    background: linear-gradient(90deg, #ff7a45 0%, #ffd166 100%);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.hero-container {
    height: 100vh;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
}
.hero-content{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}


.hero-visual {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-content h1{
    color: #fff;
    font-weight: bold;
}

.hero-content p{
    color: #fff;
}

@media (max-width: 786px) {
    .hero-container {
        flex-direction: column-reverse;
        height: auto;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-visual {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-visual img {
        max-width: 90%;
    }
    
}


/* about */

.about-us {
    background-image: url("assets/images/aboutbg.webp" !important);
    min-height: 100vh;
    background-position: center;
    background-size: Cover !important;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}

.about-container{ 
    padding: 100px 0px;
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
}

.about-container h2{
    width: 40%;
    font-weight: 700;
    max-width: 480px;
}
.about-container div{
    width: 60%;
    max-width: 720px;
    line-height: 1.5;
}

@media (max-width: 786px) {
    .about-container{
        flex-direction: column;
        padding: 40px 20px;
    }
    .about-container h2{
        width: 100%;
        margin: 30px 0;
        padding-bottom: 10px;
    }
    .about-container div{
        width: 100%;
        line-height: 1.2;
    }
}

/* transform business */

.transform-business h1{
    color: var(--accent-3);
    /* text-align: center; */
    padding: 30px 0px;
    font-weight: 700;
}

.transform {
    display: flex;
    gap: 60px;
}

.transform-img{
    flex: 5;
}
.transform-img img{
    position: relative;
    width: 100%;
    border-radius: 10px;
}

.transform-desc {
    position: relative;
    flex: 6;
}

.transform-desc div{
    max-height: 400px;
    overflow-y:scroll;
}

.fader{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(transparent, white);
    text-align: center;
}
.fader::after{
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: bottom;
}

.fader span{
    display: inline-block;
    vertical-align: bottom;
}

@media (max-width: 786px) {
    .transform{
        flex-direction: column;
        gap: 40px;
    }
}

/* zig-zag */

.zig-box{
    display: flex;
    gap: 20px;
    margin:80px 0px;
}

.zig-box h3{
    color: var(--accent-3);
    padding-bottom: 20px;
}

.zig-image{
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: start;
    overflow: hidden;
}
.zig-image img{
    width: 100%;
    border-radius: 10px;
}
.zig-reverse{
    flex-direction: row-reverse;
}
.zig-desc{
    flex: 5;
}

@media (max-width:786px) {
    .zig-box{
        flex-direction: column;
    }
    .zig-reverse{
        flex-direction: column;
    }
}

/* design-services */

.ds-wrapper{
    height: 520px;
  display:grid;
  grid-template-columns:400px 1fr;
  gap:40px;
  margin-bottom: 200px;
}
.ds-image-track{
  display:flex;
  gap:20px;
  transition:transform .6s ease;
}
.ds-image{
  flex-shrink:0;
  width:350px;
  height:150px;
  border-radius:18px;
  background-size:cover;
  background-position:center;
  position:relative;
  transition:all .6s ease;
  margin-top: 100px;
}
.ds-image h3{
  position:absolute;
  width: 100%;
  height: 50%;
  border-radius: 0 0 18px 18px;
  bottom: -10px;
  color:#fff;
  font-size:16px;
  font-weight:600;
  background: linear-gradient(transparent, black);
  text-align: center;
  padding-top: 30px;
}
.ds-image.active{
  width:420px;
  height:520px;
  opacity:1;
  margin-top: 0;
}
#carouselTitle{
    color: var(--accent-3);
    font-weight: 700;
}
.ds-lower{
    margin-top: 250px;
    display: flex;
    justify-content: space-between;
}
#carouselDescription{
  opacity:0;
  transform:translateY(20px);
  transition:.4s ease;
  padding-right: 10px;
  line-height: 1.5;
}
#carouselDescription.active{
  opacity:1;
  transform:translateY(0);
}
.ds-controls{
  margin-top:20px;
  display:flex;
  gap:12px;
}
.ds-controls button{
  width:44px;
  height:44px;
  border-radius:50%;
  border:none;
  font-size:22px;
  cursor:pointer;
}


@media (max-width:786px) {

  .ds-wrapper{
    display:flex;
    flex-direction:column;
    height:auto;
    gap:24px;
    margin-bottom:80px;
  }

  /* IMAGE ROW */
  .ds-images{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }

  .ds-image-track{
    display:flex;
    gap:16px;
    transform:none !important;
  }

  .ds-image{
    width:260px;
    height:160px;
    margin-top:0;
    flex-shrink:0;
  }

  .ds-image.active{
    width:260px;
    height:160px;
  }

  .ds-image h3{
    display:block !important;
    font-size:14px;
    padding-top:24px;
  }

  /* CONTROLS */
  .ds-controls{
    justify-content:center;
    margin-top:12px;
  }

  /* CONTENT STACK */
  .ds-content{
    display:flex;
    flex-direction:column;
    gap:16px;
  }

  .ds-lower{
    flex-direction:column;
    margin-top:0;
    gap:12px;
  }

  #carouselTitle{
    font-size:22px;
  }

  #carouselDescription{
    padding-right:0;
    line-height:1.2;
  }
}


/* Process Steps */
.process{
    padding-top: 20px;
    padding-bottom: 100px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

.process-step {
    position: relative;
    padding: 40px;
    background: var(--bg);
    border-radius: 20px;
    border: 1px solid rgba(230, 47, 45, 0.1);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(230, 47, 45, 0.15);
    border-color: rgba(230, 47, 45, 0.3);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(230, 47, 45, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(230, 47, 45, 0.4);
}

.process h3{
    color: var(--accent-3);
}



        /* Technology Stack */
        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .tech-badge {
            padding: 16px 24px;
            background: var(--bg);
            border: 2px solid rgba(230, 47, 45, 0.2);
            border-radius: 12px;
            font-weight: 600;
            color: var(--text);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 15px;
            cursor: default;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tech-badge img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .tech-badge:hover {
            background: var(--gradient);
            color: white;
            border-color: transparent;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(230, 47, 45, 0.3);
        }

        .tech-badge:hover img {
            filter: brightness(0) invert(1);
        }

#roi-heading{
    display: flex;
    gap: 40px;
}

#roi-heading div{
    flex: 5;
}
#roi-heading img{
    width: 40%;
    height: 220px;
    box-shadow: 0px 80px 50px -50px rgba(0,0,0,0.5);
}

#roi-heading img:hover{ 
    box-shadow: 0 0 50px -5px #e8392669;
}

        /* Grid Layouts */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .card {
            background: var(--bg);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(230, 47, 45, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient);
            transform: scaleY(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: top;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(230, 47, 45, 0.15);
            border-color: rgba(230, 47, 45, 0.3);
        }

        .card:hover::before {
            transform: scaleY(1);
        }

        .card h4 {
            font-size: 22px;
            margin-top: 0;
            margin-bottom: 16px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .card p {
            font-size: 17px;
            line-height: 1.7;
            color: var(--text-light);
        }
#roi-heading + .content-with-image {
    grid-template-columns: 1fr;
}

/* Desktop: force 3 columns */
@media (min-width: 992px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


        /* FAQ Section */
        .faq-item {
            background: var(--bg);
            border: 1px solid rgba(230, 47, 45, 0.1);
            border-radius: 16px;
            margin-bottom: 16px;
            padding: 0;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item:hover {
            border-color: rgba(230, 47, 45, 0.3);
            box-shadow: 0 8px 24px rgba(230, 47, 45, 0.1);
        }

        .faq-item.active {
            border-color: rgba(230, 47, 45, 0.5);
            box-shadow: 0 12px 32px rgba(230, 47, 45, 0.15);
        }

        .faq-question {
            padding: 28px 32px;
            font-weight: 700;
            font-size: 19px;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-question::after {
            content: '+';
            font-size: 28px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 300;
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 20px;
        }

        .faq-item.active .faq-question::after {
            content: '−';
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 32px 32px 32px;
            color: var(--text-light);
            line-height: 1.8;
            font-size: 17px;
        }

        /* Pricing Table */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .pricing-card {
            background: var(--bg);
            border: 2px solid rgba(230, 47, 45, 0.1);
            border-radius: 24px;
            padding: 48px 40px;
            text-align: left;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .pricing-card.featured {
            border-width: 2px;
            border-color: rgba(230, 47, 45, 0.4);
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(230, 47, 45, 0.2);
        }

        .pricing-card.featured::before {
            transform: scaleX(1);
        }

        .pricing-card:hover {
            border-color: rgba(230, 47, 45, 0.5);
            transform: translateY(-8px);
            box-shadow: 0 24px 72px rgba(230, 47, 45, 0.2);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .pricing-card:hover::before {
            transform: scaleX(1);
        }

        /* Blog Links */
        .blog-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 50px;
        }

        .blog-link {
            background: var(--bg);
            padding: 32px;
            border: 1px solid rgba(230, 47, 45, 0.1);
            border-radius: 16px;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
            position: relative;
            overflow: hidden;
        }

        .blog-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient);
            transform: scaleY(0);
            transition: transform 0.3s;
        }

        .blog-link:hover {
            border-color: rgba(230, 47, 45, 0.4);
            transform: translateX(8px);
            box-shadow: 0 12px 32px rgba(230, 47, 45, 0.15);
        }

        .blog-link:hover::before {
            transform: scaleY(1);
        }

        .blog-link h4 {
            margin-top: 0;
            margin-bottom: 12px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .blog-link p {
            color: var(--text-light);
            font-size: 16px;
            margin-bottom: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                padding: 60px 0 40px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 18px;
            }

            .container {
                padding: 0 20px;
            }

            h2 {
                font-size: 28px;
            }

            h3 {
                font-size: 24px;
            }

            section .container {
                padding-top: 60px;
                padding-bottom: 60px;
            }

            body {
                font-size: 16px;
            }

            p {
                font-size: 16px;
            }

            .content-with-image {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        /* Service List Styles */
        .service-list {
            list-style: none;
            padding-left: 0;
            margin-top: 20px;
        }

        .service-list li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            color: var(--text);
            font-size: 17px;
            line-height: 1.7;
        }

        .service-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            width: 24px;
            height: 24px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            line-height: 1;
            padding-top: 2px;
        }

        /* Two Column Layout for Images */
        .content-with-image {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin: 60px 0;
        }

        @media (max-width: 992px) {
            .content-with-image {
                grid-template-columns: 1fr;
                gap: 40px;
                margin: 40px 0;
            }
        }   


