:root {
            --primary-orange: #14277a;
            --dark-gray: #333;
            --light-blue: #e6f7ff;
            --text-gray: #666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background: #14277a;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-orange) !important;
        }

        .nav-link {
            color: #fff !important;
            margin: 0 15px;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-orange) !important;
        }

        .btn-quote {
            background: var(--primary-orange);
            color: #fff;
            padding: 8px 25px;
            border-radius: 25px;
            border: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-quote:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--light-blue) 0%, #fff 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255, 106, 0, 0.05);
            border-radius: 50%;
        }

        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: bold;
            color: var(--dark-gray);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content h1 span {
            color: var(--primary-orange);
        }

        .content-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 50px;
            align-items: center;
        }

        .image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            
            animation: fadeInLeft 0.8s ease;
        }

        .image-container img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-container:hover img {
            transform: scale(1.05);
        }

        .steps-container {
            animation: fadeInRight 0.8s ease;
        }

        .step-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .step-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
        }

        .step-number {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            min-width: 60px;
        }

        .step-icon {
            font-size: 2.5rem;
            animation: bounce 2s infinite;
        }

        .step-title {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 10px;
            flex: 1;
        }

        .step-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            padding-left: 80px;
        }

        .cta-section {
            text-align: center;
            animation: fadeInUp 0.8s ease;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .cta-primary {
            background: white;
            color: #667eea;
        }

        .cta-primary:hover {
            background: #667eea;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .cta-secondary {
            background: #25D366;
            color: white;
        }

        .cta-secondary:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }

            .content-row {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .image-container img {
                height: 300px;
            }

            .step-card {
                padding: 20px;
            }

            .step-description {
                padding-left: 0;
                margin-top: 10px;
            }

            .step-header {
                flex-direction: column;
                text-align: center;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        } {
            font-size: 24px;
            color: #000000;
            margin-bottom: 30px;
            line-height: 35px;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }

        .feature-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            padding: 10px 20px;
            border-radius: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .feature-badge i {
            color: #00c853;
            font-size: 1.2rem;
        }

        .hero-image {
            position: relative;
            z-index: 1;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
        }

        /* Section Titles */
        .section-title {
            font-size: 2.2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 50px;
            color: var(--dark-gray);
        }

        .section-title span {
            color: #ff6b3d;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: #f9f9f9;
        }

        .service-card {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 106, 0, 0.2);
            border-color: var(--primary-orange);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: background 0.3s;
        }

        .service-card:hover .service-icon {
            background: var(--primary-orange);
        }

        .service-icon i {
            font-size: 2rem;
            color: var(--primary-orange);
            transition: color 0.3s;
        }

        .service-card:hover .service-icon i {
            color: #fff;
        }

        .service-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-gray);
        }

        .service-card p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-orange);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-icon i {
            font-size: 1.5rem;
            color: #fff;
        }

        .benefit-content h5 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark-gray);
        }

        .benefit-content p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Quote Form Section */
        .quote-section {
            padding: 80px 0;
            background: var(--light-blue);
        }

        .quote-form {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .form-control, .form-select {
            border-radius: 10px;
            padding: 12px 20px;
            border: 2px solid #e0e0e0;
            margin-bottom: 20px;
            transition: border-color 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-orange);
            box-shadow: none;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: #f9f9f9;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .stars {
            color: #ffc107;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .client-name {
            font-weight: bold;
            color: var(--dark-gray);
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }

        .accordion-button {
            background: #fff;
            color: var(--dark-gray);
            font-weight: 600;
            border-radius: 10px !important;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-orange);
            color: #fff;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-orange);
        }

        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: #14277a;
            color: #fff;
        }

        .contact-info {
            margin-bottom: 30px;
        }

        .contact-info h4 {
            color: #ff6b3d;
            margin-bottom: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .contact-item i {
            color: #ff6b3d;
            font-size: 1.5rem;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 30px 0;
            text-align: center;
        }

        footer p {
            margin: 0;
        }

        /* Popup Modal */
        .popup-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .popup-content {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            position: relative;
        }

        .close-popup {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-gray);
            transition: color 0.3s;
        }

        .close-popup:hover {
            color: var(--primary-orange);
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }

        .flag-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.flags-wrapper {
  overflow: hidden;
}

.flags-container {
  display: flex;
  gap: 40px;
  transition: transform 0.5s ease-in-out;
}

.flag-item {
  width: 120px;
  height: 80px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.flag-item svg {
  width: 100%;
  height: 100%;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #8b3777;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #a84b92;
}

.slider-btn.prev {
  left: -20px;
}

.slider-btn.next {
  right: -20px;
}

@media (max-width: 768px) {
  .flags-container {
    gap: 20px;
  }
  .slider-btn {
    width: 35px;
    height: 35px;
  }
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide-item {
    min-width: 100%;
    box-sizing: border-box;
}

.slide-card img {
    transition: transform 0.3s;
}

.slide-card:hover img {
    transform: scale(1.05);
}

.slider-dots .dot {
    transition: background 0.3s;
}

.feedback {
      background-color : #14277a;
      color: #fff !important;
      padding: 4px 23px;
      padding-bottom: 10px !important;
      border-radius: 4px;
      border-color: #46b8da;
    }

    #mybutton {
      position: fixed;
      bottom: 50%;
      right: -50px;
      z-index: 99999;
      cursor: pointer;
      transform: rotate(-90deg);
    }

    .main-heading h2{
      background-color: #054d9a;
      color: #fff;
      padding: 10px;
      border-radius: 10px;
      text-align: center;
    }


    .float{
   position:fixed;
   width:60px;
   height:60px;
   bottom:40px;
   right:40px;
   background-color:#25d366;
   color:#FFF;
   border-radius:50px;
   text-align:center;
  font-size:30px;
   box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
   margin-top:16px;
}

#callme {
        position: fixed;
        right: 30px;
        bottom: 100px;
        width: 70px;
        height: 70px;
        cursor: pointer;
      
        z-index: 99990;
    }
    #callme #callmeMain {
        -moz-border-radius: 50% !important;
        -webkit-border-radius: 50% !important;
        border-radius: 50% !important;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: rgb(40 167 69);
        width: 60px;
        height: 60px;
        -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
        -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
        animation: zcwmini2 1.5s 0s ease-out infinite;
    }
    #callme #callmeMain:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -6px;
        left: -6px;
        background-image: url(../img/mini.png);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-animation: zcwphone2 1.5s linear infinite;
        -moz-animation: zcwphone2 1.5s linear infinite;
        animation: zcwphone2 1.5s linear infinite;
    }
    @-webkit-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-webkit-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }

    .gellery-block img {
  width: 100%;
  height: 250px; /* or any fixed height you prefer */
  object-fit: cover; /* keeps aspect ratio without distortion */
}

 .slider-section {
    text-align: center;
    padding: 60px 0;
  }

  .slider-section h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .slider-section h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 30px;
  }

  .slider-container {
    position: relative;
    width: 90%;
    
    margin: auto;
    overflow: hidden;
  }

  .slider-track {
    display: flex;
    width: calc(250px * 12); /* enough width for duplicated slides */
    animation: scroll 25s linear infinite;
  }

  .slide {
    min-width: 250px;
    margin: 0 10px;
    text-align: center;
    flex-shrink: 0;
  }

  .slide img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
  }

  .slide img:hover {
    transform: scale(1.05);
  }

  .slide p {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 500;
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @media (max-width: 768px) {
    .slide {
      min-width: 180px;
    }
    .slider-track {
      animation-duration: 20s;
    }
  }

  .slider-section {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  animation: scroll 60s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 150px;   /* fixed width for each slide */
  height: 150px;  /* fixed height for each slide */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps proportions */
  border-radius: 8px;
}

/* Continuous scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slide {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .slide {
    width: 100px;
    height: 100px;
  }
}


.content-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 50px;
            align-items: center;
        }

        .image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
           
            animation: fadeInLeft 0.8s ease;
        }

        .image-container img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-container:hover img {
            transform: scale(1.05);
        }

        .steps-container {
            animation: fadeInRight 0.8s ease;
        }

        .step-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .step-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
        }

        .step-number {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            min-width: 60px;
        }

        .step-icon {
            font-size: 2.5rem;
            animation: bounce 2s infinite;
        }

        .step-title {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 10px;
            flex: 1;
        }

        .step-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            padding-left: 80px;
        }

        .cta-section {
            text-align: center;
            animation: fadeInUp 0.8s ease;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .cta-primary {
            background: white;
            color: #667eea;
        }

        .cta-primary:hover {
            background: #667eea;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .cta-secondary {
            background: #25D366;
            color: white;
        }

        .cta-secondary:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }

            .content-row {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .image-container img {
                height: 300px;
            }

            .step-card {
                padding: 20px;
            }

            .step-description {
                padding-left: 0;
                margin-top: 10px;
            }

            .step-header {
                flex-direction: column;
                text-align: center;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .category-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease;
            animation-fill-mode: both;
        }

        .category-card:nth-child(1) { animation-delay: 0.1s; }
        .category-card:nth-child(2) { animation-delay: 0.2s; }
        .category-card:nth-child(3) { animation-delay: 0.3s; }
        .category-card:nth-child(4) { animation-delay: 0.4s; }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .category-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
        }

        .category-card:hover::before {
            opacity: 1;
        }

        .category-card:hover .category-icon,
        .category-card:hover .category-title,
        .category-card:hover .category-description {
            color: black;
            position: relative;
            z-index: 1;
        }

        .category-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            display: inline-block;
            animation: bounce 2s infinite;
            transition: transform 0.4s ease;
        }

        .category-card:hover .category-icon {
            animation: none;
            
        }

        .category-title {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
            transition: color 0.4s ease;
        }

        .category-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            transition: color 0.4s ease;
        }

        .note-section {
            animation: fadeInUp 0.8s ease 0.5s;
            animation-fill-mode: both;
        }

        .note-content {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 25px;
            padding: 50px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }

        .note-content::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .note-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            display: inline-block;
            animation: swing 3s ease-in-out infinite;
        }

        .note-title {
            font-size: 2rem;
            color: white;
            margin-bottom: 15px;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .note-text {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.95);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes swing {
            0%, 100% {
                transform: rotate(0deg);
            }
            25% {
                transform: rotate(10deg);
            }
            75% {
                transform: rotate(-10deg);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .categories-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .category-card {
                padding: 30px 20px;
            }

            .note-content {
                padding: 30px 20px;
            }

            .note-title {
                font-size: 1.5rem;
            }

            .note-text {
                font-size: 1rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

          .float{
   position:fixed;
   width:60px;
   height:60px;
   bottom:40px;
   right:40px;
   background-color:#25d366;
   color:#FFF;
   border-radius:50px;
   text-align:center;
  font-size:30px;
   box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
   margin-top:16px;
}


    
