        /* Global Styles */
        :root {
            --primary-color: #0A4D80;
            --secondary-color: #57C785;
            --light-blue: #e7f3ff;
            --white-space: #ffffff;
            --text-color: #333;
            --heading-color: #1e2355;
            --text-dark: #1e2355;
            --text-light: #555;
            --border-light: #e9ecef;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
             font-family: 'Raleway', sans-serif;
            color: var(--text-color);
            background-color: #ffffff;
            overflow-x: hidden;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1rem;
            color: #666;
            margin-bottom: 3rem;
            text-align: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .dropdown-toggle::after {
            transition: transform 0.3s ease;
        }

        .mega-dropdown {
            width: 100vw;
            left: 0;
            top: 100%;
            position: absolute;
            background: #ffffff;
            padding: 2rem;
            display: none;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
            border-top: 1px solid #e9ecef;
        }

        .mega-dropdown .dropdown-item {
            font-weight: 500;
            color: #333;
            transition: all 0.3s ease;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            margin-bottom: 0.25rem;
            display: flex;
            align-items: center;
        }

        .mega-dropdown .dropdown-item:hover {
            background-color: rgba(10, 77, 128, 0.05);
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .mega-dropdown .dropdown-item i {
            width: 20px;
            margin-right: 8px;
            opacity: 0.7;
        }

        .mega-dropdown h6 {
            margin-bottom: 1rem;
            font-size: 0.875rem;
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .mega-dropdown h6 i {
            margin-right: 8px;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 14px;
        }

        .btn-primary:hover {
            background: #083a66;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(10, 77, 128, 0.3);
            color: white;
        }

        .btn-outline-light {
            border: 2px solid white;
            color: white;
            border-radius: 50px;
            font-weight: 600;
            padding: 0.75rem 2rem;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .btn-outline-light:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: url('img/Setupzo (1).png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            padding: 0;
            position: relative;
        }

        @media (max-width: 768px) {
            .hero-section {
                background: url('img/Hero image website Setupzo mobile view (2).png');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                min-height: 130vh;
            }
        }

        .hero-text {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 10px;
            margin-top: 30px;
            text-align: justify !important;
        }
          @media (max-width: 768px) {
              .hero-text{
                 font-size:29px !important; 
                 font-weight: 500;
                 padding-top: 75px !important;
              }
             
}
             @media(max-width:768px){
                 body{
                     margin-top:-30px !important;
                 }
             }
        @media (max-width: 768px) {
            .hero-buttons {
                padding-bottom: 330px;
            }
        }

        .hero-text span {
            color: #00d4ff;
        }

        .hero-description {
            font-size: 1.2rem;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 1.0rem;
            opacity: 0.95;
            text-align: justify !important;
        }
        @max-width(768px){
            .hero-description{
                font-size:1.0rem !important;
                
            }
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Overlapping Section */
        .overlap-section {
            position: absolute;
            bottom: -120px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            z-index: 10;
        }

        @media (max-width: 768px) {
            .overlap-section {
                width: 95%;
                bottom: -100px;
            }
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e7f3ff 100%);
            border-radius: 12px;
            padding: 2.5rem 2rem;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
            transition: all 0.3s ease;
            text-align: center;
            border: 2px solid #e3e8ef;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            background: linear-gradient(135deg, #ffffff 0%, #e7f3ff 100%);
        }

        .service-card .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #0d6eab);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .service-card .icon i {
            font-size: 2.5rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 1rem;
        }

        .service-card p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-card .btn {
            width: 100%;
            margin-bottom: 0.5rem;
        }

        /* Feature Card */
        .feature-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e7f3ff 100%);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid #e3e8ef;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            background: linear-gradient(135deg, #ffffff 0%, #e7f3ff 100%);
        }

        .feature-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .feature-card .card-body {
            padding: 2rem;
        }

        .feature-card h5 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 1rem;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
        }

        /* Steps Section */
        .steps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .step-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-color);
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(10, 77, 128, 0.15);
        }

        .step-number {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), #0d6eab);
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .step-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 0.75rem;
        }

        .step-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        /* FAQ Section */
        .accordion {
            border-radius: 12px;
            overflow: hidden;
            border: none;
        }

        .accordion-item {
            border: none;
            border-bottom: 1px solid #e9ecef;
            background: white;
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-button {
            background: white;
            border: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 1.5rem;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--primary-color), #0d6eab);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-button::after {
            background-image: none;
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            color: white;
        }

        .accordion-body {
            background: white;
            padding: 1.5rem;
            color: #666;
            line-height: 1.8;
        }

        /* Contact Section */
        .modern-contact-form {
            background: linear-gradient(135deg, #f8f9fa 0%, #e7f3ff 100%);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            height: 100%;
            border: 2px solid #e3e8ef;
        }

        .form-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 0.5rem;
        }

        .form-description {
            color: #666;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .modern-input {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 0.875rem 1.25rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .modern-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(10, 77, 128, 0.1);
            outline: none;
            background: white;
        }

        .modern-input::placeholder {
            color: #999;
        }

        .contact-details-box {
            background: linear-gradient(135deg, var(--primary-color), #0d6eab);
            padding: 2.5rem;
            border-radius: 20px;
            color: white;
            height: 100%;
            box-shadow: 0 10px 40px rgba(10, 77, 128, 0.3);
        }

        .contact-details-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .contact-details-subtitle {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-method:last-of-type {
            border-bottom: none;
            margin-bottom: 2.5rem;
        }

        .contact-method-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-method-icon.whatsapp {
            background: rgba(37, 211, 102, 0.2);
        }

        .contact-method-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .contact-method-info h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.25rem;
        }

        .contact-method-info a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .contact-method-info a:hover {
            color: white;
            text-decoration: underline;
        }

        .contact-cta {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.25rem;
            border-radius: 12px;
            text-align: center;
        }

        .contact-cta p {
            margin: 0;
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
        }

        .form-control {
            border-radius: 8px;
            padding: 0.875rem 1rem;
            border: 1px solid #e0e0e0;
            font-size: 1rem;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(10, 77, 128, 0.15);
        }

        .form-label {
            font-weight: 500;
            color: #333;
            margin-bottom: 0.5rem;
        }

        /* Button Styles */
        .btn1 {
            background: linear-gradient(135deg, #1e2355 0%, #2d3561 100%);
            padding: 10px !important;
            color: white !important;
        }

        .btn2 {
            padding: 10px !important;
            border: 1px solid white !important;
        }

        .card {
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: scale(0.97);
            box-shadow: 0 12px 40px rgba(0, 123, 255, 0.35);
        }

        .btn2:hover {
            background-color: #0d6eab;
        }

        /* Popup Styles */
        .hero-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .popup-content {
            background: #fff;
            padding: 30px;
            max-width: 900px;
            width: 95%;
            border-radius: 10px;
            position: relative;
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-text {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .mega-dropdown {
                display: none !important;
                padding: 1rem;
                max-height: 400px;
                overflow-y: auto;
                overflow-x: hidden;
            }

            .mega-dropdown.show {
                display: block !important;
            }

            .mega-dropdown .row {
                display: flex !important;
                flex-direction: column !important;
            }

            .mega-dropdown .col-md-2 {
                width: 100% !important;
                margin-bottom: 1.5rem;
            }

            .navbar-collapse {
                background: white;
                padding: 1rem;
                margin-top: 10px;
                border-radius: 8px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                max-height: 80vh;
                overflow-y: auto;
            }
        }
        .navbar{
            margin-top:0px;
        }

        @media (max-width: 767px) {
            .hero-text {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .step-card {
                padding: 1.5rem;
            }

            .step-number {
                width: 45px;
                height: 45px;
                font-size: 1.25rem;
            }

            .step-title {
                font-size: 1.15rem;
            }

            .step-description {
                font-size: 0.95rem;
            }

            .modern-contact-form {
                padding: 1.5rem;
            }

            .contact-details-box {
                padding: 1.5rem;
            }

            .form-title {
                font-size: 1.25rem;
            }

            .contact-details-title {
                font-size: 1.25rem;
            }

            .contact-method {
                margin-bottom: 1.25rem;
                padding-bottom: 1.25rem;
            }

            .contact-method-icon {
                width: 40px;
                height: 40px;
            }

            .contact-method-icon i {
                font-size: 1.1rem;
            }

            .contact-method-info h5 {
                font-size: 0.9rem;
            }

            .contact-method-info a {
                font-size: 0.85rem;
            }

            .modern-input {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }

            .btn-primary {
                padding: 0.75rem 1.5rem;
                font-size: 0.95rem;
            }

            .form-description,
            .contact-details-subtitle {
                font-size: 0.85rem;
            }

            .contact-cta p {
                font-size: 0.85rem;
            }
        }
        .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: rgba(255, 255, 255, 0.8); /* white with 80% opacity */
    color: #000;
    transform: translateY(100%); /* hide initially */
    transition: transform 0.4s ease-in-out;
    padding: 1rem;
}

.card:hover .card-overlay {
    transform: translateY(0); /* slide up on hover */
}

/* Smooth text slide */
.card-overlay h5,
.card-overlay p {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.card:hover .card-overlay h5,
.card:hover .card-overlay p {
    transform: translateY(0);
    opacity: 1;
}

.card-overlay1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
      background: linear-gradient(to bottom, #1e2355, rgba(0,0,0,0)); /* semi-transparent overlay */
    color: #fff;
    transform: translateY(100%) translateX(50px); /* hide below + right */
    transition: transform 0.5s ease-in-out;
    padding: 1rem;
}

.card1:hover .card-overlay1 {
    transform: translateY(0) translateX(0); /* slide bottom→top + right→left */
}

/* Text animation */
.card-overlay1 h3,
.card-overlay p {
    transform: translateX(50px);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.card1:hover .card-overlay1 h3,
.card:hover .card-overlay p {
    transform: translateX(0);
    opacity: 1;
}
.testimonial-box {
  background-color: rgba(140, 169, 255, 0.25);
  border: 2px solid red;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  padding: 20px;
  height: 100%;
}

.google-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.stars {
  color: #FFC107;
  font-size: 18px;
}

.testimonial-text {
  font-size: 14px;
  color: #333;
}

/* Hide testimonials by default */
.testimonial-item {
  display: none;
}
/* Space between accordion items */
.accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

/* Remove default Bootstrap arrow */
.accordion-button::after {
  display: none;
}

/* Add + / - icon on RIGHT */
.accordion-button::before {
  content: "+";
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  right: 25px;
  transition: 0.2s ease;
}

/* Show - when open */
.accordion-button:not(.collapsed)::before {
  content: "−";
}

/* Ensure text doesn't overlap icon */
.accordion-button {
  padding: 20px 60px 20px 25px;
  font-weight: 600;
  position: relative;
}

/* Body spacing */
.accordion-body {
  padding: 20px 25px;
  line-height: 1.7;
}
@max-width(768px){
    .p1{
        font-size:1.0rem !important;
    }
}
.p1{
    font-size:1.2rem;
}
.img1{
    height: 25px;
}

.navbar.container{
    margin-top: 50px;
    }

@max-width(768px){
    .img1{
        height: 25px !important;
    }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
    /* Base style: desktop/tablet */
    #companyNameForm .input-group {
        display: flex;
        gap: 10px;
    }

    #companyNameForm .input-group input {
        flex: 1; /* input takes remaining space */
        min-width: 0; /* prevents shrinking */
    }

    #companyNameForm .input-group button {
        white-space: nowrap; /* prevents button text from wrapping */
    }

    /* Mobile view: stacked */
    @media (max-width: 767px) {
        #companyNameForm .input-group {
            flex-direction: column;
        }

        #companyNameForm .input-group input,
        #companyNameForm .input-group button {
            width: 100%; /* full width on mobile */
            box-sizing: border-box;
        }

        #companyNameForm .input-group input {
            margin-bottom: 10px; /* spacing between input & button */
        }
    }
    @media(max-width:768px){
        .overlap-section{
            margin-top: 250px !important;
        }
    }
        @media(max-width:480px){
        .btn-hero{
            font-size:16px !important;
            margin: auto;
        }
    }
    .text-overlay-hero{
        font-size:30px;
    }
           @media(max-width:480px){
 .text-overlay-hero{
        font-size:20px;
    }
    }
         @media(max-width:480px){
 .section-title{
        font-size:25px;
        text-align: justify;
    }
    }
        @media(max-width:480px){
 .btn2{
      margin: auto !important;
      margin-top: 5px;
      margin-bottom:5px;
    }
    }
            @media(max-width:480px){
 .btn-short{
    font-size:12px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    }
    }