   
 :root {
            --sr-primary: rgb(250, 182, 55); 
            --sr-primary-dark: #0284c7;
            --sr-accent: #f59e0b;
            --sr-dark: #1e293b;
            --sr-gray: #64748b;
            --sr-light: #f8fafc;
            --sr-white: #ffffff;

             /* Colors */
            --bg-footer: #0a0a0a;       /* Deep Black/Charcoal */
            --bg-box: #161616;          /* Slightly lighter for the box */
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --accent-gold: rgb(250, 182, 55);    /* Industrial Yellow/Gold */
            --accent-hover: #e6c200;
            --border-color: #333333;
            
            /* Spacing */
            --container-width: 1320px;
            --spacing-unit: 1rem;
        }

        /* Wrapper Layout - Avoids touching .container or .row if they exist globally */
        #sr-about-wrapper {
            width: 100%;
            padding: 1rem 10px;
          
            box-sizing: border-box;
            overflow: hidden; /* Contains animations */
        }

        #sr-inner-container {
            max-width: 1320px;
            margin: 0 auto;
        }

        /* Grid System (Specific to this section) */
        .sr-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin: -40px -15px; /* Negative margin for gutters */
        }

        .sr-col {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 40px 15px;
            box-sizing: border-box;
        }

        @media (max-width: 991px) {
            .sr-col {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        /* --- Animations --- */
        @keyframes srFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes srPulse {
            0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(14, 165, 233, 0); }
            100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
        }

        /* Scroll Reveal State */
        .sr-reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform;
        }

        .sr-reveal.sr-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Image Column --- */
        .sr-img-box {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            height: 550px;
            /* Animation setup handled by JS class addition */
            transition: transform 1s ease-out;
        }

        @media (max-width: 991px) {
            .sr-img-box { height: 400px; }
        }

        .sr-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .sr-img-box:hover img {
            transform: scale(1.05);
        }

        /* Experience Badge */
        .sr-badge {
            position: absolute;
            bottom: -25px;
            right: -25px;
            width: 140px;
            height: 140px;
            background: linear-gradient(135deg, var(--sr-primary), var(--sr-primary-dark));
            color: var(--sr-white);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 10;
            box-shadow: 0 15px 35px rgba(14, 165, 233, 0.4);
            animation: srFloat 5s ease-in-out infinite;
        }

        .sr-badge-count {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 2px;
        }

        .sr-badge-text {
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-align: center;
            line-height: 1.2;
        }

        /* Decorative Background Blob */
        .sr-deco-bg {
            position: absolute;
            top: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background-color: var(--sr-accent);
            opacity: 0.15;
            z-index: -1;
            border-radius: 30px;
        }

        /* --- Content Column --- */
        .sr-content-label {
            color: var(--sr-primary);
            text-transform: uppercase;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 15px;
        }

        .sr-content-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--sr-dark);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .sr-text-highlight { color: var(--sr-primary); }

        .sr-content-desc {
            color: var(--sr-gray);
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
        }

        /* Feature Cards */
        .sr-feature-row {
            margin-top: 2rem;
        }

        .sr-feature-card {
            display: flex;
            align-items: flex-start;
            background: var(--sr-white);
            padding: 1.25rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }

        .sr-feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            border-color: var(--sr-primary);
        }

        .sr-icon-wrapper {
            width: 45px;
            height: 45px;
            background: rgba(14, 165, 233, 0.1);
            color: var(--sr-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 1.1rem;
            transition: background 0.3s, color 0.3s;
        }

        .sr-feature-card:hover .sr-icon-wrapper {
            background: var(--sr-primary);
            color: var(--sr-white);
        }

        .sr-fc-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--sr-dark);
            margin-bottom: 4px;
        }

        .sr-fc-text {
            font-size: 0.9rem;
            color: var(--sr-gray);
            line-height: 1.5;
        }

        /* Button */
        .sr-btn {
            display: inline-flex;
            align-items: center;
            padding: 14px 32px;
            background-color: var(--sr-primary);
            color: var(--sr-white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            margin-top: 1.5rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .sr-btn:hover {
            background-color: var(--sr-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
        }

        .sr-btn i {
            margin-left: 10px;
            transition: transform 0.3s;
        }

        .sr-btn:hover i {
            transform: translateX(4px);
        }

        /* Toast Notification */
        #sr-toast-msg {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--sr-dark);
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transition: all 0.5s ease;
            z-index: 9999;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        #sr-toast-msg.sr-active {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }


        /* ---product cards----- */

         .product-grid {
      max-width: 1400px;
      margin: 0 auto;
    }

    .product-card {
      background: white;
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(0,0,0,0.12);
    }

    .card-image-container {
      height: 260px;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .card-image {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
    }

    .card-body {
      padding: 1.75rem 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      text-align: center;
    }

    .card-title {
      font-size: 1.38rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .card-subtitle {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .btn-action {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: #ffc107;
      color: #000;
      font-size: 1.4rem;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      transition: background-color 0.2s ease;
      margin: 0 auto;
    }

    

    .btn-action:hover {
      background-color: #ffca2c;
    }

    @media (max-width: 992px) {
      .product-card {
        margin-bottom: 2rem;
      }
    }



     .why-choose-section {
            padding: 100px 0;
           
            color: #000000;
            position: relative;
            overflow: hidden;
        }

        .why-choose-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="%231e293b80" points="0,100 100,0 100,100"/></svg>') no-repeat bottom;
            background-size: 100% 50%;
            opacity: 0.3;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00f0ff, #ff00aa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .reason-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
             box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);                                                
        }

        .reason-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 4px;
            background: linear-gradient(90deg, #00f0ff, #ff00aa, #00ff9d);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
        }

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

        .reason-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            background: rgba(255, 255, 255, 0.15);
        }

        .icon-box {
            width: 80px;
            height: 80px;
            background: rgb(250, 182, 55);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 2rem;
            color: white;
            transition: all 0.4s ease;
        }

        .reason-card:hover .icon-box {
            transform: rotate(360deg) scale(1.2);
        }

        .counter {
            font-size: 3rem;
            font-weight: 800;
            color: #00f0ff;
        }

        .img-hover-zoom {
            overflow: hidden;
            border-radius: 16px;
        }

        .img-hover-zoom img {
            transition: transform 0.8s ease;
        }

        .img-hover-zoom:hover img {
            transform: scale(1.15);
        }


    
    .clients-section {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }

    .marquee-wrapper {
        overflow: hidden;
        mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%
        );
    }

    .marquee-track {
        animation: scroll 35s linear infinite;
        width: max-content; /* important for duplication */
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .marquee-track:hover {
        animation-play-state: paused;
    }

    .client-logo {
        height: 60px;
        width: auto;
        transition: all 0.4s ease;
        filter: grayscale(100%) brightness(0.8);
        opacity: 0.7;
    }

    .marquee-item:hover .client-logo {
        filter: grayscale(0%) brightness(1);
        opacity: 1;
        transform: scale(1.15);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .client-logo {
            height: 45px;
        }
        .marquee-track {
            animation-duration: 45s; /* slower on mobile */
        }
    }



      /* Placeholder Content to demonstrate footer at bottom */
        .page-content {
            flex: 1;
            padding: 4rem 2rem;
            text-align: center;
        }

        .page-content h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #111;
        }

        /* --- Footer Styling --- */
        .skyruby-footer {
            background-color: var(--bg-footer);
            color: var(--text-main);
            width: 100%;
            padding-top: 5rem;
            padding-bottom: 1.5rem;
            position: relative;
            overflow: hidden; /* Contains any overflow elements */
        }

        .footer-container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr; /* Left slightly wider */
            gap: 4rem;
            align-items: start;
        }

        /* --- Left Section --- */
        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            padding-right: 2rem;
        }

        /* Logo Area */
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 0.5rem;
        }

        .brand-logo i {
            font-size: 1.8rem;
            color: var(--accent-gold);
        }

        .brand-logo span {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #fff;
        }

        .footer-description {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-muted);
            font-weight: 300;
            max-width: 480px;
        }

        /* CTA Button */
        .btn-cta {
            display: inline-block;
            background-color: var(--accent-gold);
            color: #000;
            padding: 12px 28px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            width: fit-content;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
        }

        .btn-cta:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
        }

        /* Newsletter Area */
        .newsletter-section {
            margin-top: 1rem;
        }

        .newsletter-label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .input-group {
            position: relative;
            flex: 1;
        }

        .input-field {
            width: 100%;
            background-color: #1a1a1a;
            border: 1px solid var(--border-color);
            color: #fff;
            padding: 12px 16px;
            border-radius: 4px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
        }

        .input-field:focus {
            border-color: var(--accent-gold);
        }

        .btn-submit {
            background-color: var(--accent-gold);
            color: #000;
            border: none;
            padding: 0 24px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn-submit:hover {
            background-color: var(--accent-hover);
        }

        /* --- Right Section (Boxed Container) --- */
        .footer-right-box {
            background-color: var(--bg-box);
            border: 1px solid #2a2a2a; /* Subtle border */
            border-radius: 24px; /* Smooth rounded corners */
            padding: 3rem;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .box-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        /* Address Section */
        .address-section h4,
        .contact-section h4,
        .social-section h4 {
            color: var(--accent-gold);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.2rem;
            font-weight: 600;
        }

        .location-item {
            margin-bottom: 1.2rem;
        }
        
        .location-item:last-child {
            margin-bottom: 0;
        }

        .location-title {
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 4px;
            display: block;
        }

        .location-text {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
            color: var(--text-muted);
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .contact-item:hover {
            color: #fff;
        }

        .contact-item i {
            color: var(--accent-gold);
            font-size: 0.9rem;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid var(--accent-gold);
            border-radius: 50%;
            color: var(--accent-gold);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .social-link:hover {
            background-color: var(--accent-gold);
            color: #000;
            transform: translateY(-3px);
        }

        /* --- Footer Bottom --- */
        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #222;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: var(--container-width);
            margin-left: auto;
            margin-right: auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .copyright-text {
            color: #666;
            font-size: 0.85rem;
        }

        /* Scroll Top Button */
        .scroll-top-btn {
            background-color: var(--accent-gold);
            color: #000;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }

        .scroll-top-btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-3px);
        }

        /* --- Toast Notification --- */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #1a1a1a;
            border-left: 4px solid var(--accent-gold);
            color: #fff;
            padding: 16px 24px;
            border-radius: 4px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            gap: 12px;
            transform: translateX(150%);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 999;
        }

        .toast.show {
            transform: translateX(0);
        }

        .toast i {
            color: var(--accent-gold);
        }

        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr; /* Stack vertically */
                gap: 3rem;
            }
            
            .footer-left {
                padding-right: 0;
            }

            .footer-right-box {
                padding: 2rem;
            }
        }

        @media (max-width: 600px) {
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .btn-submit {
                padding: 12px;
            }
        }




        .container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px;
    min-height: 100vh;
    background: #ffffff;
}

.card1 {
    background: #287bff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 320px;
    height: 450px;
    margin: 30px;
    border-radius: 20px;
    border-bottom-left-radius: 160px;
    border-bottom-right-radius: 160px;
    box-shadow: 0 15px 0 #fff,
            inset 0 -15px 0 rgba(255, 255, 255, 0.24),
            0 45px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
     
}

.card1::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -40%;
    padding: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
    transform: rotate(35deg);
    pointer-events: none;
    filter: blur(5px);
}

.card1:nth-child(1) {
    background: linear-gradient(to bottom, #ff2ae0, #645bf6);
}

.card1:nth-child(2) {
    background: linear-gradient(to bottom, #ffec61, #f321d7);
}

.card1:nth-child(3) {
    background: linear-gradient(to bottom, #24ff72, #9a4eff);
}

.card1 .icon {
    position: relative;
    width: 140px;
    height: 120px;
    background: #ffffff;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1),
            inset 0 -8px 0 #fff;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.card1 .icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border-top-right-radius: 50px;
    box-shadow: 15px -15px 0 15px #3c2846;
}

.card1 .icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border-top-left-radius: 50px;
    box-shadow: -15px -15px 0 15px #3c2846;
}

.card1 .icon ion-icon {
    color: #fff;
    position: relative;
    font-size: 6em;
    z-index: 1000;
    --ionicon-stroke-width: 24px;
}

.card1 .icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-top: 25px;
    z-index: 1000;
}


.card1 .content {
    position: absolute;
    width: 100%;
    padding: 30px;
    padding-top: 150px;
    text-align: center;
}

.card1 .content h2 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 15px;
}

.card1 .content p {
    color: #fff;
    line-height: 1.5em;
}

.explore-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: 0.6s;
}

.explore-btn:hover::before {
    left: 100%;
}

.explore-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
