     /* <!-- navbar heading**************************************** --> */

        /* ===== Reset & Base Styles ===== */
        :root {
            --primaryn: #FF3F33;
            --primary-lightn: #FF9A7B;
            --darkn: #2D3748;
            --lightn: #F7FAFC;
            --transitionn: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --shadown: 0 4px 20px rgba(0, 0, 0, 0.08);
            --nav-heightn: 80px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html{
          scroll-behavior: smooth;
        }

        body{
          padding: 0;
          margin: 0;
          overflow-x: hidden;
        
         
        }

        .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffffff 0%, #ffffffff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-in-out;
}

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #222;
    animation: logoFade 1.5s ease-in-out infinite alternate;
}

.preloader-logo span {
    color: #ff1100ff;
    /* text-shadow: 0 0 10px rgba(255, 63, 51, 0.5); */
}

.k-logo {
    width: 100%;
    margin-bottom: 1rem;
    animation: logoPulse 2s ease-in-out infinite;
}

.preloader-spinner {
    margin: 0 auto;
}

.circle-container {
    width: 140px;
    height: 140px;
    animation: pulsepre 2s ease-in-out infinite;
    margin-top: 1.5rem;
    position: relative;
}
.hkh{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    
}

.circle {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: rotatepre 12s linear infinite;
}

.circle-container circle.black {
    fill: none;
    stroke: black;
    stroke-width: 5;
    stroke-linejoin: round;
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    animation: drawpre 1.8s ease-in-out infinite;
    /* filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.6)); */
}

.circle-container circle.red {
    fill: none;
    stroke: red;
    stroke-width: 4;
    stroke-linejoin: round;
    stroke-dasharray: 20;
    stroke-dashoffset: 280;
    animation: drawpre 1.8s ease-in-out infinite 0.3s;
    /* filter: drop-shadow(0 0 12px rgba(255, 63, 51, 0.6)); */
}

@keyframes drawpre {
    0% {
        stroke-dashoffset: 320;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes pulsepre {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes rotatepre {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes logoFade {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-5px) scale(1.02);
        opacity: 1;
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Hide preloader when loaded */
.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}
      
   
          /* ===== Premium Navbar Styles ===== */
          .navbar {
            font-family: 'Poppins', sans-serif;
            
            color: var(--darkn);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--nav-heightn);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadown);
            z-index: 1000;
            transition: var(--transitionn);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .navbar.scrolled {
            height: 70px;
            box-shadow: 0 8px 30px rgba(254, 120, 83, 0.15);
        }
        
        .nav_container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Logo/Brand */
        .navbar-brand {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-size: 28px;
            font-weight: 700;
            color: var(--darkn);
            transition: var(--transitionn);
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
        }
        
        .navbar-brand img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background-repeat: no-repeat;
            margin-right: 12px;
            transition: var(--transitionn);
        }
        
        .navbar.scrolled .navbar-brand img {
           width: 80%;
            height: 80%;
        }
        
       
        
        /* Menu Toggle */
        .navbar-toggler {
            display: none;
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            cursor: pointer;
            position: relative;
            z-index: 1001;
            padding: 0;
        }
        
        .navbar-toggler:focus {
            outline: none;
        }
        
        .hamburger {
            position: absolute;
            width: 24px;
            height: 2px;
            background: var(--darkn);
            left: 8px;
            top: 19px;
            transition: var(--transitionn);
        }
        
        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2px;
            background: var(--darkn);
            left: 0;
            transition: var(--transitionn);
        }
        
        .hamburger::before {
            top: -8px;
        }
        
        .hamburger::after {
            top: 8px;
        }
        
        .navbar-toggler.active_nav .hamburger {
            background: transparent;
        }
        
        .navbar-toggler.active_nav .hamburger::before {
            transform: rotate(45deg);
            top: 0;
            background: var(--primaryn);
        }
        
        .navbar-toggler.active_nav .hamburger::after {
            transform: rotate(-45deg);
            top: 0;
            background: var(--primaryn);
        }
        
        /* Navigation Menu */
        .navbar-collapse {
            display: flex;
            align-items: center;
            height: 100%;
        }
        
        .navbar-nav {
            display: flex;
            list-style: none;
            margin-right: 30px;
        }
        
        .nav-item {
            position: relative;
            margin: 0 12px;
        }
        
        .nav-link {
            position: relative;
            color: var(--darkn);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 8px 0;
            transition: var(--transitionn);
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, var(--primaryn), var(--primary-lightn));
            transition: var(--transitionn);
        }
        
        .nav-link:hover::before,
        .nav-link.active_nav::before {
            width: 100%;
        }
        
        .nav-link:hover,
        .nav-link.active_nav {
            color: var(--primaryn);
        }
        
        /* CTA Button */
        .nav-cta {
            position: relative;
            overflow: hidden;
            border-radius: 50px;
            padding: 0 3px;
          }
            .nav-cta:hover {
            background-color: black;
            color: white;

          }
          .nav-cta a{
         text-decoration:none;
        }
        
        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primaryn), var(--primary-lightn));
            border-radius: 50px;
            z-index: -1;
            transition: var(--transitionn);
        }
        
        .btn-primaryna {
            display: inline-block;
            background: transparent;
            color: white;
            padding: 10px 28px;
            font-size: 15px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            position: relative;
            z-index: 1;
            transition: var(--transitionn);
        }
        
        .btn-primaryna:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(254, 120, 83, 0.3);
        }
        
        .btn-primaryna:active_nav {
            transform: translateY(-1px);
        }
        
        /* Mobile Menu Styles */
        @media (max-width: 992px) {
            .nav_container {
                padding: 0 25px;
            }
            
            .navbar-toggler {
                display: block;
            }
            
            .navbar-collapse {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 400px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                padding: 100px 40px 40px;
                transition: right 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
                z-index: 1000;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            }
            
            .navbar-collapse.show_nav {
                right: 0;
            }
            
            .navbar-nav {
                flex-direction: column;
                width: 100%;
                margin-right: 0;
                /* margin-bottom: 40px; */
            }
            
            .nav-item {
                margin: 0 0 5px 0;
                width: 100%;
                opacity: 0;
                transform: translateX(20px);
                transition: all 0.4s ease;
            }
            
            .navbar-collapse.show_nav .nav-item {
                opacity: 1;
                transform: translateX(0);
            }
            
            .navbar-collapse.show_nav .nav-item:nth-child(1) { transition-delay: 0.1s; }
            .navbar-collapse.show_nav .nav-item:nth-child(2) { transition-delay: 0.15s; }
            .navbar-collapse.show_nav .nav-item:nth-child(3) { transition-delay: 0.2s; }
            .navbar-collapse.show_nav .nav-item:nth-child(4) { transition-delay: 0.25s; }
            .navbar-collapse.show_nav .nav-item:nth-child(5) { transition-delay: 0.3s; }
            .navbar-collapse.show_nav .nav-item:nth-child(6) { transition-delay: 0.35s; }
            .navbar-collapse.show_nav .nav-item:nth-child(7) { transition-delay: 0.4s; }
            .navbar-collapse.show_nav .nav-item:nth-child(8) { transition-delay: 0.45s; }
            
            .nav-link {
                font-size: 18px;
                padding: 10px 0;
                display: block;
            }
            
            .nav-cta {
                width: 100%;
                opacity: 0;
                transform: translateX(20px);
                transition: all 0.4s ease 0.5s;
            }
            
            .navbar-collapse.show_nav .nav-cta {
                opacity: 1;
                transform: translateX(0);
                text-align: center;
            }
            
            /* overlayna */
            .overlayna {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.6);
                backdrop-filter: blur(5px);
                -webkit-backdrop-filter: blur(5px);
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                transition: var(--transitionn);
            }
            
            .overlayna.show_nav {
                opacity: 1;
                visibility: visible;
            }
        }
  @media (max-width: 768px) {
        .preloader-logo {
           margin-bottom: 0px;
         }
         .k-logo { 
          max-width: 70%;
           margin-bottom: 0px;
         }
         .preloader-logo {
          font-size: 3rem;
  }
}
  @media (max-width: 480px) {
        .preloader-logo {
           margin-bottom: 0px;
         }
       
         .preloader-logo {
               font-size: 2.5rem;
  }
  .circle-container{
    margin-top: 0px;
}
.circle-container circle.black {
  r:30;
}

.circle-container circle.red {
  r:20;

  }
  .circle-container {
    width: 120px;
    height: 120px;
  }
}
        /* ===== Scroll Indicator ===== */
        .scroll-indicatorna {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primaryn), var(--primary-lightn));
            width: 0;
            transition: width 0.3s ease;
        }
     /* <!-- navbar heading**************************************** --> */

       /* <!-- fisrt landing section******************************************** --> */

        /* Reset and Base Styles */
      
        :root {
            --primary-colorla: #FF3F33;
            --primary-darkla: #e6392e;
            --primary-lightla: #ff6f66;
            --text-colorla: #333;
            --light-textla: #666;
            --whitela: #fff;
            --light-bgla: #f9f9f9;
            --shadowla: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transitionla: all 0.3s ease;
            --section-spacingla: 100px;
        }

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 400;
            src: local('Poppins Regular'), url(https://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrJJfedw.woff2) format('woff2');
        }

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 600;
            src: local('Poppins SemiBold'), url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
        }

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 700;
            src: local('Poppins Bold'), url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
        }

        /* Hero Section */
        .hero-sectionll {
            margin-top: 80px;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            overflow: hidden;
            background: linear-gradient(135deg, var(--light-bgla) 0%, #f0f0f0 100%);
            color: var(--text-colorla);
            line-height: 1.6;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

     .hero-shapell {
    display: flex;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateX(0%);
    flex-direction: row;
  }


        .hero-sectionll.activella .hero-shapell {
            transform: translateX(10%);
        }

        .containerll {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .rowla {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .col-lg-7lla {
            width: 50.3333%;
            padding: 0 15px;
        }

        .col-lg-5lla {
            width: 49.6667%;
            padding: 0 15px;
            position: relative;
        }

        .hero-contentlla {
            max-width: 600px;
            position: relative;
        }

        .hero-contentlla h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: black;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }

        .hero-contentlla p {
            font-size: 1.1rem;
            color: #0d121d;
            margin-bottom: 2rem;
            max-width: 80%;
        }

        .hero-btnslla {
            display: flex;
            gap: 15px;
            margin-top: 2rem;
        }
          @keyframes infinite-rotate {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .rotate-smooth {
      animation: infinite-rotate 20s linear infinite;
      display: inline-block;
    }

        .btnlla {
            display: inline-block;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            border: 2px solid transparent;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            transition: var(--transitionla);
        }

        .btn-primarylla {
            background-color: var(--primary-colorla);
            color: var(--whitela);
        }

        .btn-primarylla:hover {
            background-color: var(--primary-darkla);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 63, 51, 0.3);
        }

        .btn-secondarylla {
            background-color: var(--whitela);
            color: var(--primary-colorla);
            border-color: var(--primary-colorla);
        }

        .btn-secondarylla:hover {
            background-color: var(--primary-colorla);
            color: var(--whitela);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 63, 51, 0.3);
        }

        /* Hero Image */
        .hero-imagella {
            position: relative;
            z-index: 3;
            /* animation: floatll 6s ease-in-out infinite;
            transform: translateX(50px); */
       
            transition: all 0.8s ease 0.6s;
        }

        .hero-sectionll.activella .hero-imagella {
            transform: translateX(0);
            opacity: 1;
        }

        .hero-imagella img {
            max-width: 700px;
            height: auto;
            display: block;
            /* filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2)); */
        }

        /* Floating Elements */
        .floating-elementslla {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 0;
        }

        .floating-circlella {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 63, 51, 0.1);
            animation: floatll 15s ease-in-out infinite;

        }

        .circle-1lla {
            border-radius: 0;
            width: 180px;
            height: 150px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
             aspect-ratio: 1/cos(30deg);
           clip-path: polygon(50% 0,100% 100%,0 100%);
        }

        .circle-2lla {
            width: 100px;
            height: 100px;
            bottom: 15%;
            right: 10%;
            animation-delay: 2s;
        }

        /* HTML: <div class="triangle"></div> */
/* .triangle {
  width: 180px;
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(50% 0,100% 100%,0 100%);
  background: linear-gradient(45deg,#FA6900,#C02942);
} */

        /* Stats */
        .hero-statslla {
            display: flex;
            gap: 10px;
            margin-top: 3rem;
        }

        .stat-itemlla {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.8);
            padding: 15px;
            border-radius: 12px;
            backdrop-filter: blur(5px);
            box-shadow: var(--shadowla);
            transition: var(--transitionla);
        }

        .stat-itemlla:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .stat-numberlla {
            font-size: 2.5rem;
            font-weight: 700;
            color: rgba(49, 54, 74, 0.86);
            margin-right: 10px;
            line-height: 1;
        }

        .stat-textlla {
            font-size: 0.9rem;
            color: rgb(74, 74, 74);
            max-width: 80px;
            line-height: 1.3;
        }

        /* Animated Background Elements */
        .particleslla {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .particlella {
            position: absolute;
            background-color: rgba(255, 63, 51, 0.1);
            border-radius: 50%;
            animation: floatll 15s ease-in-out infinite;
        }

        /* Scroll Indicator */
        .scroll-indicatorlla {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
        }

        .scroll-textlla {
            color: var(--whitela);
            margin-bottom: 10px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .mousella {
            width: 25px;
            height: 40px;
            border: 2px solid var(--whitela);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            padding-top: 5px;
        }

        .wheellla {
            width: 4px;
            height: 8px;
            background-color: var(--whitela);
            border-radius: 2px;
            animation: scrollla 2s ease infinite;
        }

        @keyframes scrollla {
            0% {
                transform: translateY(0);
                opacity: 1;
            }
            100% {
                transform: translateY(10px);
                opacity: 0;
            }
        }

        @keyframes floatll {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-contentlla h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .hero-shapell {
                width: 70%;
              flex-direction: column;
                
            }

            .hero-contentlla h1 {
                font-size: 2.5rem;
            }

            .stat-numberlla {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-sectionll.activella .hero-shapell {
 
         transform: translateX(.5%) !important;
           left: 0 !important;
          }
            .hero-sectionll {
                padding: 100px 5% 80px;
                min-height: auto;
                text-align: center;
            }
              .rowla {
        flex-direction: column-reverse;
        gap: 200px;
    }
            .hero-shapell {
                width: 100%;
                height: 40%;
                top: 0;
              flex-direction: column;
                
            }

            .col-lg-7lla, .col-lg-5lla {
                width: 100%;
            }

            .col-lg-5lla {
                margin-top: 50px;
            }

            .hero-contentlla {
                max-width: 100%;
            }

            .hero-contentlla p {
                max-width: 100%;
            }

            .hero-btnslla, .hero-statslla {
                justify-content: center;
            }
              .hero-contentlla h1 {
              
                color: black;
            }

            .hero-imagella img {
                max-width: 80%;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
               .rowla {
        flex-direction: column-reverse;
        gap: 100px;
    }

            .hero-shapell {
                width: 100%;
                height: 30%;
                top: 0;
               
            }
              .hero-sectionll.activella .hero-shapell {
              transform: translateX(.5%) !important;
           left: 0 !important;
          }
            
            .hero-contentlla h1 {
                font-size: 2.2rem;
                color: black;
            }

            .hero-contentlla p {
                font-size: 1rem;
            }

            .btnlla {
                padding: 12px 25px;
                font-size: 0.9rem;
            }

            .hero-btnslla {
                flex-direction: column;
                gap: 10px;
            }

            .hero-statslla {
                flex-wrap: wrap;
                gap: 20px;
            }

            .stat-itemlla {
                flex: 1 1 120px;
                justify-content: center;
                flex-direction: column;
                text-align: center;
            }

            .stat-numberlla {
                margin-right: 0;
                margin-bottom: 5px;
            }

            .stat-textlla {
                max-width: 100%;
            }
        }
          @media (max-width: 480px) {
                     .rowla {
        flex-direction: column-reverse;
        gap: 80px;
    }
  }
           @media (max-width: 380px) {
            .rowla {
                flex-direction: column-reverse;
                 gap: 50px;
            }

            .hero-shapell {
                width: 100%;
                height: 25%;
                top: 0;
               
            }
              .hero-sectionll.activella .hero-shapell {
            transform: translateX(.5%) !important;
           left: 0 !important;
          }
          
        }
   
    /* <!-- fisrt landing section******************************************** --> */

       /* <!-- second features section*********************************************** --> */

/* Base Styles */
:root {
    --primarycc: #FF3F33;
    --primary-darkcc: #e0352a;
    --primary-lightcc: #ff6f66;
    --blackcc: #121212;
    --dark-graycc: #222;
    --medium-graycc: #444;
    --light-graycc: #f5f5f5;
    --whitecc: #ffffff;
    --transitioncc: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.section-titlecc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.feature-titlecc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Section Styling */
.features-sectioncc {
    position: relative;
    padding: 0px 0 100px 0;
    background-color: var(--whitecc);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.containercc {
  
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}




   .triangle-icon {
      position: relative;
      width: 100%;
      height:150px;
      aspect-ratio: 1;
    }

    /* Outer Black Triangle */
    .triangle-icon::before {
      content: '';
      position: absolute;
      inset: 0;
    background: linear-gradient(90deg,rgba(253, 29, 29, 1) 13%, rgba(255, 255, 255, 1) 100%);
      clip-path: polygon(100% 0, 0 0, 100% 44%);
      z-index: 1;
    }

    /* Inner White Cutout (simulate border) */
    /* .triangle-icon::after {
      content: '';
      position: absolute;
      inset: 15% 15% 10% 15%;
      background: white;
      clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
      z-index: 2;
    } */

    /* Inner Red Triangle */
.inner-red {
    position: absolute;
    height: 100px;

    inset: 22%;
  background: linear-gradient(272deg,rgba(0, 0, 0, 1) 13%, rgba(255, 255, 255, 1) 100%);
    clip-path: polygon(0 0, 0 44%, 100% 0);
    z-index: 3;
       
}

/* Section Header */
.section-headercc {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-badgecc {
    display: inline-block;
    background: linear-gradient(90deg, var(--primarycc), var(--primary-darkcc));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 63, 51, 0.3);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 5;
}

.section-titlecc {
    font-size: 48px;
    line-height: 1.2;
    color: var(--blackcc);
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.title-linecc {
    display: block;
}
.new1{
    font-size: 18px;

}

.text-gradientcc {
    background: linear-gradient(90deg, var(--primarycc), var(--primary-darkcc));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-dividercc {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto;
    max-width: 300px;
}

.divider-linecc {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--medium-graycc), transparent);
    flex-grow: 1;
}

.divider-dotcc {
    width: 18px;
    height: 18px;
 border-radius: 50%;

    background: red;
    /* clip-path: polygon(50% 0%, 100% 100%, 0% 100%); */
    margin: 0 15px;
    position: relative;
}

/* HTML: <div class="triangle"></div> */


.divider-dotcc::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 5px solid var(--primarycc);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);

    /* border-radius: 50%; */
   left: -11px;
    top: -14px;
    animation: pulsecc 2s infinite;
}

@keyframes pulsecc {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.section-subtitlecc {
    font-size: 18px;
    color: var(--medium-graycc);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Features Grid */
.features-gridcc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-cardcc {
    position: relative;
    background:rgb(255, 255, 255);
    border-radius: 16px;
    overflow: hidden;
   box-shadow: 0 10px 10px rgba(0, 0, 0, 0.41), inset 0px 0px 10px 11px rgb(255 0 0);
border:none;
    transition: var(--transitioncc);
    z-index: 1;
}

.feature-cardcc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
    border-radius: 16px;
}

.feature-cardcc:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 63, 51, 0.15);
}

.feature-contentcc {
    padding: 40px;
    position: relative;
    z-index: 2;
}

.feature-icon-containercc {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.feature-icon-bgcc {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 63, 51, 0.1);
    border-radius: 50%;
    transform: scale(0.8);
    transition: var(--transitioncc);
     box-shadow:0px 0px 0px 20px rgb(255 60 46 / 86%);
}


.feature-cardcc:hover .feature-icon-bgcc {
    transform: scale(1);
    background: rgba(255, 63, 51, 0.2);
}

.feature-iconcc {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    color: var(--primarycc) !important;
    transition: var(--transitioncc) !important;
   
}

.feature-cardcc:hover .feature-iconcc {
    color: var(--primary-darkcc);
    transform: scale(1.1);
}

.feature-titlecc {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    transition: var(--transitioncc);
}

.feature-descriptioncc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-graycc);
    margin-bottom: 25px;
    text-align: center;
    transition: var(--transitioncc);
    font-weight: 300;
}

.feature-ctacc {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primarycc);
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transitioncc);
    font-family: 'Poppins', sans-serif;
}

.feature-ctacc i {
    margin-left: 8px;
    font-size: 14px;
    transition: var(--transitioncc);
}

.feature-cardcc:hover .feature-ctacc {
    opacity: 1;
    transform: translateY(0);
}

.feature-cardcc:hover .feature-ctacc:hover {
    color: var(--primary-darkcc);
}

.feature-cardcc:hover .feature-ctacc:hover i {
    transform: translateX(5px);
}

.feature-hover-effectcc {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primarycc), var(--primary-darkcc));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transitioncc);
}

.feature-cardcc:hover .feature-hover-effectcc {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-titlecc {
        font-size: 42px;
    }
    
    .features-gridcc {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .features-sectioncc {
        padding: 80px 0;
    }
    
    .section-titlecc {
        font-size: 36px;
    }
    
    .section-headercc {
        margin-bottom: 60px;
    }
    
    .feature-contentcc {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .section-titlecc {
        font-size: 32px;
    }
    
    .section-badgecc {
        font-size: 12px;
    }
    
    .section-subtitlecc {
        font-size: 16px;
    }
    
    .features-gridcc {
        grid-template-columns: 1fr;
    }
    
    .feature-icon-containercc {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .feature-iconcc {
        font-size: 28px;
    }
}

    /* <!-- second features section*********************************************** --> */

     /* <!-- about use section***************************************************** --> */
 
    :root {
      --primary-coloraa: #FF5A5F;
      --primary-lightaa: rgba(255, 90, 95, 0.1);
      --primary-darkaa: #e04a50;
      --secondary-coloraa: #00A699;
      --accent-coloraa: #FC642D;
      --dark-coloraa: #2d3436;
      --light-coloraa: #f8f9fa;
      --text-coloraa: #4a4a4a;
      --text-lightaa: #6c757d;
      --whiteaa: #ffffff;
      --shadow-smaa: 0 4px 6px rgba(0, 0, 0, 0.05);
      --shadow-mdaa: 0 10px 15px rgba(0, 0, 0, 0.1);
      --shadow-lgaa: 0 20px 25px rgba(0, 0, 0, 0.15);
      --transitionaa: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      --border-radiusaa: 16px;
      --border-radius-lgaa: 24px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--text-coloraa);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      background-color: #fafafa;
    } */

    /* ===== Section Styles ===== */
    .about-sectionaa {
      padding: 8rem 2rem;
      position: relative;
      overflow: hidden;
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--text-coloraa);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      background-color: #fafafa;
    }

    .about-containeraa {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    /* ===== Header Styles ===== */
    .about-headeraa {
      text-align: center;
      margin-bottom: 5rem;
      position: relative;
    }

    .about-subtitleaa {
      display: inline-block;
      font-size: 1rem;
      font-weight: 600;
      color: var(--primary-coloraa);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
      font-family: 'Montserrat', sans-serif;
    }

    .about-subtitleaa::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(to right, var(--primary-coloraa), var(--secondary-coloraa));
      border-radius: 3px;
      transition: width 0.3s ease;
    }

    .about-headeraa:hover .about-subtitleaa::after {
      width: 80px;
    }

    .about-titleaa {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      color: var(--dark-coloraa);
      margin-bottom: 1.5rem;
      line-height: 1.2;
      position: relative;
      font-family: 'Montserrat', sans-serif;
    }

    .about-titleaa span {
    
      color: #FF3F33;
      position: relative;
      display: inline-block;
    }

    .about-titleaa span::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(to right, #FF3F33, var(--accent-coloraa));
      border-radius: 2px;
      transform: scaleX(0.8);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .about-headeraa:hover .about-titleaa span::after {
      transform: scaleX(1);
    }

    .about-divideraa {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      max-width: 400px;
    }

    .divider-line {
      height: 2px;
      background: linear-gradient(to right, transparent, var(--primary-coloraa), transparent);
      flex: 1;
      transition: all 0.5s ease;
    }

    .about-divideraa:hover .divider-line {
      background: linear-gradient(to right, transparent, var(--accent-coloraa), var(--primary-coloraa), transparent);
    }
  
    .divider-iconaa {
      margin: 0 2rem;
      color: var(--whiteaa);
      width: 70px;
      height: 70px;
      display: flex;
        align-items: flex-end;
      justify-content: center;
      aspect-ratio: 1/cos(30deg);
      clip-path: polygon(50% 0,100% 100%,0 100%);
      background: linear-gradient(135deg, var(--primary-coloraa), var(--accent-coloraa));
      /* border-radius: 50%; */
      transition: all 0.5s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(255, 90, 95, 0.4);
    }
/* HTML: <div class="triangle"></div> */
/* .triangle {
  width: 180px;
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(50% 0,100% 100%,0 100%);
  background: linear-gradient(45deg,#FA6900,#C02942);
} */
    .divider-iconaa::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-coloraa), var(--accent-coloraa));
      z-index: -1;
    }

    .about-divideraa:hover .divider-iconaa {
      transform: rotate(15deg) scale(1.1);
      box-shadow: 0 15px 40px rgba(255, 90, 95, 0.6);
    }

    .divider-iconaa .material-icons-round {
      font-size: 32px;
      position: relative;
      z-index: 2;
    }

    /* ===== Content Grid Layout ===== */
    .about-content-gridaa {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    /* ===== Media Container ===== */
    .about-media-containeraa {
      position: relative;
      height: 100%;
      perspective: 1200px;
    }

    .media-cardaa {
      position: relative;
      /* border-radius: var(--border-radius-lgaa); */
      overflow: hidden;
      /* box-shadow: var(--shadow-lgaa); */
      /* transform: perspective(1000px) rotateY(-8deg); */
      transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
      /* height: 500px; */
      /* border: 10px solid var(--whiteaa); */
    }

    .media-cardaa:hover {
      transform: perspective(1000px) rotateY(-3deg);
      /* box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2); */
    }

    .media-imageaa {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .media-cardaa:hover .media-imageaa {
      transform: scale(1.05);
    }
 
    /* .media-overlayaa {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
      z-index: 1;
    }  */

    /* .media-corner-accentaa {
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 120px 120px 0 0;
      border-color: var(--primary-coloraa) transparent transparent transparent;
      z-index: 2;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    } */

    .media-shineaa {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
      z-index: 3;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .media-cardaa:hover .media-shineaa {
      opacity: 1;
      animation: shineaa 3s ease infinite;
    }

    @keyframes shineaa {
      0% { transform: translateX(-100%) skew(-20deg); }
      100% { transform: translateX(100%) skew(-20deg); }
    }

    .media-badgeaa {
      position: absolute;
      top: 2rem;
      right: 2rem;
      background: linear-gradient(135deg, var(--primary-coloraa), var(--accent-coloraa));
      color: var(--whiteaa);
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      box-shadow: var(--shadow-lgaa);
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 1.2;
      z-index: 2;
      font-family: 'Montserrat', sans-serif;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      transform: translateY(0) rotate(0);
    }

    .media-badgeaa:hover {
      transform: translateY(-5px) rotate(5deg);
      box-shadow: 0 20px 40px rgba(255, 90, 95, 0.5);
    }

    .media-badgeaa span {
      font-size: 0.875rem;
      font-weight: 400;
      display: block;
      letter-spacing: 1px;
    }

    .media-badgeaa strong {
      font-size: 1.75rem;
      font-weight: 800;
    }

    .stats-cardaa {
      position: absolute;
      bottom: -2rem;
      left: 2rem;
      background: var(--whiteaa);
      padding: 2rem;
      border-radius: var(--border-radiusaa);
      box-shadow: var(--shadow-lgaa);
      z-index: 2;
      width: 80%;
      border-left: 5px solid var(--primary-coloraa);
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .stats-cardaa:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(255, 90, 95, 0.3);
    }

    .stat-itemaa h3 {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      color: var(--primary-coloraa);
      margin-bottom: 0.5rem;
      font-weight: 800;
      font-family: 'Montserrat', sans-serif;
      background: linear-gradient(to right, var(--primary-coloraa), var(--accent-coloraa));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .stat-itemaa p {
      font-size: 1rem;
      color: var(--text-lightaa);
      margin: 0;
      font-weight: 500;
    }

    /* ===== Text Container ===== */
    .about-text-containeraa {
      padding-left: 2rem;
    }

    .content-titleaa {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 800;
      color: var(--dark-coloraa);
      margin-bottom: 2rem;
      line-height: 1.3;
      font-family: 'Montserrat', sans-serif;
      position: relative;
      display: inline-block;
    }

    .content-titleaa::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 0;
      width: 80px;
      height: 5px;
      background: linear-gradient(to right, var(--primary-coloraa), var(--accent-coloraa));
      border-radius: 5px;
      transition: width 0.3s ease;
    }

    .content-titleaa:hover::after {
      width: 120px;
    }

    .content-textaa p {
      font-size: 1.1rem;
      line-height: 1.9;
      color: var(--text-coloraa);
      margin-bottom: 2rem;
      position: relative;
      padding-left: 2rem;
      font-weight: 400;
    }

    .content-textaa p::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.5em;
      height: 70%;
      width: 4px;
      background: linear-gradient(to bottom, var(--primary-coloraa), var(--accent-coloraa));
      border-radius: 4px;
      transition: height 0.3s ease;
    }

    .content-textaa p:hover::before {
      height: 90%;
    }

    /* ===== Features Grid ===== */
 .features-gridaa {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
}

  .feature-cardaa {
    width: 400px;
    background: var(--whiteaa);
    padding: 1.75rem;
    border-radius: var(--border-radiusaa);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-smaa);
    position: relative;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

    .feature-cardaa::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255,90,95,0.05) 0%, rgba(0,166,153,0.02) 100%);
      z-index: 0;
    }

    .feature-cardaa:hover {
     transform: rotate(-5deg) scale(1.1) !important;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      border-color: rgba(255, 90, 95, 0.3);
    }


    .feature-iconabout {
      width: 70px;
      height: 60px;
      aspect-ratio: 1/cos(30deg);
  clip-path: polygon(50% 0,100% 100%,0 100%);
  background: linear-gradient(45deg,rgb(250, 25, 0),rgb(0, 0, 0));
      /* border-radius: 18px; */
      display: flex;
      justify-content: center;
      align-items: flex-end;
      color: white;
      padding: 0 5px 10px 5px;
      flex-shrink: 0;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      position: relative;
      z-index: 1;
    }

    .feature-cardaa:hover .feature-iconabout {
      background: linear-gradient(135deg, var(--primary-coloraa), var(--accent-coloraa));
      color: var(--whiteaa);
      transform: rotate(10deg) scale(1.1);
    }

    .icon-pulse {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 18px;
      background: var(--primary-coloraa);
      opacity: 0;
      z-index: -1;
      transition: all 0.6s ease;
    }

    .feature-cardaa:hover .icon-pulse {
      opacity: 0.2;
      transform: scale(1.8);
    }

    .feature-iconabout .material-icons-round {
      font-size: 28px;
      transition: transform 0.3s ease;
    }

    .feature-cardaa:hover .feature-iconabout .material-icons-round {
      transform: scale(1.15);
    }

    .feature-textaa {
      position: relative;
      z-index: 1;
      text-align:center;
    }

    .feature-textaa h4 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--dark-coloraa);
      margin-bottom: 0.5rem;
      font-family: 'Montserrat', sans-serif;
      transition: color 0.3s ease;
    }

    .feature-cardaa:hover .feature-textaa h4 {
      color: var(--primary-coloraa);
    }

    .feature-textaa p {
      font-size: 0.95rem;
      color: var(--text-lightaa);
      margin: 0;
      font-weight: 500;
    }

    /* ===== CTA Button ===== */
    .cta-buttonaaa {
      display: inline-flex;
      align-items: center;
      background: linear-gradient(135deg, var(--primary-coloraa), var(--accent-coloraa));
      color: var(--whiteaa);
      padding: 1.25rem 2.5rem;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 15px 30px rgba(255, 90, 95, 0.4);
      position: relative;
      overflow: hidden;
      font-family: 'Montserrat', sans-serif;
      border: none;
      cursor: pointer;
      outline: none;
      z-index: 1;
      letter-spacing: 0.5px;
    }

    .cta-buttonaaa span {
      position: relative;
      z-index: 3;
      transition: transform 0.3s ease;
    }

    .button-icon {
      margin-left: 1rem;
      position: relative;
      z-index: 3;
      transition: transform 0.3s ease;
    }

    .button-icon .material-icons-round {
      font-size: 24px;
    }

    .button-hover-effect {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-darkaa), var(--accent-coloraa));
      z-index: 1;
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
      transform: translateX(-100%);
    }

    .button-ripple {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 5px;
      height: 5px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      z-index: 2;
    }

    .cta-buttonaaa:hover {
      box-shadow: 0 20px 40px rgba(255, 90, 95, 0.5);
      transform: translateY(-3px);
    }

    .cta-buttonaaa:hover span {
      transform: translateX(8px);
    }

    .cta-buttonaaa:hover .button-icon {
      transform: translateX(15px);
    }

    .cta-buttonaaa:hover .button-hover-effect {
      transform: translateX(0);
    }

    .cta-buttonaaa:active .button-ripple {
      animation: rippleaa 0.6s ease-out;
    }

    @keyframes rippleaa {
      0% {
        width: 5px;
        height: 5px;
        opacity: 1;
      }
      100% {
        width: 400px;
        height: 400px;
        opacity: 0;
      }
    }

    .cta-buttonaaa:focus {
      outline: 2px solid var(--primary-darkaa);
      outline-offset: 4px;
    }

    /* ===== Responsive Design ===== */
    @media (max-width: 1024px) {
      .about-content-gridaa {
        gap: 3rem;
      }
      
      .about-text-containeraa {
        padding-left: 0;
      }
      
      /* .media-cardaa {
        height: 450px;
      } */
      
      .stats-cardaa {
        width: 85%;
      }
    }

    @media (max-width: 768px) {
      .about-sectionaa {
        padding: 6rem 1.5rem;
      }
      
      .about-content-gridaa {
        grid-template-columns: 1fr;
      }
      
      .media-cardaa {
        /* height: 400px; */
        transform: none;
        margin-bottom: 4rem;
      }
      
      .stats-cardaa {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 2rem;
        width: 100%;
      }
      
      .features-gridaa {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 576px){
       .features-gridaa {
        display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    }
    .feature-cardaa {
    width: 100%;
    }
  }

    @media (max-width: 480px) {
      .about-sectionaa {
        padding: 4rem 1rem;
      }
        .media-cardaa {
       
        margin-bottom: 1rem;
      }
      
      
      .about-subtitleaa {
        font-size: 0.875rem;
      }
      
      .media-badgeaa {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 1.5rem;
      }
      
      .media-badgeaa strong {
        font-size: 1.5rem;
      }
      
      .feature-cardaa {
        padding: 1.25rem;
      }
      
      .feature-iconabout {
        width: 50px;
        height: 50px;
      }
      
      .feature-iconabout .material-icons-round {
        font-size: 24px;
      }
      
      .cta-buttonaaa {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: center;
      }
    }
  
    /* <!-- about use section***************************************************** --> */


     /* <!-- our product section***************************************************** --> */

    :root {
      --primaryp: #FF3F33;
      --primary-darkp: #D63429;
      --primary-lightp: #FF6F66;
      --secondaryp: #000000;
      --secondary-lightp: #333333;
      --lightp: #FFFFFF;
      --light-bgp: #F9F9F9;
      --textp: #333333;
      --text-lightp: #777777;
      --shadow-smp: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-mdp: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-lgp: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --transitionp: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

  
    .product_model_showpp {
      background-color: var(--light-bgp);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 60px 20px;
      position: relative;
      overflow-x: hidden;
      font-family: 'Poppins', sans-serif;
      color: var(--textp);
      scroll-behavior: smooth !important;
    }
   

    /* Triangle background pattern */
    .bg-patternpp {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0;
      overflow: hidden;
      opacity: 0.2;
    }

    .bg-trianglepp {
      position: absolute;
      width: 300px;
      height: 300px;
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }

    .bg-trianglepp:nth-child(1) {
      top: -100px;
      left: -100px;
      background: var(--primaryp);
      transform: rotate(15deg);
    }

    .bg-trianglepp:nth-child(2) {
      bottom: -100px;
      right: -100px;
      background: var(--secondaryp);
      transform: rotate(195deg);
    }

    .bg-trianglepp:nth-child(3) {
      top: 20%;
      right: 5%;
      width: 150px;
      height: 150px;
      background: var(--primaryp);
      transform: rotate(45deg);
    }

    .bg-trianglepp:nth-child(4) {
      bottom: 25%;
      left: 8%;
      width: 150px;
      height: 150px;
      background: var(--secondaryp);
      transform: rotate(225deg);
    }

    .containerpp {
      width: 100%;
      max-width: 1400px;
      position: relative;
      z-index: 1;
    }

    .section-headerpp {
      text-align: center;
      margin-bottom: 70px;
      position: relative;
    }

    .section-tagpp {
      display: inline-block;
      background: var(--primaryp);
      color: var(--lightp);
      font-size: 0.85rem;
      font-weight: 600;
      padding: 6px 20px;
      border-radius: 50px;
      margin-bottom: 20px;
      letter-spacing: 1px;
      text-transform: uppercase;
      box-shadow: var(--shadow-smp);
      position: relative;
      overflow: hidden;
    }

    .section-tagpp::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: var(--transitionp);
    }

    .section-tagpp:hover::before {
      left: 100%;
    }

    .section-titlepp {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--secondaryp);
      margin-bottom: 20px;
      position: relative;
      font-family: 'Montserrat', sans-serif;
      line-height: 1.2;
    }

    .section-titlepp span {
      color: var(--primaryp);
    }

    .section-titlepp::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 5px;
      background: linear-gradient(90deg, var(--primaryp), var(--secondaryp));
      clip-path: polygon(50% 100%, 0 0, 100% 0);
    }

    .section-subtitlepp {
      font-size: 1.1rem;
      color: var(--text-lightp);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .card-containerpp {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }

    .cardpp {
      background: var(--lightp);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-mdp);
      transition: all 0.8s ease;
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .cardpp:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(255, 63, 51, 0.15);
    }

    .card-badgepp {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--primaryp);
      color: var(--lightp);
      font-size: 0.75rem;
      padding: 6px 15px;
      border-radius: 50px;
      font-weight: 600;
      z-index: 2;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 5px 15px rgba(255, 63, 51, 0.3);
    }

    .card-badgepp.secondarypp {
      background: var(--secondaryp);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .card-badgepp::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 15px;
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid var(--primaryp);
    }

    .card-badgepp.secondarypp::after {
      border-top-color: var(--secondaryp);
    }

    .card-image-containerpp {
      /* height: 240px; */
      position: relative;
      overflow: hidden;
    /* clip-path: polygon(50% 0%, 100% 100%, 0% 100%); */

      background: linear-gradient(145deg, #f1f1f1, #e0e0e0);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 30px;
    }

       .trianglepp {
      width: 100%;
      height: 100%;
      aspect-ratio: 1;
      position: absolute;
      clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
      background: linear-gradient(145deg, rgba(0, 0, 0, 0.24), rgba(22, 22, 22, 0.23));
      transform: rotateX(43deg) !important;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 30px; /* acts like the border width */
      box-sizing: border-box;
    }

    .triangle-inner-whitepp {
     width: 300px;
    height: 300px;
      background: white;
      clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .triangle-inner-redpp {
         width: 240px;
    height: 260px;
      background:rgb(255, 65, 51);
      clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    }
    .card-image-bgpp {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      opacity: 0.1;
      z-index: 0;
      background: 
        linear-gradient(135deg, 
          var(--primaryp) 0%, 
          transparent 20%, 
          transparent 80%, 
          var(--secondaryp) 100%);
      clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    }

    .card-imagepp {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: var(--transitionp);
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    }

    .cardpp:hover .card-imagepp {
      transform: scale(1.05) translateY(-5px);
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    }

    .card-contentpp {
      padding: 30px;
      position: relative;
    }

    .card-titlepp {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--secondaryp);
      margin-bottom: 15px;
      font-family: 'Montserrat', sans-serif;
      position: relative;
      display: inline-block;
    }

    .card-titlepp::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primaryp);
      transition: var(--transitionp);
    }

    .cardpp:hover .card-titlepp::after {
      width: 100%;
    }

    .price-containerpp {
      display: flex;
      align-items: center;
      margin: 20px 0;
    }

    .current-pricepp {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primaryp);
      position: relative;
    }

    .current-pricepp::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 50%;
      background-color: rgba(255, 63, 51, 0.1);
      transform: skewX(-15deg);
      z-index: -1;
    }

    .original-pricepp {
      font-size: 1.1rem;
      color: var(--text-lightp);
      text-decoration: line-through;
      margin-left: 12px;
    }

    .featurespp {
      list-style: none;
      margin: 25px 0;
    }

    .featurespp li {
      font-size: 0.95rem;
      color: var(--textp);
      margin-bottom: 12px;
      position: relative;
      padding-left: 30px;
      transition: var(--transitionp);
    }

    .featurespp li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 6px;
      width: 12px;
      height: 12px;
      background-color: var(--primaryp);
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
      transform: rotate(90deg);
      transition: var(--transitionp);
    }

    .featurespp li:hover {
      color: var(--primaryp);
      transform: translateX(5px);
    }

    .featurespp li:hover::before {
      transform: rotate(0deg);
      background-color: var(--secondaryp);
    }

    .card-btnpp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 14px;
      background: var(--primaryp);
      color: var(--lightp);
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: var(--transitionp);
      position: relative;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(255, 63, 51, 0.3);
      margin-top: 15px;
    }

    .card-btnpp::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: var(--transitionp);
    }

    .card-btnpp:hover::before {
      left: 100%;
    }

    .card-btnpp:hover {
      background: var(--primary-darkp);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 63, 51, 0.4);
    }

    .card-btnpp i {
      margin-left: 8px;
      transition: var(--transitionp);
    }

    .card-btnpp:hover i {
      transform: translateX(3px);
    }

    /* Decorative triangle elements */
    .cardpp::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primaryp), var(--secondaryp));
    }

    .card-cornerpp {
      position: absolute;
      width: 0;
      height: 0;
      border-style: solid;
      z-index: 1;
    }

    .card-corner-top-leftpp {
      top: 0;
      left: 0;
      border-width: 40px 40px 0 0;
      border-color: var(--primaryp) transparent transparent transparent;
    }

    .card-corner-bottom-rightpp {
      bottom: 0;
      right: 0;
      border-width: 0 0 40px 40px;
      border-color: transparent transparent var(--secondaryp) transparent;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .card-containerpp {
        gap: 25px;
      }
    }

    @media (max-width: 992px) {
      .section-titlepp {
        font-size: 2.4rem;
      }
    
    }

    @media (max-width: 768px) {
    
      .section-titlepp {
        font-size: 2rem;
      }
      .section-subtitlepp {
        font-size: 1rem;
      }
      .card-containerpp {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }
    }

    @media (max-width: 480px) {
      .section-titlepp {
        font-size: 1.8rem;
      }
      .current-pricepp {
        font-size: 1.8rem;
      }
      .original-pricepp {
        font-size: 1rem;
      }
      .card-image-containerpp {
       
        padding: 20px;
      }
      .card-contentpp {
        padding: 25px;
      }
    }

    /* <!-- our product section***************************************************** --> */

    /* <!-- gallery section********************************************************** --> */
    
 .custom-gallery-sectiongg::before, .custom-gallery-sectiongg::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Custom Gallery Section Styles */
.custom-gallery-sectiongg {
  position: relative;
  padding: 8rem 2rem;
  background-color: #f8f9fa;
  overflow: hidden;
  isolation: isolate;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

.custom-containergg {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header Styles */
.gallery-headergg {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.title-wrappergg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.decorative-trianglegg {
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.decorative-trianglegg.leftgg {
  border-width: 12px 20px 12px 0;
  border-color: transparent #FF3F33 transparent transparent;
}

.decorative-trianglegg.rightgg {
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #FF3F33;
}

.section-main-titlegg {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.section-main-titlegg .highlightgg {
  color: #FF3F33;
  position: relative;
  display: inline-block;
}

.section-main-titlegg .highlightgg::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #222;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.custom-gallery-sectiongg:hover .section-main-titlegg .highlightgg::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section-subtitlegg {
  color: #666;
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  position: relative;
  font-weight: 400;
  line-height: 1.7;
}

.title-underlinegg {
  height: 4px;
  width: 120px;
  background: linear-gradient(90deg, #FF3F33, #000);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.underline-trianglegg {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #000 transparent;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatgg 3s ease-in-out infinite;
}

/* Gallery Grid Layout */
.gallery-gridgg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

/* Gallery Card Styles */
.gallery-cardgg {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: white;
  transform: translateY(0);
  z-index: 1;
  border: 1px solid rgba(0,0,0,0.05);
}

.gallery-cardgg:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 63, 51, 0.25);
}

.card-image-containergg {
  position: relative;
  /* height: 280px; */
  overflow: hidden;
}

.card-image-containergg-vd{
    height: 380px !important;
}

.card-imagegg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-cardgg:hover .card-imagegg {
  transform: scale(1.1);
}

/* .image-overlaygg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
  opacity: 0.6;
  transition: opacity 0.4s ease;
} */

/* .gallery-cardgg:hover .image-overlaygg {
  opacity: 0.85;
} */

.corner-trianglegg {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  opacity: 0.9;
  transition: all 0.4s ease;
  z-index: 2;
}

.corner-trianglegg.tlgg {
  top: 0;
  left: 0;
  border-width: 80px 80px 0 0;
  border-color: #FF3F33 transparent transparent transparent;
}

.corner-trianglegg.brgg {
  bottom: 0;
  right: 0;
  border-width: 0 0 80px 80px;
  border-color: transparent transparent #222 transparent;
}

.gallery-cardgg:hover .corner-trianglegg.tlgg {
  border-width: 100px 100px 0 0;
}

.gallery-cardgg:hover .corner-trianglegg.brgg {
  border-width: 0 0 100px 100px;
}

.card-contentgg {
  padding: 2rem;
  position: relative;
  z-index: 3;
  background: white;
}

.card-titlegg {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.gallery-cardgg:hover .card-titlegg {
  color: #FF3F33;
}

.card-descriptiongg {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
  font-weight: 400;
}

.explore-btngg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: #FF3F33;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.explore-btngg::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: 0.5s;
}

.explore-btngg:hover::before {
  left: 100%;
}

.explore-btngg:hover {
  background: #222;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 63, 51, 0.4);
}

.arrow-icongg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.3s ease;
}

.explore-btngg:hover .arrow-icongg {
  transform: translateX(4px);
}




/* .gallery-cardgg:hover .card-hover-effectgg {
  opacity: 1;
} */

/* View More Button */
.view-more-containergg {
  text-align: center;
  margin-top: 3rem;
}

.view-more-btngg {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 3rem;
  background: #FF3F33;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 25px rgba(255, 63, 51, 0.3);
  z-index: 1;
  font-family: 'Poppins', sans-serif;
}

.view-more-btngg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #FF3F33, #222, #FF3F33);
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease, background-position 0.5s ease;
}

.view-more-btngg:hover::before {
  opacity: 1;
  animation: gradientShiftgg 3s ease infinite;
}

.view-more-btngg:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 63, 51, 0.5);
}

.view-more-btngg:active {
  transform: translateY(-2px);
}

.btn-arrowgg svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.3s ease;
}

.view-more-btngg:hover .btn-arrowgg svg {
  transform: translateX(6px);
}

.btn-particlesgg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.particlegg {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0;
}

.view-more-btngg:hover .particlegg {
  animation: particlesgg 1s ease-in-out infinite;
}

.particlegg:nth-child(1) {
  width: 5px;
  height: 5px;
  top: 20%;
  left: 30%;
  animation-delay: 0.1s;
}

.particlegg:nth-child(2) {
  width: 4px;
  height: 4px;
  top: 60%;
  left: 10%;
  animation-delay: 0.2s;
}

.particlegg:nth-child(3) {
  width: 6px;
  height: 6px;
  top: 80%;
  left: 25%;
  animation-delay: 0.3s;
}

.particlegg:nth-child(4) {
  width: 4px;
  height: 4px;
  top: 30%;
  left: 80%;
  animation-delay: 0.4s;
}

.particlegg:nth-child(5) {
  width: 5px;
  height: 5px;
  top: 70%;
  left: 70%;
  animation-delay: 0.5s;
}

.particlegg:nth-child(6) {
  width: 3px;
  height: 3px;
  top: 10%;
  left: 60%;
  animation-delay: 0.6s;
}

.particlegg:nth-child(7) {
  width: 4px;
  height: 4px;
  top: 50%;
  left: 90%;
  animation-delay: 0.7s;
}

.particlegg:nth-child(8) {
  width: 5px;
  height: 5px;
  top: 40%;
  left: 50%;
  animation-delay: 0.8s;
}

.particlegg:nth-child(9) {
  width: 4px;
  height: 4px;
  top: 90%;
  left: 40%;
  animation-delay: 0.9s;
}

.particlegg:nth-child(10) {
  width: 3px;
  height: 3px;
  top: 20%;
  left: 70%;
  animation-delay: 1s;
}

/* Background Elements */
.bg-elementgg {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
}

.triangle-largegg {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 300px 300px;
  border-color: transparent transparent #FF3F33 transparent;
  bottom: -100px;
  left: -100px;
  animation: floatgg 8s ease-in-out infinite;
}

.triangle-mediumgg {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 200px 0 0 200px;
  border-color: transparent transparent transparent #222;
  top: 100px;
  right: -50px;
  animation: floatgg 6s ease-in-out infinite reverse;
}

.triangle-smallgg {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 150px 150px 0;
  border-color: transparent #222 transparent transparent;
  bottom: 100px;
  right: 100px;
  animation: floatgg 7s ease-in-out infinite 1s;
}

.circlegg {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 20px solid rgba(255, 63, 51, 0.1);
  top: 50%;
  left: 10%;
  animation: pulsegg 6s ease-in-out infinite;
}

/* Animations */
@keyframes floatgg {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulsegg {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.15;
  }
}

@keyframes gradientShiftgg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes particlesgg {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-40px) translateX(15px);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-gridgg {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  
  .section-main-titlegg {
    font-size: 2.4rem;
  }
  

}

@media (max-width: 768px) {
  .custom-gallery-sectiongg {
    padding: 6rem 1.5rem;
  }
  
  .gallery-gridgg {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-main-titlegg {
    font-size: 2rem;
  }
  
  .section-subtitlegg {
    font-size: 1.1rem;
  }
  
  .title-wrappergg {
    gap: 1rem;
  }
  
  .decorative-trianglegg.left {
    border-width: 10px 18px 10px 0;
  }
  
  .decorative-trianglegg.rightgg {
    border-width: 10px 0 10px 18px;
  }
  
  .card-image-containergg-vd{
    height: 250px !important;
}

  

  .card-contentgg {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .custom-gallery-sectiongg {
    padding: 4rem 1rem;
  }
  
  .section-main-titlegg {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }
  
  .section-subtitlegg {
    font-size: 1rem;
  }
  
  .view-more-btngg {
    padding: 1rem 2.2rem;
    font-size: 1rem;
  }
  
    .card-image-containergg-vd{
    height: 250px !important;
}

  
  .bg-elementgg {
    display: none;
  }
  
  .title-underlinegg {
    width: 80px;
  }
  
  .card-titlegg {
    font-size: 1.3rem;
  }
  
  .card-descriptiongg {
    font-size: 0.95rem;
  }
}
    /* <!-- gallery section********************************************************** --> */


        /* <!-- service section********************************************************* --> */
   
/* ========== BASE STYLES ========== */
:root {
    --primaryss: #FF3F33;
    --primary-lightss: rgba(255, 63, 51, 0.15);
    --primary-darkss: #d63429;
    --primary-gradientss: linear-gradient(135deg, #FF3F33 0%, #FF6B33 100%);
    --darkss: #111111;
    --darkerss: #000000;
    --grayss: #666666;
    --light-grayss: #f5f5f5;
    --whitess: #ffffff;
    --transitionss: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fastss: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-smss: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-mdss: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lgss: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-primaryss: 0 10px 30px rgba(255, 63, 51, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--darkss);
    background-color: var(--whitess);
    overflow-x: hidden;
    scroll-behavior: smooth;
} */

/* ========== SECTION STYLES ========== */
.services-sectionss {
    position: relative;
    padding: 140px 0;
    background-color: var(--whitess);
    overflow: hidden;
    isolation: isolate;
    scroll-behavior: smooth;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--darkss);
}

.containerss {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    scroll-behavior: smooth;

}

/* ========== triangless THEME ELEMENTS ========== */
.triangless-bgss {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0.05;
}

.triangless {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0.8;
}

.triangless-1 {
    border-width: 0 150px 260px 150px;
    border-color: transparent transparent var(--primaryss) transparent;
    top: -100px;
    left: -50px;
    transform: rotate(15deg);
}

.triangless-2 {
    border-width: 0 100px 173px 100px;
    border-color: transparent transparent var(--primaryss) transparent;
    bottom: 50px;
    right: -30px;
    transform: rotate(-20deg);
}

.triangless-3 {
    border-width: 130px 75px 0 75px;
    border-color: var(--primaryss) transparent transparent transparent;
    top: 30%;
    right: 10%;
    transform: rotate(30deg);
}

.triangless-4 {
    border-width: 0 60px 104px 60px;
    border-color: transparent transparent var(--primaryss) transparent;
    bottom: 20%;
    left: 10%;
    transform: rotate(-10deg);
}

/* ========== SECTION HEADER ========== */
.section-headerss {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 5;
}

.section-titless {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--darkerss);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-titless span {
    color: var(--primaryss);
    position: relative;
}

.section-titless span::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--primary-lightss);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.section-subtitless {
    color: var(--grayss);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

/* ========== SERVICES LAYOUT ========== */
.services-containerss {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    z-index: 5;
}

.service-itemss {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    background: var(--whitess);
    border-radius: 0 24px 24px 24px;
    /* box-shadow: var(--shadow-md); */
    transition: var(--transitionss);
    overflow: hidden;
    /* border: 1px solid rgba(0,0,0,0.05); */
    transition: 0.5s ease;
}

.service-itemss::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--primaryss);
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
    z-index: 2;
}



.service-itemss:nth-child(even) .service-contentss {
    order: 2;
}

.service-itemss:nth-child(even) .service-mediass {
    order: 1;
}

.service-mediass {
    position: relative;
    height: 450px;
    border-radius: 0 0 24px 0;
    overflow: hidden;
   transition: var(--transitionss);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

.service-itemss:nth-child(even) .service-mediass {
    border-radius: 0 0 0 24px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.service-imagess {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transitionss);
    
}

.service-numberss {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--primaryss);
    color: var(--whitess);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 28px;
    z-index: 2;
    box-shadow: var(--shadow-primaryss);
    transition: var(--transition-fastss);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.service-contentss {
    padding: 50px;
    position: relative;
}

.service-iconss {
    width: 80px;
    height: 80px;
    background: var(--primaryss);
    color: var(--whitess);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 32px;
    box-shadow: var(--shadow-primaryss);
    transition: var(--transition-fastss);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.service-titless {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--darkerss);
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
}

.service-titless::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primaryss);
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.service-descriptionss {
    color: var(--grayss);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-featuresss {
    margin-bottom: 40px;
}

.feature-itemsssssssss {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    background: var(--light-grayss);
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition-fastss);
    position: relative;
    overflow: hidden;
}

.feature-itemsssssssss::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primaryss);
    transition: var(--transition-fastss);
}

.feature-itemsssssssss:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-smss);
}

.feature-itemsssssssss:hover::before {
    width: 8px;
}

.feature-iconss {
    color: var(--primaryss);
    margin-right: 15px;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-textss {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--darkss);
    font-weight: 500;
}

.service-ctass {
    display: inline-flex;
    align-items: center;
    background: var(--primaryss);
    color: var(--whitess);
    padding: 18px 45px;
    border-radius: 0;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fastss);
    box-shadow: var(--shadow-primaryss);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
}

.service-ctass i {
    margin-left: 10px;
    transition: var(--transition-fastss);
}

.service-ctass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transitionss);
}

/* ========== HOVER EFFECTS ========== */
.service-itemss:hover .service-mediass {
    /* transform: scale(1.02); */
    box-shadow: var(--shadow-lgss);
}

.service-imagess:hover {
    transform: scale(1.05);
}

.service-itemss:hover .service-numberss {
    transform: rotate(10deg) scale(1.1);
    background: var(--darkerss);
}

.service-itemss:hover .service-iconss {
    animation: iconPulsess 1.5s infinite;
    background: var(--darkerss);
}

.service-ctass:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 63, 51, 0.4);
    clip-path: polygon(5% 0%, 100% 0%, 95% 50%, 100% 100%, 5% 100%);
}

.service-ctass:hover i {
    transform: translateX(5px);
}

.service-ctass:hover::before {
    left: 100%;
}

.feature-itemsssssssss:hover .feature-iconss {
    color: var(--darkerss);
    transform: scale(1.1);
}

@keyframes iconPulsess {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(5deg); }
    50% { transform: scale(1.1) rotate(0deg); }
    75% { transform: scale(1.05) rotate(-5deg); }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .service-mediass {
        height: 400px;
    }
    
    .service-contentss {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .services-sectionss {
        padding: 100px 0;
    }
    
    .service-itemss {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 0 0 24px 24px;
    }
    
    .service-itemss:nth-child(even) .service-contentss,
    .service-itemss:nth-child(even) .service-mediass {
        order: initial;
    }
    
    .service-mediass {
        height: 350px;
        border-radius: 0 !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    }
    
    .service-contentss {
        padding: 40px 30px;
    }
    
    .triangless-1, .triangless-2, .triangless-3, .triangless-4 {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-headerss {
        margin-bottom: 60px;
    }
    
    .services-containerss {
        gap: 60px;
    }
    
    .service-mediass {
        height: 300px;
    }
    
    .service-iconss {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .service-numberss {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .services-sectionss {
        padding: 80px 0;
    }
    
    .service-mediass {
        height: 250px;
    }
    
    .service-contentss {
        padding: 30px 20px;
    }
    
    .service-ctass {
        padding: 16px 35px;
        width: 100%;
        justify-content: center;
    }
    
    .feature-itemsssssssss {
        padding: 12px;
    }
}



    /* <!-- service section********************************************************* --> */


    /* <!-- testomonical section********************************************************* --> */
      
        /* ===== Ultra Smooth & Professional Styles ===== */
        :root {
            --primarytt: #FF3F33;
            --primary-lighttt: rgba(255, 63, 51, 0.08);
            --primary-darktt: #e6392e;
            --blacktt: #111111;
            --dark-graytt: #333333;
            --medium-graytt: #666666;
            --light-graytt: #f5f5f5;
            --whitett: #ffffff;
            --card-shadowtt: 0 12px 24px -6px rgba(0, 0, 0, 0.1);
            --transitiontt: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }


        /* Main Section */
        .testimonials-sectiontt {
            position: relative;
            padding: 120px 0;
            background-color: var(--light-graytt);
            overflow: hidden;
            z-index: 1;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark-graytt);         
            -webkit-font-smoothing: antialiased;
        }

        .containertt {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 3;
        }

        /* Section Header */
        .section-headertt {
            text-align: center;
            margin-bottom: 72px;
            position: relative;
        }

        .section-titletttt {
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .title-decorationtt {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-bottom: 24px;
        }

        .title-accenttt {
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primarytt), transparent);
            opacity: 0.5;
        }

        .section-titletttt h2 {
            font-size: 42px;
            font-weight: 700;
            color: var(--blacktt);
            margin: 0;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .highlighttt {
            color: var(--primarytt);
            position: relative;
        }

        .highlighttt::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: var(--primary-lighttt);
            z-index: -1;
            border-radius: 4px;
        }

        .section-subtitlett {
            color: var(--medium-graytt);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Testimonial Grid */
        .testimonial-gridtt {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 32px;
        }

        /* Testimonial Card */
        .testimonial-cardtt {
            background: var(--whitett);
            border-radius: 16px;
            padding: 48px 40px;
            box-shadow: var(--card-shadowtt);
            position: relative;
            overflow: hidden;
            transition: var(--transitiontt);
            will-change: transform;
        }

        .card-accenttt {
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 80px 80px 0;
            border-color: transparent var(--primarytt) transparent transparent;
            transition: var(--transitiontt);
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
        }

        .quote-icon {
            color: var(--primarytt);
            margin-bottom: 24px;
            position: relative;
            display: inline-block;
        }

        .quote-icon svg {
            width: 36px;
            height: 36px;
            fill: currentColor;
            opacity: 0.9;
        }

        .testimonial-text {
            font-size: 17px;
            line-height: 1.8;
            color: var(--medium-graytt);
            margin-bottom: 32px;
            position: relative;
            padding-left: 24px;
            font-weight: 400;
        }

        .testimonial-text::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: var(--primarytt);
            border-radius: 3px;
            transition: var(--transitiontt);
        }

        .testimonial-footer {
            display: flex;
            flex-direction: column;
        }

        .rating {
            color: var(--primarytt);
            font-size: 16px;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            position: relative;
            width: 72px;
            height: 72px;
            flex-shrink: 0;
        }

        .author-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--whitett);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
            transition: var(--transitiontt);
            position: relative;
            z-index: 2;
        }

        .avatar-bg {
            position: absolute;
            top: -3px;
            left: -3px;
            width: calc(100% + 6px);
            height: calc(100% + 6px);
            background: linear-gradient(135deg, var(--primarytt), var(--primary-darktt));
            border-radius: 50%;
            z-index: 1;
          
            transition: var(--transitiontt);
        }

        .author-info h5 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: var(--blacktt);
        }

        .author-info p {
            font-size: 14px;
            color: var(--medium-graytt);
            margin: 4px 0 0;
            font-weight: 500;
        }

        /* Hover Effects */
        .testimonial-cardtt:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(255, 63, 51, 0.12);
        }

        .testimonial-cardtt:hover .card-accenttt {
            border-width: 0 90px 90px 0;
        }

        .testimonial-cardtt:hover .testimonial-text::before {
            width: 5px;
        }

        .testimonial-cardtt:hover .author-img {
            transform: scale(1.05);
        }

        .testimonial-cardtt:hover .avatar-bg {
            opacity: 0.15;
            transform: scale(1.05);
        }

        /* Floating Elements */
        .floating-elementstt {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-trianglettt {
            position: absolute;
            background-color: var(--primarytt);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            /* opacity: 0.06; */
            animation: floattt 12s ease-in-out infinite;
        }

        .triangle-1tt {
            width: 120px;
            height: 120px;
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .triangle-2tt {
            width: 80px;
            height: 80px;
            bottom: 20%;
            right: 0%;
            animation: floattt 15s ease-in-out infinite reverse;
            animation-delay: 2s;
            background-color:rgb(43, 43, 43);

        }

      

        @keyframes floattt {
            0% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(15px, -20px) rotate(5deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .testimonials-sectiontt {
                padding: 100px 0;
            }
            
            .section-titletttt h2 {
                font-size: 38px;
            }
            
            .testimonial-gridtt {
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            .section-headertt {
                margin-bottom: 60px;
            }
            
            .section-titletttt h2 {
                font-size: 34px;
            }

            .section-subtitlett {
                font-size: 17px;
            }

            .testimonial-gridtt {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }

            .title-accenttt {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .testimonials-sectiontt {
                padding: 80px 0;
            }

            .section-titletttt h2 {
                font-size: 30px;
            }

            .testimonial-cardtt {
                padding: 40px 32px;
            }

            .author-avatar {
                width: 64px;
                height: 64px;
            }

            .floating-trianglettt {
                display: none;
            }
        }

        @media (max-width: 400px) {
            .section-titletttt h2 {
                font-size: 28px;
            }

            .highlighttt::after {
                height: 6px;
                bottom: 3px;
            }
            
            .testimonial-cardtt {
                padding: 36px 28px;
            }
        }
  
    /* <!-- testomonical section********************************************************* --> */

        /* <!-- contact form section ******************************************************** --> */
        :root {
            --primarycc: #FF3F33;
            --primary-darkcc: #e6392e;
            --secondarycc: #000;
            --textcc: #333;
            --lightcc: #f9f9f9;
            --whitecc: #fff;
            --graycc: #eee;
            --dark-graycc: #777;
        }

        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */

        /* body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--lightcc);
            color: var(--textcc);
            line-height: 1.6;
        } */

        
        /* Contact Section */
        .contact-sectioncc {
            position: relative;
            padding: 100px 0;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(249,249,249,0.95) 100%);
            font-family: 'Poppins', sans-serif !important;
            color: var(--textcc);
            line-height: 1.6;
        }

        .contact-sectioncc::before {
            content: "";
            position: absolute;
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background-color: var(--primarycc);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            opacity: 0.1;
            z-index: 0;
            animation: floatcc 6s ease-in-out infinite;
        }

        .contact-sectioncc::after {
            content: "";
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background-color: var(--primarycc);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            opacity: 0.05;
            z-index: 0;
            animation: floatReversecc 8s ease-in-out infinite;
        }

        .containercc {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }


        /* Section Title */
        .section-titlecc {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 1;
        }

        .section-titlecc h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--secondarycc);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-titlecc h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primarycc);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
        }

        .section-titlecc p {
          font-family: 'Poppins';
    color: var(--dark-graycc) !important;
    font-size: 1.4rem !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    line-height: 1.6;
    font-weight: normal;
        }

        /* Contact Content */
        .contact-contentcc {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        /* Contact Info */
        .contact-infocc {
            flex: 1 1 400px;
            background: var(--whitecc);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-infocc:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 63, 51, 0.1);
        }

        .contact-infocc::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primarycc), var(--secondarycc));
        }

        .contact-infocc h3 {
            font-size: 1.8rem;
            color: var(--secondarycc);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-infocc h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primarycc);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
        }

        .contact-infocc p {
            color: var(--dark-graycc);
            margin-bottom: 30px;
        }

        .contact-info-boxcc {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            padding: 15px;
            border-radius: 10px;
            background: rgba(255, 63, 51, 0.03);
        }

        .contact-info-boxcc:hover {
            background: rgba(255, 63, 51, 0.08);
            transform: translateX(5px);
        }

        .contact-iconcc {
            background: var(--primarycc);
            color: var(--whitecc);
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }

        .contact-info-boxcc:hover .contact-iconcc {
            background: var(--secondarycc);
            transform: rotate(15deg);
        }

        .contact-textcc h4 {
            color: var(--secondarycc);
            margin-bottom: 5px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .contact-textcc p {
            color: var(--dark-graycc);
            margin: 0;
            font-size: 0.95rem;
        }

        /* Social Links */
        .social-linkscc {
            margin-top: 40px;
        }

        .social-linkscc h4 {
            color: var(--secondarycc);
            margin-bottom: 20px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .social-linkscc a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--primarycc);
            color: var(--whitecc);
            border-radius: 12px;
            margin-right: 12px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .social-linkscc a::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: 0.5s;
        }

        .social-linkscc a:hover {
            transform: translateY(-5px) scale(1.1);
            background: var(--secondarycc);
            box-shadow: 0 5px 15px rgba(255, 63, 51, 0.3);
        }

        .social-linkscc a:hover::before {
            left: 100%;
        }

        /* Contact Form */
        .contact-formcc {
            flex: 1 1 500px;
            background: var(--whitecc);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .contact-formcc::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondarycc), var(--primarycc));
        }

        .contact-formcc h3 {
            font-size: 1.8rem;
            color: var(--secondarycc);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-formcc h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primarycc);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
        }

        .form-groupcc {
            margin-bottom: 25px;
            position: relative;
        }

        .form-rowcc {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-colcc {
            flex: 1 1 calc(50% - 20px);
        }

        .form-controlcc {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid var(--graycc);
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            color: var(--textcc);
            transition: all 0.3s ease;
            background-color: rgba(255, 63, 51, 0.03);
        }

        .form-controlcc:focus {
            outline: none;
            border-color: var(--primarycc);
            box-shadow: 0 0 0 3px rgba(255, 63, 51, 0.1);
            background-color: var(--whitecc);
        }

        textarea.form-controlcc {
            min-height: 150px;
            resize: vertical;
        }

        /* Submit Button */
        .submit-btncc {
            display: inline-block;
            background: var(--primarycc);
            color: var(--whitecc);
            border: none;
            padding: 15px 40px;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
            z-index: 1;
        }

        .submit-btncc::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: 0.5s;
            z-index: -1;
        }

        .submit-btncc:hover {
            background: var(--secondarycc);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 63, 51, 0.3);
        }

        .submit-btncc:hover::before {
            left: 100%;
        }

        /* Floating Triangles */
        .floating-trianglecc {
            position: absolute;
            opacity: 0.1;
            z-index: 0;
            animation: floatcc 8s ease-in-out infinite;
        }

        .triangle-1cc {
            top: 20%;
            left: 5%;
            width: 80px;
            height: 80px;
            background-color: var(--primarycc);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            animation-delay: 0s;
        }

        .triangle-2cc {
            bottom: 15%;
            right: 8%;
            width: 120px;
            height: 120px;
            background-color: var(--secondarycc);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            animation-delay: 1s;
        }

        .triangle-3cc {
            top: 60%;
            left: 10%;
            width: 60px;
            height: 60px;
            background-color: var(--primarycc);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            animation-delay: 2s;
        }

        /* Animations */
        @keyframes floatcc {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }

        @keyframes floatReversecc {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(20px) rotate(-5deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .section-titlecc h2 {
                font-size: 2.4rem;
            }

            /* .contact-contentcc {
                flex-direction: column;
            } */

            .contact-infocc, .contact-formcc {
                flex: 1 1 100%;
            }
        }

        @media (max-width: 767px) {
            .contact-sectioncc {
                padding: 70px 0;
            }

            .section-titlecc h2 {
                font-size: 2rem;
            }

            .contact-infocc, .contact-formcc {
                padding: 30px;
            }

            .form-colcc {
                flex: 1 1 100%;
            }

            .contact-iconcc {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .social-linkscc a {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .contact-sectioncc {
                padding: 50px 0;
            }

            .section-titlecc h2 {
                font-size: 1.8rem;
            }

            .contact-infocc, .contact-formcc {
                padding: 25px;
            }

            .contact-info-boxcc {
                padding: 12px;
            }

            .submit-btncc {
                width: 100%;
                padding: 15px;
            }
        }
       /* <!-- contact form section ******************************************************** --> */


       /* <!--footer section ******************************************************** --> */
      
        :root {
            --primaryft: #FF3F33;
            --primary-darkft: #e6392e;
            --primary-lightft: rgba(255, 63, 51, 0.1);
            --blackft: #000000;
            --darkft: #111111;
            --lightft: #f8f9fa;
            --grayft: #6c757d;
            --transitionft: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
/* 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {  
            background: var(--lightft);
        } */
            /* === 🎨 Main Footer === */
        .footer {
            background: linear-gradient(135deg, var(--blackft) 0%, var(--darkft) 100%);
            color: var(--lightft);
            padding: 120px 0 0;
            position: relative;
            overflow: hidden;
             font-family: 'Poppins', sans-serif;
        }
        /* === 🌟 Floating 3D Triangles === */
        .triangle-bgft {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 0;
            opacity: 0.05;
        }

        .triangleft {
            position: absolute;
            background: var(--primaryft);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            animation: floatft 15s infinite ease-in-out;
            filter: drop-shadow(0 0 10px rgba(255, 63, 51, 0.5));
        }

        @keyframes floatft {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--primaryft);
            clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 100%, 0 50%);
            z-index: 1;
        }

        .containerft {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* === 📱 Responsive Grid === */
        .rowft {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .colft {
            flex: 1;
            min-width: 200px;
        }

        /* === 🔥 Logo & About Section === */
        .footer-aboutft {
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 42px;
            font-weight: 800;
            color: var(--lightft);
            text-decoration: none;
            margin-bottom: 25px;
            display: inline-block;
            position: relative;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(255, 63, 51, 0.3);
        }

        .footer-logo span {
            color: var(--primaryft);
            position: relative;
        }

        .footer-logo:hover span {
            animation: neonGlow 1.5s infinite alternate;
        }

        @keyframes neonGlow {
            from { text-shadow: 0 0 5px var(--primaryft), 0 0 10px var(--primaryft); }
            to { text-shadow: 0 0 10px var(--primaryft), 0 0 20px var(--primaryft); }
        }

        .footer-aboutft p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
            line-height: 1.8;
            font-size: 15px;
        }

        /* === 💎 Social Media - 3D Hover === */
        .social-linksft {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-linksft a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--lightft);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transitionft);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform-style: preserve-3d; 
            text-decoration:none;
        }

        .social-linksft a:hover {
            transform: translateY(-5px) rotateX(15deg);
            background: var(--primaryft);
            box-shadow: 0 10px 25px rgba(255, 63, 51, 0.4);
        }

        .social-linksft a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            transition: var(--transitionft);
        }

        .social-linksft a:hover::after {
            transform: translateX(100%);
        }

        /* === 🚀 Animated Links === */
        .footer-linksft h3 {
            font-size: 22px;
            color: var(--lightft);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
        }

        .footer-linksft h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primaryft);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
            transition: var(--transitionft);
        }

        .footer-linksft h3:hover::after {
            width: 80px;
        }

        .footer-linksft ul {
            list-style: none;
        }

        .footer-linksft ul li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
        }

        .footer-linksft ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--primaryft);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            transition: var(--transitionft);
        }

        .footer-linksft ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transitionft);
            display: inline-block;
        }

        .footer-linksft ul li:hover::before {
            transform: translateY(-50%) rotate(180deg);
        }

        .footer-linksft ul li:hover a {
            color: var(--lightft);
            transform: translateX(10px);
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
        }


       
        .footer-contactft ul li {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 15px;
            border-radius: 10px;
            transition: var(--transitionft);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-contactft ul li:hover {
            transform: translateY(-5px);
            background: rgba(255, 63, 51, 0.1);
            border-color: rgba(255, 63, 51, 0.3);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .footer-contactft ul li i {
            color: var(--primaryft);
            margin-right: 15px;
            font-size: 20px;
            min-width: 25px;
            text-align: center;
        }

        .footer-contactft h3 {
            font-size: 22px;
            color: var(--lightft);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
        }
    .footer-contactft h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primaryft);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
            transition: var(--transitionft);
        }
        /* === 💌 Newsletter Form === */
        .subscribe-formft {
            margin-top: 30px;
        }
         .subscribe-formft h3{
            margin-bottom: 10px;
        }

        .form-groupft {
            position: relative;
            margin-bottom: 20px;
        }

        .form-controlft {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px 20px;
            color: var(--lightft);
            font-size: 15px;
            transition: var(--transitionft);
        }

        .form-controlft:focus {
            outline: none;
            border-color: var(--primaryft);
            box-shadow: 0 0 0 3px rgba(255, 63, 51, 0.2);
        }

        .btn-subscribeft {
            background: var(--primaryft);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transitionft);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            box-shadow: 0 5px 15px rgba(255, 63, 51, 0.3);
            width: 100%;
        }

        .btn-subscribeft:hover {
            background: var(--primary-darkft);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 63, 51, 0.4);
        }

        /* === 🎯 Footer Bottom - Glow Effect === */
        .footer-bottomft {
            display:flex;
            justify-content: space-between;
            background: rgba(0, 0, 0, 0.3);
            padding: 30px 0;
            margin-top: 70px;
            position: relative;
            backdrop-filter: blur(5px);
        }

        .footer-bottomft::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 20px;
            background: var(--primaryft);
            clip-path: polygon(0 100%, 100% 100%, 50% 0);
        }

        .footer-bottomft p {
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            font-size: 14px;
            padding:0 10px;
        }

        .footer-bottomft a {
            color: var(--primaryft);
            text-decoration: none;
            transition: var(--transitionft);
        }

        .footer-bottomft a:hover {
            text-shadow: 0 0 8px rgba(255, 63, 51, 0.8);
        }

        .heart {
            color: var(--primaryft);
            animation: pulseft 1.5s infinite;
            display: inline-block;
        }

        @keyframes pulseft {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        /* === 📱 Responsive Adjustments === */
        @media (max-width: 992px) {
            .colft {
                min-width: 45%;
            }
            
            .footer::before {
                height: 80px;
            }
        }

        @media (max-width: 768px) {

            
            .footer {
                padding: 80px 0 0;
            }
            
            .colft {
                min-width: 100%;
            }
            
            .footer-bottomft::before {
                height: 15px;
            }
        }
                @media (max-width: 600px) {

              .footer-logo {
              width: 100%;           
             text-align: center;
            }
             .footer-bottomft {
           align-content: space-between;
          flex-direction: column;
           gap: 20px;
            }

        }
  
       /* <!-- footer section ******************************************************** --> */




   .dealership-btn {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FF3F33 0%, #FF6B61 100%);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 63, 51, 0.3);
    transition: all 0.3s ease, opacity 0.5s ease;
    z-index: 2147483647;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: vibrantPulse 2.5s ease-in-out infinite;
}

@keyframes vibrantPulse {
    0% {
        box-shadow: 0 4px 12px rgba(255, 63, 51, 0.3);
        transform: translateY(-50%) scale(1);
        background: linear-gradient(135deg, #FF3F33 0%, #FF6B61 100%);
    }
    50% {
        box-shadow: 0 8px 24px rgba(255, 63, 51, 0.7);
        transform: translateY(-50%) scale(1.05);
        background: linear-gradient(135deg, #FF5733 0%, #FF8A80 100%);
    }
    100% {
        box-shadow: 0 4px 12px rgba(255, 63, 51, 0.3);
        transform: translateY(-50%) scale(1);
        background: linear-gradient(135deg, #FF3F33 0%, #FF6B61 100%);
    }
}

.dealership-btn.show {
    display: flex;
    opacity: 1;
}

.dealership-btn:hover {
    background: linear-gradient(135deg, #E3362C 0%, #FF3F33 100%);
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    animation-play-state: paused;
}

.dealership-btn:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation-play-state: paused;
}

.dealership-icon {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dealership-btn:hover .dealership-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .dealership-btn {
        right: 0px;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 6px;
    }
    .dealership-icon {
        width: 18px;
        height: 18px;
    }
    @keyframes vibrantPulse {
        0% {
            box-shadow: 0 3px 10px rgba(255, 63, 51, 0.3);
            transform: translateY(-50%) scale(1);
            background: linear-gradient(135deg, #FF3F33 0%, #FF6B61 100%);
        }
        50% {
            box-shadow: 0 6px 18px rgba(255, 63, 51, 0.7);
            transform: translateY(-50%) scale(1.04);
            background: linear-gradient(135deg, #FF5733 0%, #FF8A80 100%);
        }
        100% {
            box-shadow: 0 3px 10px rgba(255, 63, 51, 0.3);
            transform: translateY(-50%) scale(1);
            background: linear-gradient(135deg, #FF3F33 0%, #FF6B61 100%);
        }
    }
}

@media (max-width: 480px) {
    .dealership-btn {
        right: 0px;
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 5px;
    }
    .dealership-icon {
        width: 16px;
        height: 16px;
    }
    @keyframes vibrantPulse {
        0% {
            box-shadow: 0 2px 8px rgba(255, 63, 51, 0.3);
            transform: translateY(-50%) scale(1);
            background: linear-gradient(135deg, #FF3F33 0%, #FF6B61 100%);
        }
        50% {
            box-shadow: 0 4px 14px rgba(255, 63, 51, 0.7);
            transform: translateY(-50%) scale(1.03);
            background: linear-gradient(135deg, #FF5733 0%, #FF8A80 100%);
        }
        100% {
            box-shadow: 0 2px 8px rgba(255, 63, 51, 0.3);
            transform: translateY(-50%) scale(1);
            background: linear-gradient(135deg, #FF3F33 0%, #FF6B61 100%);
        }
    }
}

@media (min-width: 1920px) {
    .dealership-btn {
        right: calc((100vw - 1920px) / 2 + 30px);
    }
}
.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.form-response.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-response.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message i, .error-message i {
    margin-right: 10px;
}

.ref-number {
    margin-top: 10px;
    font-weight: bold;
    color: #0c5460;
}

.submit-btncc:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}
.form-response.fade-in {
    display: block;
    opacity: 1;
}

.form-response.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Modal Overlay */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  background-color: #fff; /* White background for light theme */
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #FF3F33; /* Theme color border */
}

/* Close Button */
.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #FF3F33; /* Theme color */
  transition: color 0.3s ease;
}

.close-button:hover {
  color: #E02C20; /* Darker shade of theme color for hover */
}

/* Modal Header */
.modal-content h2 {
  margin-top: 0;
  font-size: 24px;
  color: #FF3F33; /* Theme color for header */
}

/* Modal Text */
.modal-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333; /* Dark text for readability */
}

/* Button Hover Effect (for the cta-buttonaaa) */
.cta-buttonaaa:hover .button-hover-effect {
  background-color: rgba(255, 63, 51, 0.1); /* Light theme color for hover effect */
}

/* Dark Theme Support */
@media (prefers-color-scheme: dark) {
  .modal-content {
    background-color: #1a1a1a; /* Dark background for dark theme */
    border: 1px solid #FF3F33;
  }

  .modal-content p {
    color: #e0e0e0; /* Light text for dark theme */
  }

  .modal-content h2 {
    color: #FF3F33; /* Theme color remains consistent */
  }

  .close-button {
    color: #FF3F33;
  }

  .close-button:hover {
    color: #FF6B61; /* Lighter shade for hover in dark theme */
  }
}

/* Responsive Design */
@media (max-width: 600px) {
  .modal-content {
    width: 95%;
    padding: 15px;
  }

  .modal-content h2 {
    font-size: 20px;
  }

  .modal-content p {
    font-size: 14px;
  }
}
   
   
   /* Hide unwanted Google Translate elements */
.VIpgJd-ZVi9od-ORHb-OEVmcd,
#goog-gt-vt,
#goog-gt-tt {
  display: none !important;
}
.google_translate_element img {
  display: none !important;
}
.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none !important;
}

/* Style the dropdown container */
.dropdown-container2 {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: fixed;
  top: 56%;
  right: 0px !important;
  z-index: 9999;
  display: flex;
  align-items: center;
}


.dropdown-container2.show {
    opacity: 1;
}

      body {
      top: 0 !important;
    }
    .goog-te-banner-frame {
      top: 0 !important;
      margin-top: 0 !important;
    }
    .skiptranslate {
      height: 0 !important;
    }
    .goog-te-banner-frame.skiptranslate {
      display: none !important;
    }
    body {
      position: static !important;
    }
/* Style the dropdown */
.goog-te-combo {
  background-color: #1a1a1a; /* Black background */
  color: #ffffff; /* White text */
  padding: 10px 15px;
  width: fit-content;
  border: 2px solid #ff0000; /* Red border */
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Arial', sans-serif;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23ff0000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5v14M5 12h14"/></svg>'); /* Language icon */
  background-position: 10px center;
  background-repeat: no-repeat;
  padding-left: 35px; /* Space for icon */
}

/* Hover effect */
.goog-te-combo:hover {
  background-color: black; /* Red background on hover */
  color: #ffffff;
  border-color: #1a1a1a; /* Black border on hover */
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* Focus effect */
.goog-te-combo:focus {
  border-color: #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

/* Custom dropdown arrow */
.goog-te-combo::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ff0000; /* Red arrow */
  transition: border-color 0.3s ease;
}

.goog-te-combo:hover::after {
  border-top-color: #ffffff; /* White arrow on hover */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .goog-te-combo {
    /*width: 140px;*/
    font-size: 14px;
    padding: 8px 12px;
    background-position: 8px center;
    padding-left: 30px;
  }
  .dropdown-container2 {
    right: 0px;
  }
}



     