* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #FFFFFF;
        }
        
        :root {
            --primary-blue: #2D55A5;
            --secondary-blue: #0590E5;
            --white: #FFFFFF;
            --light-gray: #D0D2D3;
            --dark-gray: #181413;
            --gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        .header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(45, 85, 165, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-blue);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-blue);
        }
        
        /* Hero Section */
        .hero {
            background: var(--gradient);
            color: var(--white);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -50%;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(180deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: 1px;
            padding: 5px 10px;
            background: aliceblue;
            width: fit-content;
            color: #1f6abc;
            border-radius: 5px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero h2{
            font-size: 42px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-align: center;
        }
        .hero p {
            font-size: 16px;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            text-align: center;
            color: #fff;
            max-width: 80%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--white)!important;
            color: var(--primary-blue)!important;
            padding: 1rem 2.5rem!important;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            width: fit-content;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            text-decoration: none;
        }
        
        /* Why Partner Section */
        .why-partner {
            padding: 5rem 0 2rem;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .section-title p {
            font-size: 16px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
/*            margin-top: 4rem;*/
        }
        
        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(45, 85, 165, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(45, 85, 165, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(45, 85, 165, 0.15);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--white);
            font-size: 1.5rem;
        }
        .feature-icon img{
            width: 45px;
            height: 45px;
        }
        .feature-card h4 {
            font-size: 1.4rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.7;
        }

         /* Benefits Section */
        .benefits {
            padding: 5rem 0 3rem;
            background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
        }
        
        .benefits-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: flex-start;
        }
        
        .benefits-visual {
            position: relative;
            text-align: center;
        }
        
        .benefits-image {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            border-radius: 30px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(45, 85, 165, 0.15);
        }
        
        .benefits-image::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M20 20c0-11.046 8.954-20 20-20s20 8.954 20 20-8.954 20-20 20-20-8.954-20-20z'/%3E%3C/g%3E%3C/svg%3E") repeat;
            animation: rotate 30s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .benefits-icon {
            font-size: 4rem;
            color: var(--white);
            z-index: 2;
            position: relative;
        }
        
        .benefits-sparkle {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 40px;
            height: 40px;
            background: var(--secondary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 10px 25px rgba(5, 144, 229, 0.3);
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .benefits-visual h2 {
            font-size: 2.2rem;
            color: #555555;
/*            margin-bottom: 1rem;*/
            font-weight: 600;
            text-align: left;
        }
        
        .benefits-intro {
            /*margin-bottom: 2rem;
            background: aliceblue;
            border-radius: 10px;
            margin-top: 35px;*/
            padding-top: 10px;
            text-align: left;
        }
        
        .benefits-intro h3 {
            font-size: 1.6rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .benefits-intro p {
            font-size: 14px;
            color: #666;
            margin-bottom: 0.5rem;
            line-height: 1.7;
        }
        .benefits-cta {
            background: var(--gradient);
            color: var(--white);
            padding: 0.7rem 1rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(45, 85, 165, 0.2);
            margin-bottom: 2rem;
        }
        
        .benefits-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(45, 85, 165, 0.3);
            text-decoration: none;
            color: #fff;
        }
        
        .benefits-steps {
            list-style: none;
        }
        
        .benefit-step {
        align-items: flex-start;
        margin-bottom: 1rem;
        padding: 20px 10px 10px;
        background: var(--white);
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(45, 85, 165, 0.05);
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
        margin-bottom: 30px;
        }
        
        .benefit-step:hover {
            border-left-color: var(--secondary-blue);
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(45, 85, 165, 0.1);
        }
        
        .step-number {
            background: var(--gradient);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(45, 85, 165, 0.2);
        }
        
        .step-content h4 {
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            font-weight: 600;
            padding-top: 20px;
        }
        
        .step-content p {
            color: #666;
            line-height: 1.6;
            font-size: 15px;
        }
        /* Operations */
        .operations{
            margin-top: 80px;
        }
        .operations img{
            height: 400px;
            width: 400px;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }
        .operations h3 {
            color: var(--primary-blue);
            font-size: 35px;
            font-weight: 600;
            line-height: 1.3;
        }
        .operations p{
            font-size: 16px;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        .operations li{
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            margin-left: 30px;
        }
        /* Operations End */

         /* Workflow */
        .workflow {
            margin-top: 50px;
            margin-bottom: 60px;
        }
        .workflow img{
            height: 400px;
            width: 400px;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }
        .workflow h3 {
            color: var(--primary-blue);
            font-size: 35px;
            font-weight: 600;
            line-height: 1.3;
        }
        .workflow p{
            font-size: 16px;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        .workflow li{
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            margin-left: 30px;
        }
        /* Workflow End */

        /* Services we offer */
        .services-offer{
                background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
                padding-bottom: 35px;
        }
        .services-offer .pointers{
            background: var(--white);
            padding: 1.3rem 1.3rem 0.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(45, 85, 165, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(45, 85, 165, 0.05);
            margin-top: 30px;
        }
        .services-offer .pointers h3{
            font-size: 19px;
            text-align: center;
            color: #2d55a5;
            font-weight: 600;
        }
        .services-offer .pointers p{
            font-size: 14px;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            text-align: center;
        }
        .services-offer .title{
            font-size: 30px;
            font-weight: 600;
            padding-top: 70px;
            text-align: center;
            color: #555555;
            line-height: 1.4;
        }
        /*  Services we offer end */

        /* Services Section */
        .services {
            padding: 3rem 0;
            background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
            margin-top: 50px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-card {
            background: linear-gradient(135deg, #eaedef 0%, #ffffff 100%);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: var(--gradient);
            transition: left 0.5s ease;
        }
        
        .service-card:hover::before {
            left: 0;
        }
        
        .service-card:hover {
            border-color: var(--secondary-blue);
            transform: translateY(-5px);
        }
        
        .service-card h3 {
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .service-btn {
            background: var(--gradient);
            color: var(--white);
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }
        
        .service-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(45, 85, 165, 0.3);
        }
        
        /* Industries Section */
/*        #vertical-tab {
          padding: 0 0 30px
        }
#vertical-tab .vertical-tab-wrapper {
  box-shadow: 0px 0px 5.88px 0.12px rgba(0, 0, 0, 0.14);
  background: #fff;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab {
  padding: 24px 20px;
  background-color: #eee;
  border-bottom: 1px solid #fff;
  position: relative;
  cursor: pointer;
  font-size: 0;
} 
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .title span img{
    height: 50px;
    width: 50px;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .title {
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: inline;
  vertical-align: middle;
  width: 70%;
  line-height: 1.2;
  color: #000;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active {
  background-color: #fff;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active .title {
  color: #1c2a51;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content {
  display: none;
  padding: 20px 45px 20px 25px;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab-content h3 {
  font-size: 2.25rem;
      font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #1c2a51;
  margin: 0 0 30px;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab-content p {
  font-size: 1.125rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #1c2a51;
  line-height: 1.7;
  font-size: 16px;
  color: #333333;
  margin: 0 0 30px;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab-content.active {
  display: block;
}
#vertical-tab .mobile-vertical-tab {
  display: none;
  position: relative;
  box-shadow: 0px 0px 5.88px 0.12px rgba(0, 0, 0, 0.14);
}
#vertical-tab .mobile-vertical-tab .vertical-tab-header .each-tab-header .each-tab {
  padding: 16px;
  background-color: #5d9ccc;
  border-bottom: 1px solid #fff;
  position: relative;
  text-align: center;
}
#vertical-tab .mobile-vertical-tab .vertical-tab-header .each-tab-header .each-tab .title {
  font-size: 1.375rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  color: #f7dd4b;
}
*/

/* Industries Section */
        .industries {
            padding: 2rem 0 3rem;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: var(--white);
            margin-top: 50px;
        }
        
        .industry-tabs {
            margin-top: 3rem;
        }
        
        .tab-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .tab-button {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .tab-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .tab-button.active {
            background: var(--white);
            color: var(--primary-blue);
            border-color: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .tab-content {
            display: none;
            animation: fadeInUp 0.5s ease;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .industry-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .industry-content h4 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            text-align: center;
        }

        .industry-content img{
            width: 45px;
            height: 45px;
        }
        
        .industry-description {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            opacity: 0.95;
            color: #fff;
        }
        
        .industry-features {
            list-style: none;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .industry-features li {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            position: relative;
            padding-left: 3rem;
            font-size: 1rem;
            line-height: 1.5;
            transition: all 0.3s ease;
        }
        
        .industry-features li:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(5px);
        }
        
        .industry-features li::before {
            content: '✓';
            position: absolute;
            left: 1rem;
            top: 1rem;
            color: #fff;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .industry-cta {
            text-align: center;
            margin-top: 2.5rem;
        }
        
        .industry-cta-btn {
            background: var(--white);
            color: var(--primary-blue);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .industry-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            text-decoration: none;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #more {display: none;}

        .cta {
            background-color: #2D55A5;
            padding: 40px 25px;
            margin-top: 55px;
            border-radius: 20px;
        }
        .cta h2 {
            text-align: center;
            color: #fff;
            padding-bottom: 30px;
        }
        .form-control {
            display: block;
            width: 100%;
            height: calc(1.5em + .75rem + 2px);
            padding: .375rem .75rem;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            color: #fff !important;
            background-color: #2d55a5!important;
            background-clip: padding-box;
            border: none!important;
            border-radius: 0!important;
            transition: border-color .15s ease-in-out, box-shadow .15s  ease-in-out;
            border-bottom: 1px solid #ccc!important;
        }
        .reqError {
            color: #ff0000;
            font-size: 13px;
        }
        button.cta-btn {
            padding: 10px 22px;
            background: #fff;
            border: none;
            border-radius: 15px;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }










        
        /* FAQ Section */
        .faq {
            padding: 5rem 0;
            background: #f8fafb;
        }
        
        .faq-item {
            background: var(--white);
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(45, 85, 165, 0.05);
        }
        
        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary-blue);
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: #fff;
        }
        
        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: #666;
            line-height: 1.7;
            display: none;
        }
        
        .faq-answer.active {
            display: block;
            animation: slideDown 0.3s ease;
        }
        button#myBtn{
            background: var(--gradient);
            color: var(--white);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            margin-left: auto;
            margin-right: auto;
            display: block;
            margin-top: 35px;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Footer */
/*        .footer{
            margin-top: 0!important;
        }*/
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.2rem;
                letter-spacing: 0;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .features-grid,
            .services-grid,
            .industries-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                display: none;
            }
        }
        
        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        @media(max-width:600px){
            .benefits-container{
                display: block;
            }
            .hero h2 {
                font-size: 35px;
            }
            .benefits {
                padding: 3rem 0;
            }
            .benefits-visual h2 {
                font-size: 2rem;
            }
            .services {
                padding: 3rem 0;
            }
            .why-partner {
                padding: 1rem 0;
            }
            .workflow h3{
                font-size: 30px;
            }
            .tab-button{
                padding: 0.5rem 1rem;
            }
            .industry-content{
                padding: 2rem;
            }
        }