 li::marker {
    color: var(--color);
}

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --color: #ed1943;
    --black: #161616;
    --gray: rgb(206, 205, 205);
    --light-gray: rgb(227, 227, 227);
    --light: rgb(223, 255, 255);
    --white: #ffffff;
    --blue: rgb(0, 81, 255);
    --sky: rgb(74, 204, 255);
    --green: green;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: myFont;
    scroll-behavior: smooth !important;
    transition: 0.5s all linear;
}

@font-face {
    font-family: myFont;
    src: url(../fonts/manrope-medium.otf);

}


::selection {
    background-color: var(--color);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(0, 0, 0);
    /* background: linear-gradient(222deg, rgba(0, 0, 0, 1) 14%, rgba(237, 25, 67, 1) 100%); */
}

html {
    scroll-behavior: smooth;
}
 

.navbar {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2%;
    position: sticky;
    top: 0;
    z-index: 99;
}


.nav-background {
    position: fixed !important;
    top: 0;
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 5;
}

.nav-background .social-links {
    background-color: var(--light-gray);
}
 
 
 .nav-brand {
    max-width: 80px;
    min-width: 80px;
    height: 70px;
    position: relative;
}

.nav-brand img {
    width: 200% !important;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: contain;
}

.nav-opacity {
    opacity: 0 !important;
}

.png-red {
    opacity: 0;
}

.png-white {
    opacity: 1;
}

.nav-menus {
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-social-icons {
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: var(--white);
    border-radius: 50%;
    -webkit-animation: slide 1s infinite ease-in-out;

}

.nav-social-icons a:hover {
    background-color: var(--color);

}

.nav-social-icons a:hover i {
    color: var(--white) !important;
    scale: 1.2;
}

.nav-social-icons a i {
    font-size: 20px;
    color: var(--color);

}

.nav-social-icons a:nth-child(1) i {
    font-size: 17px;
}

.nav-social-icons a:nth-child(4) i {
    font-size: 17px;
}

@keyframes slide {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

.nav-buttons {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-buttons a {
    width: auto;
    font-size: 11px;
    padding: 3% 7%;
    border-radius: 20px;
    background-color: var(--color);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.nav-buttons a:hover {
    color: var(--color);
    background-color: var(--white);
    letter-spacing: 0.5px;
}

.nav-buttons a:nth-child(2) {
    background-color: var(--white);
    color: var(--color);
    text-decoration: none;
    font-weight: 700;

}

.nav-buttons a:nth-child(2):hover {
    background-color: var(--color);
    color: var(--white);
}

.hambrger {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    border: none;
    flex-direction: column;
    align-items: flex-end;
    padding: 2%;
    justify-content: center;
    gap: 5px;
}

.hambrger span {
    width: 25px;
    height: 2.5px;
    border: 1px solid var(--black);
    background-color: var(--black);
}

.hambrger span:nth-child(2) {
    width: 20px;
}


.nav-background .hambrger {
    background-color: var(--light-gray);
}


.nav-background .nav-buttons a:nth-child(2) {
    background-color: var(--color);
    color: var(--white);
    font-weight: 900;
}


.nav-background .hambrger .t-ham {
    background-color: var(--color);
    border: 1px solid var(--color);
}
 


.header-menus {
    width: 100%;
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 100%;
    transition: 0.5s;
    overflow-y: scroll;
    z-index: 1000;
}

.header-active {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    transition: 0.55s;
    padding: 1% 2%;
}

.menus-close {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 1%;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--black);
}

.menus-close button {
    padding: 1% 3%;
    background-color: var(--color);
    border: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    border-radius: 20px;
}

.load-calculation {
    margin-bottom: 5%;
    height: auto;
}

.load-questions-are {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 5%;

}

.load-questions-are .load-buttons {
    width: 25%;
    background-color: var(--white);
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.load-questions-are .load-buttons button {
    width: 100%;
    padding: 5%;
    margin: 1%;
    background: white;
    border: 1px solid var(--light);
    font-size: 15px;
    font-weight: 900;
    text-align: justify;
}

.load-questions-are .load-buttons button i {
    margin-right: 10px;
    color: var(--color);
}


/* .load-questions-are .load-buttons button:focus{
   
} */

/* .load-questions-are .load-buttons button:active{
    border-left: 4px solid var(--primary);
    transition: 0s;
    background-color: var(--light);
} */

.load-questions-are .load-calculate-content {
    width: 70%;
    height: auto;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.load-questions-are .load-calculate-content #load1,
.load-questions-are .load-calculate-content #load5 {
    display: none;
}

.load-questions-are .load-calculate-content #load2 {
    display: flex;
    height: 100%;
    position: absolute;
    z-index: 10;
    overflow-y: scroll !important;
}

.load-questions-are .load-calculate-content .load-box-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    overflow-y: scroll;
    scroll-behavior: smooth;
    z-index: 3;
}

.load-questions-are .load-calculate-content .load-calculate-boxs {
    width: 30%;
    height: auto;
    padding: 1%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 1%;
    background-color: var(--white);
    margin-bottom: 4px;
}

.load-questions-are .load-calculate-content .load-calculate-boxs ul {
    padding-left: 0;
    list-style-type: none;
}

.load-questions-are .load-calculate-content .load-calculate-boxs h5 {
    color: var(--color);
    font-weight: 900;
}

.load-questions-are .load-calculate-content .load-calculate-boxs ul li a {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
}

.load-questions-are .load-calculate-content .load-calculate-box .load-questions-are .load-calculate-content .load-calculate-boxs .load-boxs-content {
    width: 47%;
}

.load-questions-are .load-calculate-content .load-calculate-boxs .load-boxs-content span {
    font-size: 11px;
    font-weight: 700;
}

.load-questions-are .load-calculate-content .load-calculate-boxs .wrapper {
    width: 47%;
    height: 50px;
    box-shadow: none;
    background-color: var(--white);
    cursor: pointer;
}

.accordion-collapse .load-calculate-boxs ul {
    list-style-type: none;
    padding-left: 0;
}

.accordion-collapse .load-calculate-boxs h5 {
    color: var(--color);
    font-weight: 700;
}

.accordion-collapse .load-calculate-boxs ul li a {
    color: var(--black);
    font-weight: 700;
}

.pro-active {
    border-left: 4px solid var(--color) !important;
    transition: 0s;
    background-color: var(--light-gray) !important;
}

.accordion-item a {
    text-decoration: none;
}

.menus-lists {

    overflow-y: scroll !important;
    height: 100vh !important;
}



.mobile-links {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: auto;
    z-index: 3;
    background-color: var(--white);
    border-radius: 15px 0 0 15px;
    padding: 1%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: translate(0%, -50%);
}

.mobile-links a {
    margin-bottom: 10px;
}

.nav-social-icons a:nth-child(1):hover {
    background-color: var(--blue);
    color: var(--white);
}

.nav-social-icons a:nth-child(2):hover {
    background-color: var(--green);
    color: var(--white);
}

.nav-social-icons a:nth-child(3):hover {
    background-color: var(--sky);
    color: var(--white);
}

.nav-social-icons a:nth-child(4):hover {
    background-color: var(--color);
    color: var(--white);
}

.header-bottom {
    width: 100%;
    height: 20vh;
    position: absolute;
    background-color: var(--black);
    left: 0;
    bottom: 0;
    animation: wave 4s ease-in-out infinite;
    z-index: 0;
}

.load-questions-are .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    width: 100%;
    height: 100%;
    padding: 5%;
    border: none !important;
    text-align: justify;
    background: var(--white);
    border-radius: 0px !important;
    color: black !important;
}

.load-questions-are i {
    color: var(--color);
}

.load-questions-are .pro-active {
    border-left: 5px solid var(--color) !important;
}


@keyframes wave {

    0%,
    100% {
        filter: drop-shadow(0 0 100px var(--color));
        clip-path: polygon(0% 50%, 16% 44%, 38% 42%, 59% 45%, 75% 48%, 89% 47%, 100% 39%, 100% 100%, 0% 100%);
    }

    50% {
        filter: drop-shadow(0 0 100px var(--color));
        clip-path: polygon(0 41%, 20% 51%, 37% 57%, 54% 58%, 66% 52%, 78% 41%, 100% 26%, 100% 100%, 0% 100%);
    }
}



/* header */


   .rockfield-branding{
          
      background: #ed1943; /* solid red background */
      color: white;
   }



    .branding-section {
     padding: 80px;

    }

    /* Number & divider */
    .number {
      font-size: 50px;
      font-weight: 700;
    }
    .divider {
      font-size: 28px;
      margin: 0 8px;
    }

    /* Titles */
    .sub-title {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 5px;
    }
    .branding-title {
      font-size: 50px;
      font-weight: 700;
      line-height: 1.2;
    }

    /* Description */
    .description {
      font-size: 16px;
      margin-top: 15px;
      line-height: 1.6;
      max-width: 480px;
    }

    /* Button */
    .btn-custom {
      background: white;
      border: none;
      color: black;
      font-weight: 500;
      padding: 12px 28px;
      margin-top: 25px;
      transition: 0.3s;
    }
    .btn-custom:hover {
      background: #ddd;
    }

    /* Image */
    .house-img {
      max-width: 350px;
      width: 100%;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .branding-section {
        padding: 50px 20px;
        text-align: center;
      }
      .branding-title {
        font-size: 36px;
      }
      .number {
        font-size: 40px;
      }
      .house-img {
        margin-top: 30px;
      }
    }
    


 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            /* background: linear-gradient(135deg, #000, #ed1943); */
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid #ed1943;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.1s ease;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 2rem;
            border-bottom: 1px solid rgba(220, 20, 60, 0.1);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 300;
            color:  #ed1943;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #DC143C;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #DC143C;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, #000, #d2042d);
            overflow: hidden;
        }

        .hero-container {
         
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 4rem;
        }

        .hero-content {
            z-index: 2;
        }

        .project-number {
            font-size: 1rem;
            color: #666;
            margin-bottom: 1rem;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 100;
            color: #fff;
            line-height: 0.9;
            margin-bottom: 2rem;
            letter-spacing: -2px;
        }

        .hero-title .highlight {
            color:  #ed1943;
            font-weight: 300;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: #999;
            margin-bottom: 3rem;
            max-width: 500px;
            font-weight: 300;
            line-height: 1.8;
        }

        .cta-container {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: transparent;
            color: #fff;
            padding: 1rem 2rem;
            text-decoration: none;
            border: 1px solid #333;
            font-weight: 300;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
              color: floralwhite;
            background: #ed1943;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            color: floralwhite;
            background: #ed1943;
            transition: left 0.4s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }


        .hero-visual {
            position: relative;
            width: 400px;
            height: 400px;
        }

        .floating-elements {
            position: absolute;
            inset: 0;
        }

        .brand-sphere {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #ed1943 0%, #fff 100%);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: bolder;
            color: #000;
            letter-spacing: 2px;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 40px 80px rgba(220, 20, 60, 0.3);
            color: floralwhite;

          
        }

        .orbit-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 1px solid rgba(220, 20, 60, 0.3);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        .orbit-ring:nth-child(1) {
            width: 350px;
            height: 350px;
        }

        .orbit-ring:nth-child(2) {
            width: 420px;
            height: 420px;
            animation-duration: 30s;
            animation-direction: reverse;
        }

        .orbit-dot {
            width: 8px;
            height: 8px;
            background: #ed1943;
            border-radius: 50%;
            position: absolute;
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Project Showcase */
        .showcase {
            padding: 8rem 2rem;
            background: #fff;
        }

        .showcase-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: end;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 6vw, 6rem);
            font-weight: 100;
            color: #000;
            line-height: 0.9;
            letter-spacing: -1px;
        }

        .section-nav {
            display: flex;
            gap: 1rem;
        }

        .nav-arrow {
            width: 50px;
            height: 50px;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-arrow:hover {
            border-color: #ed1943;
            background: #ed1943;
            color: #fff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 4rem;
        }

        .service-item {
            position: relative;
            padding: 3rem 0;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .service-item:hover {
            transform: translateY(-10px);
        }

        .service-number {
            font-size: 0.8rem;
            color: #999;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .service-title {
            font-size: 2rem;
            font-weight: 300;
            color: #000;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .service-desc {
         
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Testimonials */
        .testimonials {
            padding: 8rem 2rem;
            background: #000;
            color: #fff;
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 4rem;
            margin-top: 6rem;
        }

        .testimonial-card {
            position: relative;
            padding: 3rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(220, 20, 60, 0.1);
            transition: all 0.4s ease;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -1rem;
            left: 2rem;
            font-size: 6rem;
            color: #ed1943;
            font-weight: 100;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            border-color: rgba(220, 20, 60, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .testimonial-author {
            color: #ed1943;
            font-weight: 300;
            letter-spacing: 1px;
        }

        /* FAQ Section */
        .faq {
            padding: 8rem 2rem;
            background: #fff;
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-list {
            margin-top: 2rem;
        }

        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 2rem 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 300;
            color: #000;
            letter-spacing: -0.5px;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: #ed1943;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            color: #666;
            font-weight: 300;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-top: 2rem;
        }

        

/* ///////////////////Footer //////////////////////// */

footer {
    width: 100%;
    height: auto;
    display: flex;
    padding: 2%;
    justify-content: space-evenly;

}

footer ul {
    padding: 0;
}

footer ul li {
    list-style: none;
}

footer .branch li {
    margin-bottom: 5%;
}

footer .branch li h6 {
    color: #111;
    border-bottom: 1px solid #333;
}

footer .footer-boxes {
    width: 20%;
    height: auto;
}

footer .footer-boxes .footer-first {
    position: relative;
}

footer .footer-boxes .footer-first h5 {
    color: var(--color);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 800;

}


footer .footer-boxes .footer-first ul li a {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    text-decoration: dotted;
    color:#222;
    
}

footer .footer-boxes .footer-first .footer-social-link a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    text-decoration: dotted;
    color: var(--light);
    margin-right: 20px;
}

footer .footer-boxes .footer-first .footer-social-link a:hover {

    color: var(--color);
}


footer .footer-boxes .footer-first ul li a:hover {
    color: var(--color);
}

footer .footer-boxes .footer-first img {
    width: 60%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -0%);
    margin-top: 20px;
    margin-bottom: 20px;
}

/*////////// <!-- After footer start -->/////////////////////// */

.after-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    padding: 0.5%;
}

.after-footer p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    /* font-weight: 700; */
    color: #fff !important;

}


.after-footer p a {
    text-decoration: none;
    color: #fff !important;
    font-weight: 900 !important;
    letter-spacing: 1px;
     font-size: 16px !important;

}

.after-footer p a:hover {
    color: var(--blue);
}
.w{
    color: #fff !important;
}


        /* Animations */
        @keyframes float {
            0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
            50% { transform: translate(-50%, -50%) translateY(-20px); }
        }

        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 1rem;
            }

            .nav-links {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            padding: 0 1rem;

            }

            .hero-visual {
                width: 250px;
                height: 250px;
                margin: 0 auto;
            }

            .brand-sphere {
                width: 200px;
                height: 200px;
                font-size: 1rem;
                color: #eee;
            }

            

            .orbit-ring:nth-child(1) {
                width: 250px;
                height: 250px;
            }

            .orbit-ring:nth-child(2) {
                width: 300px;
                height: 300px;
            }

            .section-header {
                flex-direction: column;
                align-items: start;
                gap: 2rem;
            }

            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-item {
                padding: 2rem 0;
            }

            .testimonial-card {
                padding: 2rem;
            }
        }



       .service-icon {
    font-size: 2.2rem;
    color: #ed1943; /* highlight color */
    margin-bottom: 10px;
    display: block;
  }
  .service-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  }

  /* Section Styling */
.seo-pricing {
  background: #fff;
  padding: 60px 20px;
}

/* Top Button */
.btn-top {
  display: inline-block;
  background:  #ed1943; /* teal green */
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-top:hover {
  background: #ed1943;
}

/* Heading */
.seo-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
.seo-title span {
  color:  #ed1943;
  border-bottom: 3px solid #ed1943;
  padding-bottom: 2px;
}

/* Paragraph */
.seo-desc {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .seo-title {
    font-size: 1.6rem;
  }
  .seo-desc {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  .btn-top {
    font-size: 13px;
    padding: 8px 15px;
  }
}

      .testimonials {
            padding: 3rem 1rem;
            background: #000;
            color: #fff;
        }



/* Fade-in + Slide-up Animation */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to section */
.seo-pricing {
  animation: fadeSlideUp 1.2s ease-in-out forwards;
  opacity: 0; /* Start hidden */
}

/* Animate children with delay for nice staggered effect */
.seo-pricing .btn-top {
  animation: fadeSlideUp 1s ease-in-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.seo-pricing .seo-title {
  animation: fadeSlideUp 1s ease-in-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.seo-pricing .seo-desc {
  animation: fadeSlideUp 1s ease-in-out forwards;
  animation-delay: 0.9s;
  opacity: 0;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #f5b7b1; /* lighter cherry line */
}
.timeline-step {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}
.timeline-step:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}
.timeline-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 3px solid #ed1943; /* cherry red */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin: 0 20px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}
.timeline-content {
  flex: 1;
  padding: 1rem;
  background: #fff;
  border-left: 4px solid  #ed1943; /* cherry highlight */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.timeline-step:nth-child(odd) .timeline-content {
  margin-right: 90px;
}
.timeline-step:nth-child(even) .timeline-content {
  margin-left: 90px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}








.branding-card {
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  background: #fff;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.08);
}
.branding-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 25px rgba(220, 20, 60, 0.25);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ed1943, #ed1943);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto;
  box-shadow: 0px 5px 15px rgba(220, 20, 60, 0.3);
  transition: all 0.3s ease-in-out;
}
.branding-card:hover .icon-wrapper {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0px 8px 20px rgba(220, 20, 60, 0.5);
}


.brand-title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #f0edee, #f3f2f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  left: 19px;
}

.brand-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60%;
  height: 4px;
  background: #ed1943;
  border-radius: 2px;
}


.developed{
    color: floralwhite;
}







  
   

/* header */








@media screen and (max-width:991px) {
    .nav-menus {
        justify-content: flex-end;
    }

    .nav-menus .nav-social-icons {
        display: none;
    }

    .nav-buttons {
        width: 100%;
        justify-content: flex-start;
        gap: 30px;
    }

    .home-services-section .services-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
    }

    .services-content .services-content-boxs {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .services-content {
        width: 100%;
        height: auto;
    }


    .services-boxs-content {
        width: 30%;
        height: 150px;
        background-color: var(--white);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        margin-bottom: 3%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        text-align: center;
        border-right: 3px solid var(--color);
        padding: 2%;

    }

    .services-carousel {
        width: 100%;
        height: 450px;
        overflow: hidden;
    }



}



.no-style-link {
  text-decoration: none !important;  /* removes underline */
  border: none !important;          /* ensures no border */
  outline: none !important;         /* removes focus outline */
}

.no-style-link:hover {
  text-decoration: underline; /* optional hover effect */
}


.no-style-links {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  display: inline;  /* ensures no forced break */
  white-space: nowrap; /* optional: prevents breaking between words */
}


/* Remove space between accordion items */
.accordion-item {
  border: none;          /* remove default border */
  margin: 0 !important;  /* remove margin */
  border-bottom: 1px solid #ddd; /* keep only a thin separator */
}

/* Remove extra spacing on accordion buttons */
.accordion-button {
  border-radius: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  padding: 12px 16px; /* adjust padding for compact look */
}

/* Remove background highlight gap when opened */
.accordion-button:not(.collapsed) {
  background-color: #f8f9fa; /* subtle background */
  color: #000; /* text color */
  box-shadow: none !important;
}


.text-branch{
    text-transform: uppercase;
}






@media screen and (max-width: 660px) {
    .sm-js {
        text-align: justify !important;
    }

}









@media screen and (max-width:320px) {
        /* --------------------------------------footer section -------------------------------------- */

        footer {
            width: 100%;
            display: flex;
            flex-direction: column-reverse;
            justify-content: space-around;
            height: auto;
            padding: 2%;
        }
    
    
        footer .footer-boxes {
            width: 100%;
            height: auto;
        }
}

@media screen and (min-width:321px) and (max-width:425px) {
       /* --------------------------------------footer section -------------------------------------- */

       footer {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-around;
        height: auto;
        padding: 2%;
    }


    footer .footer-boxes {
        width: 100%;
        height: auto;
    }


    .list-out-lists ul li {
        width: 47%;
        list-style-type: none;
        margin-bottom: 2%;
        border: 1px solid var(--color);
        padding: 1%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
}

@media screen and (min-width:426px) and (max-width:600px) {
    
    /* --------------------------------------footer section -------------------------------------- */

    footer {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-around;
        height: auto;
        padding: 2%;
    }


    footer .footer-boxes {
        width: 100%;
        height: auto;
    }

    .list-out-lists ul li {
        width: 30%;
        list-style-type: none;
        margin-bottom: 2%;
        border: 1px solid var(--color);
        padding: 1%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
}

@media screen and (min-width:601px) and (max-width:768px) {
        /* --------------------------------------footer section -------------------------------------- */

        footer {
            width: 100%;
            display: flex;
            flex-direction: column-reverse;
            justify-content: space-around;
            height: auto;
            padding: 2%;
        }
    
    
        footer .footer-boxes {
            width: 100%;
            height: auto;
        }
}














