       :root {
            --primary-bg: #f9fafb;
            --secondary-bg: #ffffff;
            --primary-border: #e5e7eb;
            --primary-text: #1f2937;
            --secondary-text: #6b7280;
            --highlight: #3b82f6;
            --highlight-hover: #2563eb;
            --button-text: #ffffff;
            --shadow-light: rgba(0, 0, 0, 0.05);
        }

        body {
            font-family: 'Segoe UI', Tahoma, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--primary-bg);
            color: var(--primary-text);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #244b72;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--secondary-text);
        }

        .calculator-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .form-container, .results-container {
            background-color: var(--secondary-bg);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 10px var(--shadow-light);
            flex: 1 1 45%;
            min-width: 300px;
        }

        label {
            font-weight: bold;
            display: block;
            margin-bottom: 8px;
        }

        select, input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid var(--primary-border);
            border-radius: 8px;
            font-size: 1rem;
        }

        select:focus, input:focus {
            border-color: var(--highlight);
            outline: none;
        }

        .button {
            width: 100%;
            padding: 12px 20px;
            background-color: var(--highlight);
            color: var(--button-text);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }

        .button:hover {
            background-color: var(--highlight-hover);
        }

        .results-container .results-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .results-container .results-item div {
            color: var(--secondary-text);
        }

        .results-container .results-item span {
            font-weight: bold;
            color: var(--primary-text);
        }

        hr {
            border: none;
            border-top: 1px solid var(--primary-border);
            margin: 15px 0;
        }

        @media (max-width: 768px) {
            .calculator-container {
                flex-direction: column;
            }

            .form-container, .results-container {
                flex: 1 1 100%;
            }
        }
        .form-row {
        display: flex;
        gap: 20px; /* Adjust spacing between the fields */
        }

        .form-group {
        flex: 1; /* Makes both fields take equal width */
        }
        select {
        white-space: nowrap;
      }
      .button {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
        }
     
        .feature-item, .benefit-item {
            margin-bottom: 15px;
        }

        .highlight {
            color: #3b82f6;
        }
        .other-calculators, .domestic-marketplace-calculators,.international-marketplace-calculators,.amazon-calculators,.calculators h2 {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.other-calculators h2 {
    font-size: 24px;
    color: #244b72;
    margin-bottom: 10px;
}


.other-calculators p {
    font-size: 16px;
    color: #244b72;
    margin-bottom: 20px;
}

.calculator-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.calculator-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.calculator-link:hover {
    background-color: #0056b3;
}
.enquiry-form {
    background: linear-gradient(135deg, #6dd5fa, #2980b9);
    padding: 40px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.form-container {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    color: #333;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.enquiry-form h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2980b9;
}

.enquiry-form p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #2980b9;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2980b9;
    box-shadow: 0px 0px 5px rgba(41, 128, 185, 0.5);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.submit-button {
    background: #2980b9;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
    background: #1e6d99;
    transform: translateY(-3px);
}

.submit-button:active {
    background: #164f73;
    transform: translateY(1px);
}
.contact-section {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 400px;
}
.contact-section h3 {
    margin-bottom: 10px;
}
.contact-section a {
    text-decoration: none;
    color: #25D366;
    font-weight: bold;
}
.contact-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}
.contact-card h3 {
    color: #333;
    margin-bottom: 15px;
}
.contact-card p {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}
.contact-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.3s ease;
}
.phone-btn {
    background-color: #007bff;
}
.phone-btn:hover {
    background-color: #0056b3;
}
.whatsapp-btn {
    background-color: #25D366;
}
.whatsapp-btn:hover {
    background-color: #1DA851;
}
.icon {
    margin-right: 8px;
    vertical-align: middle;
}
.top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #333;
            padding: 10px 20px;
            color: white;
        }

        .contact-icons img {
            width: 20px;
            margin-right: 10px;
            cursor: pointer;
        }

        .request-call {
            background-color: #ff5722;
            color: white;
            border: none;
            padding: 5px;
            cursor: pointer;
            border-radius: 4px;
        }

        .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #444;
            padding: 10px 20px;
            color: white;
        }

        .nav-bar .logo img {
            max-height: 50px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 4px 0;
        }

        .menu {
            list-style: none;
            display: flex;
            position: relative;
        }

        .menu li {
            margin: 0 10px;
        }

        .menu a {
            color: white;
            text-decoration: none;
        }

        .menu a:hover {
            text-decoration: underline;
        }

        .menu .close-menu {
            display: none;
            position: absolute;
            top: 10px;
            right: 20px;
            color: white;
            background-color: #ff5722;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
            border-radius: 4px;
        }

        .pay-btn img {
            max-height: 40px;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .menu {
                display: none;
                flex-direction: column;
                background-color: #444;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                padding: 20px 0;
                z-index: 1;
            }

            .menu.active {
                display: flex;
            }

            .menu li {
                margin: 10px 0;
                text-align: center;
            }

            .menu .close-menu {
                display: block;
            }

            .pay-btn {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
               align-items: flex-start;
            }

        }
        
footer {
            background: linear-gradient(145deg, #333, #111);
            color: #ddd;
            padding: 60px 20px 20px;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-column {
            flex: 1;
            margin: 20px;
            min-width: 200px;
        }

        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #f39c12;
            border-bottom: 2px solid #f39c12;
            display: inline-block;
            padding-bottom: 5px;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease-in-out;
        }

        .footer-column ul li a:hover {
            color: #f39c12;
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .social-icons a {
            text-decoration: none;
            background: #444;
            color: #fff;
            padding: 10px;
            border-radius: 50%;
            display: inline-block;
            transition: background 0.3s ease;
            font-size: 18px;
        }

        .social-icons a:hover {
            background: #f39c12;
            color: #fff;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            font-size: 14px;
            color: #fff;
        }

        .footer-bottom a {
            color: #f39c12;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        .floating-buttons {
            position: fixed;
            bottom: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #444;
            z-index: 1000;
        }

        .floating-buttons a {
            flex: 1;
            text-align: center;
            padding: 15px 0;
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .floating-buttons a:nth-child(1) {
            background: #25d366;
        }

        .floating-buttons a:nth-child(1):hover {
            background: #20b357;
        }

        .floating-buttons a:nth-child(2) {
            background: #007bff;
        }

        .floating-buttons a:nth-child(2):hover {
            background: #0056b3;
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
            }

            .footer-column {
                margin-bottom: 30px;
            }

            .floating-buttons a {
                font-size: 14px;
                padding: 10px 0;
            }
        }
.calculator-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .calculator-link {
        background-color: #f39c12;
        color: white;
        padding: 10px 15px;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .calculator-link:hover {
        background-color: #004b8d;
    }

    @media (max-width: 768px) {
        .calculator-links {
            flex-direction: column;
        }
    }
    
 .calculators .container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

  .calculators  .card {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      padding: 20px;
      transition: transform 0.2s;
    }

    .calculators .card:hover {
      transform: translateY(-5px);
    }

    .calculators .logo {
      height: 50px;
      margin-bottom: 15px;
    }

    .calculators .title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
      color:#244b72;
    }

    .calculators .specialities {
      font-size: 13px;
      color: #777;
    }
    footer {
  background-color: #333;
  padding: 30px 15px;
  color: #fff;
}

footer .footertitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

footer h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

footer .quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .quick-links li {
  margin-bottom: 8px;
}

footer .quick-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

footer .quick-links a:hover {
  color: #fff;
}

footer .row {
  margin: 0 -10px;
}

footer .col-md-3,
footer .col-sm-6 {
  padding: 10px;
}

footer h3, footer h4 {
  color: #f9f9f9;
}

/* Responsive Styles */
@media (max-width: 768px) {
  footer .col-md-3,
  footer .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  footer .footertitle {
    text-align: center;
  }
}
footer span {
    color: #fff;
    margin-top: 0;
    font-size: 15px;
    width: 100%;
    display: block;
    line-height: 2;
}
footer a {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}
footer .social li.facebook, .social li.twitter, .social li.google-plus, .social li.linkedin, .social li.youtube {
    background: #204385;
}
footer .social li a {
    color: #fff;
    display: block;
    line-height: 38px;
}
footer li {
    list-style-type: none;
    color: #fff;
}
footer .social li {
    padding: 0;
    display: inline-block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
}
.amazon-calculators a, .other-calculators a, .international-marketplace-calculators a, .domestic-marketplace-calculators a{text-decoration: none;color:#000;}
.contact-icons a{text-decoration:none !important;}
