/* Default styles for all devices */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
    font-family: Arial, sans-serif;
  }
  
  /* Small devices (phones, 600px and down) */
  @media only screen and (max-width: 600px) {
    .container {
      flex-direction: column;
    }
    .header, .main, .footer {
      width: 100%;
    }
  }
  
  /* Medium devices (tablets, 768px and down) */
  @media only screen and (max-width: 768px) {
    .container {
      flex-direction: column;
    }
    .header, .main, .footer {
      width: 100%;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
    }

    .terms-container p {
        overflow-wrap: break-word;
    }
  }
  
  /* Large devices (desktops, 992px and up) */
  @media only screen and (min-width: 992px) {
    .container {
      flex-direction: row;
    }
    .header, .main, .footer {
      width: 33.33%;
    }
  }
  
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: black;
}
*{
    cursor: none !important;
}
.cursor {
    width: 8px;
    height: 8px;
    border: 2.5px solid black;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    background-color: transparent; /* Transparent inner hole */
    transition: background-color 0.2s ease;
}
/* .cursor:hover{
    border-color: red;
} */
/* Hover effect for clickable elements */
a:hover .cursor, button:hover .cursor, .clickable:hover .cursor {
    background-color: red; /* Inner hole becomes blue */
    border-color: red;
}

/* Optional: ensure the cursor is visible even when not moving */
body:hover .cursor {
    display: block;
    /* border-color: red; */
}

/* Hide the custom cursor when not moving */
body:after {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    background: transparent;
}

header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: 0;
    max-width: 100vw;
    color: black;
    /* padding: 1rem 0; */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100vw;
    /* margin: 0 auto;
    padding: 0 1rem; */
    position: relative;
    overflow: hidden;
    transition: transform 0.8s ease-in-out;
    background-color: transparent;
}

.hidden-nav {
    top: -100px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}
nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    display: flex;
    align-items: center;
    z-index: 3;
}

nav .logo img.logo-image {
    height: 8.375rem;
    width: 14.5rem;
    margin-right: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    font-weight: bolder;
}

/* .nav-whatsapp{
    margin-right: 100px;
} */
.dropdown {
    position: absolute;
    top: 100%;

    left: 0;
    width: 100%;

    background: white;
    padding: 40px 80px;

    display: none;
    justify-content: center;
    gap: 80px;

    opacity: 0;
    /* visibility: hidden; */

    /* transition: all 0.3s ease; */
    z-index: 9999;
}

.dropdown .left {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    min-width: 200px;
    display: flex;
    align-items: center;
    border-right: 1px solid #ddd;
    padding-right: 40px;
    margin-right: 60px;
}
.dropdown .left::after {
    content: "→";
    margin-left: 15px;
    font-size: 1.5rem;
    color: #0b3894;
}
.dropdown .right {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    gap: 20px 60px;
}
.dropdown > * {
    max-width: 1200px;
}

.dropdown .column {
    min-width: 150px;
}
.dropdown .column h3 {
    font-size: 1rem;
    font-weight: 500;
}

.dropdown .column h3 a {
    text-decoration: none;
    color: #333;
    transition: all 0.25s ease;
}

.dropdown .column h3 a:hover {
    color: #0b3894;
    transform: translateX(5px);
}
/* .dropdown .right {
    flex: 5;
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Space between each service column */
    /* border-left: #b8adad solid 1px;
    padding-left: 20px;
    flex-wrap: wrap;
}

.dropdown .column {
    margin-right: 20px;
    flex: 1;
    text-align: left;
    min-width: 150px;
} */
.dropdown .column:last-child {
    margin-right: 0;
}
.dropdown .column:nth-child(4),
.dropdown .column:nth-child(5),
.dropdown .column:nth-child(6){
    margin-top: -20px;
}
.dropdown h3 {
    margin-bottom: 10px;
    color: black; /* Same as text color in your dropdown items */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: left;
}

.dropdown ul {
    flex-direction: column;
    list-style-type: disc;
    margin-top: 30px;
    padding: 0;
}
.dropdown ul li::marker {
    color: #0056b3
}
.dropdown ul li {
    margin-bottom: 5px;
    font-weight: 1;
}

.dropdown ul li a {
    text-decoration: none;
    color: black;
    display: flex;
    padding: 5px 0;
}
.nav-services {
    position: static;
}

.nav-services:hover a{
    color: #000;
}

.nav-services:hover .dropdown {
    opacity: 1;
    visibility: visible;
    display: flex;
    /* transform: translateX(-50%) translateY(0); */
}

/* .nav-services:hover nav,
.nav-services:hover ~ nav {
    background-color: white;
} */

.nav-services:hover .nav a {
    color: black;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

nav ul li a:hover {
    color: #000;
}
.nav-left {
    display: flex;
    gap: 1.5rem;
    margin-right: 295px;
}

.nav-right {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin-right: 70px;
    padding: 0;
    align-items: center;
}

.nav-right li {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: black;
    display: flex; /* Make sure li's content doesn't break into multiple lines */
    align-items: center; /* Vertically center the content */
}

.nav-right li a {
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    /* border: 2px solid #25D366; */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap; /* Prevents wrapping */
    display: flex; /* Ensures icon and text are on the same line */
    align-items: center; /* Vertically centers icon and text */
}

.nav-right li a:hover {
    background-color: #25D366;
    color: white;
}

.nav-right li a:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.nav-right .get-in-touch {
    height: 2rem;
    width: 9rem;
    font-size: 1.25rem;
    background-color: #fff;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    white-space: nowrap; /* Prevents wrapping */
    align-items: center;
    justify-content: center;
}

.nav-right .get-in-touch:hover {
    background-color: #0056b3;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    top: 1rem;
}

/*Menu toggle button */
.menu-toggle div {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/*Menu toggle button on smaller screens */
/* HAMBURGER MENU */
.mobile-logo,
.mobile-socials {
  display: none;
}
header:has(nav.open) ~ .chat-button {
  display: none !important;
}
@media (max-width: 768px) {
  nav .logo {
    display: none;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex !important;
    flex-direction: column;

    position: fixed;
    top: 20px;
    right: 20px;

    z-index: 9999;
  }
}
@media (max-width: 768px) {

  .nav-left {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: #000;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;   /* 👈 move items down */
    align-items: flex-start;

    padding: 120px 30px 40px;
    gap: 10px;

    z-index: 4000;

    transform: translateX(100%);
    transition: 0.4s ease;
  }

  nav.open .nav-left {
    transform: translateX(0);
  }

  /* hide nav-right completely in mobile menu */
  .nav-right {
    display: none !important;
  }
}
@media (max-width: 768px) {

  .nav-left li {
    width: 100%;
  }

  .nav-left li a {
    font-size: 28px;
    font-weight: 500;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    padding: 16px 0;

    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
  }

  .nav-left li a::after {
    content: "→";
    color: #007bff;
    font-size: 20px;
    transition: 0.3s;
}

  .nav-left li a:hover {
    color: #007bff;
    transform: translateX(5px);
  }
}
@media (max-width: 768px) {

  .mobile-logo {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;

    font-size: 24px;
    font-weight: bold;
    color: white;

    z-index: 5000;
  }

  /* .mobile-logo span {
    color: #007bff; /* blue dot */
  }
@media (max-width: 768px) {

  .mobile-socials {
    display: flex;
    position: fixed;
    bottom: 30px;
    left: 20px;
    gap: 15px;

    z-index: 5000;
  }

  .mobile-socials a img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 50%;
    transition: 0.3s ease;
  }

  .mobile-socials a img:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 768px) {
  .dropdown {
    display: none !important;
  }
}
.contact-button {
    background-color: #0044cc;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
}

.contact-button:hover {
    background-color: #0033aa;
}

/* Media Query for GO DIGITAL */
@media (max-width: 768px) {

  .cta-button {
    min-width: 115px;
    height: 48px;

    padding: 0 20px;

    font-size: 16px;
    font-weight: 450;   /* less bold */

    border-radius: 10px;

    margin-top: 20px;
  }

}
/* Media query for WHATSAPP CIRCULAR BUTTON */
@media (max-width: 768px) {

  .chat-button {
    position: fixed;
    right: 15px;
    bottom: 18px;

    width: 56px;
    height: 56px;

    border-radius: 50% !important;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);

    overflow: hidden;
    z-index: 9999;
  }

  .chat-button .button-text {
    display: none !important;
  }

  .chat-button img,
  .chat-button .whatsapp-icon {
    width: 26px;
    height: 26px;

    margin: 0;
    object-fit: contain;
  }

}
/* Media query for T&C and PP */
@media (max-width: 768px) {

  .footer-right {
    display: flex;
    flex-direction: row;   /* side by side */
    justify-content: center;
    align-items: center;
    gap: 16px;

    flex-wrap: wrap;
    padding-right: 0;
  }

  .footer-right a {
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
  }

}
/* Media query for leran more button in center for less than 425px */
@media (max-width: 425px) {

  .services-list .service-item div {
    position: relative;
    text-align: left;
  }

  .services-list .learn-more-btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    display: inline-block;
    margin-top: 22px !important;
  }

}
/* Hero Section */
section#home {
    background: url('bg.png') no-repeat center center / cover;
    color: black;
    text-align: left;

    padding: 5rem 1rem;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    animation: heroZoom 7s ease-in-out infinite alternate;
}
@keyframes heroZoom {

  from {
    background-size: 100%;
    background-position: center center;
  }

  to {
    background-size: 112%;
    background-position: center center;
  }

}

.hero-content {
    max-width: 50rem;
    text-align: left;
    margin: 0;
    padding: 0 1rem;
    color: white;
}
.animate-text {
    opacity: 0; /* Start invisible */
    animation: fadeIn 3s forwards; /* Animation properties */
}

/* Keyframes for fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Optional: adds vertical movement */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Individual delay classes */
.animate-text:nth-of-type(1) {
    animation-delay: 0s; /* No delay for the first text */
}

.animate-text:nth-of-type(2) {
    animation-delay: 1s; /* 0.5 second delay for the second text */
}

.animate-text:nth-of-type(3) {
    animation-delay: 2s; /* 1 second delay for the third text */
}

.hero-content h1 {
    font-size: 2rem;
    margin: 0 0 1rem 0;
}


.hero-content .headline {
    font-size: 4rem;
    margin: 0.5rem 0;
    font-weight: bold;
}

.hero-content .subheadline {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.cta-button {
    background-color: #0044cc;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    max-width: 90vw;
}

.cta-button:hover {
    background-color: #0033aa;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
}

/* Media Queries for Home */
@media (max-width: 768px) {
    section#home {
        padding: 3rem 1rem;
        height: auto;
        min-height: 100svh;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content .headline {
        font-size: 2.5rem;
    }

    .hero-content .subheadline {
        font-size: 1.2rem;
    }
}

/* Contact Section */
section#contact {
    background-color: #ffffff;
    padding: 10rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url('contact.jpg');
    background-size: cover;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #0044cc;
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    height: 9.375rem;
    resize: vertical;
}

button {
    background-color: #0044cc;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #0033aa;
}

/*Contact Page */
#contact .container {
    background: #f9f9f9;
    padding: 2rem 3rem;
    border-radius: 10px;
    max-width: 100vw;
}

#contact h2 {
    font-size: 2rem;
    color: #0044cc;
}

#contact form .form-group {
    margin-bottom: 1.5rem;
}

#contact form label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

#contact form input,
#contact form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

#contact form button {
    background-color: #0044cc;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

#contact form button:hover {
    background-color: #0033aa;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.chat-button:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
}

.whatsapp-icon {
    width: 20px;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.button-text {
    font-size: 1rem;
    vertical-align: middle;
}

/* Media Queries for Contact Section */
@media (max-width: 768px) {
    /* Contact Section */
    section#contact {
        background-color: #ffffff;
        padding: 4rem 1rem;
        max-width: 100vw;
        overflow-x: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-image: url('contact.jpg');
        background-size: cover;
        margin-top: 10%;
        
    }


    .container {
        padding: 1rem;
        width: 70%;
        max-width: 100%;
    }

    h2 {
        font-size: 1.5rem;
    }

    form {
        flex-direction: column;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    input, textarea {
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}
#about {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    background-color: #04215b;
    padding: 4rem 0;
    text-align: left;
}

.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 75rem;
    margin: 80px auto;
    gap: 2rem;
}

.about-image {
    flex: 1;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    height: 40.625rem;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 25%;
}

.about-content {
    flex: 1;
    max-width: 50%;
    color: white;
}

.about-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.about-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        padding: 2rem;
    }

    .about-image, .about-content {
        max-width: 100%;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}
.mission-values-container {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.mission {
    flex: 1;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-image: url('mission.jpg');
    background-position: center;
    background-size: cover;
}

.values {
    flex: 1;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-image: url('vision.jpg');
    background-position: center;
    background-size: cover;
}


.mission h3,
.values h3 {
    font-size: 2.5rem;
    color: #000;
}
.mission p,
.values p {
    font-size: 1.5rem;
    color: white;
}

.values ul {
    list-style-type: none;
    padding: 0;
}

.values ul li {
    margin-bottom: 1rem;
}

/*About Section Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        margin-right: 0;
        margin-bottom: 2rem;
        margin-top: -25%;
    }
    .mission-values-container {
        flex-direction: column;
    }
    .mission,
    .values {
        flex: auto;
        margin-bottom: 2rem;
    }
}

/* Pricing page */
#pricing{
    position: relative;
    margin-top: 0px;
    background-image: url('pricing.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
}
.pricing-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}


.pricing-button {
    text-align: center;
    margin: 0 1rem;
}

.pricing-button img {
    width: 18.75rem;
    height: 18.75rem;
    border-radius: 50%;
    display: block;
    margin: 0 auto 1rem;
    margin-top: 100px;
}

.pricing-button button {
    background-color: #0044cc;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.pricing-packages {
    margin-top: 2rem;
    text-align: center;
    color: black;
}

.hidden {
    display: none;
}
/*Pricing page */
.pricing-packages {
    margin-top: 2rem;
    text-align: center;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
}

.package {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.package h2{
    font-size: 2rem;
    text-align: center;
}
.package h3 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin: 0 -20px 20px -20px;
    background-color:#000000;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
}

.package ul {
    list-style-type: none;
    padding: 0;
}

.package ul li {
    margin-bottom: 0.5rem;
}

.package p {
    margin-top: 1rem;
    font-weight: bold;
}
.menu {
    max-height: 21.875rem;
    overflow-y: auto;
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin-top: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    padding: 0.5rem;
}

.menu li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #000;
    border-bottom: 1px solid #eee; 
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#page-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

#content {
    flex: 1;
}
#billing {
    font-family: Arial, sans-serif;
}

#billing .container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 62.5rem;
    margin: auto;
}

#billing form {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#billing .customer-info, 
#billing .billing-details, 
#billing .additional-info, 
#billing .payment {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#billing h2 {
    margin-bottom: 10px;
    color: #333;
}

#billing label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

#billing input, 
#billing select, 
#billing textarea {
    width: 90%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    font-size: 16px;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#billing input:focus, 
#billing select:focus, 
#billing textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

#billing textarea {
    resize: vertical;
    height: 6.25rem;
}

#billing .place-order {
    background-color: #007bff;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

#billing .place-order:hover {
    background-color: #0056b3;
}

#billing .order-summary {
    flex: 0 0 35%;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#billing .order-summary h2 {
    margin-bottom: 10px;
    color: #333;
}

#billing .order-summary table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

#billing .order-summary table th, 
#billing .order-summary table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    color: #333;
}

#billing .apply-coupon {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#billing .apply-coupon:hover {
    background-color: #0056b3;
}
#services {
    position: relative;
    margin-top: 100px;
    background-image: url('servicesbg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

#services h2 {
    font-family: 'Times New Roman', Times, serif , cursive;
    font-style: italic;
    font-size: 3.5rem;
    margin-top: 0.15rem;
    margin-bottom: 2rem;
    color: #fff;
    max-width: 21.875rem;
    margin: 0 auto;
}
/* Animated heading */
.over {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.over h2 {
    font-size: 48px;
    color: #fff;
    text-align: center;
    position: relative;
    animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.service-category {
    background-color: #000;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.service-category h2{
    font-size: 2rem;
}
.service-category h3 {
    margin: 1rem 0;
    font-size: 1.25rem;
}

.cta-button {
    background-color: #0044cc;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #0033aa;
}

/* Services Responsive Design */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}


.cta-button {
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #0056b3;
}

.two-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: #000;
    overflow-x: hidden;
}

.column {
    flex: 1;
    min-width: 300px;
    margin: 10px;
    text-align: center;
}

.experience {
    background: url('technical.jpg') no-repeat center center/cover;
    color: white;
    position: relative;
    height: 31.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience .overlay {
    background: rgba(0, 0, 139, 0.8);
    padding: 40px;
    text-align: center;
}

.experience h1 {
    font-size: 4em;
    margin: 0;
}

.experience p {
    font-size: 1.5em;
    margin: 0;
}

.description {
    background: black;
    color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.description h2 {
    font-size: 4.5rem ;
    margin-top: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .description {
        padding: 10px 0px;
    }

    .description h2 {
        font-size: 2.5rem ;
    }
}

.description p {
    margin: 0;
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.animated-border {
    position: relative;
    display: inline-block;
    padding: 15px;
    border: 2px solid transparent;
}

.animated-border::before {
    content: "•";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #fff;
    animation: bullet-animation 5s linear infinite;
}

@keyframes bullet-animation {
    0% {
        top: 0;
        left: 0;
    }
    25% {
        top: 0;
        left: 100%;
        transform: translateX(-100%);
    }
    50% {
        top: 100%;
        left: 100%;
        transform: translate(-100%, -100%);
    }
    75% {
        top: 100%;
        left: 0;
        transform: translateY(-100%);
    }
    100% {
        top: 0;
        left: 0;
    }
}

.paragraph-with-image {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .paragraph-with-image {
        flex-direction: column;
        align-items: center;
    }
    
}

.paragraph-with-image img.small-circle-image {
    width: 9.375rem;
    height: 9.375rem;
    border-radius: 50%;
    margin-right: 15px;
}
.services-section {
    background: linear-gradient(to bottom, #04215b, #000000);
    position: relative;
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}
.color-border{
    background: linear-gradient(45deg, #0044cc, #0044cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.service-item {
    width: 25.625rem;
    height: 34.25rem;
    margin: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-size: 100% 50%;
    background-position: top;
    background-repeat: no-repeat;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}


.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    color: #000;
}
.service-item h3,
.service-item p{
  color: inherit;
}
.service-item h3 {
    /* color: #000; */
    text-align: center;
    padding: 0;
    margin-top: 30px;
    font-weight: 200000;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
}

.service-item p {
    /* color: #000; */
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -10px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    flex-grow: 1;
}

.learn-more-btn {
    align-self: flex-start;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    position: absolute;
    left: 138px;
    bottom: 20px;
}
.learn-more-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}
.service-item img {
    background-position: top;
    width: 100%;
    height: 50%;
    object-fit: cover;
    display: block;
    margin-top: -105px;
    border-radius: 50px 50px 50px 50px;
}
/* .item-1{
    background-image: url(webdevbox.jpg);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}  */
/* .item-2{
    background-image: url(saasbox.jpg);
}

.item-3{
    background-image: url(seobox.jpg);
}

.item-4{
    background-image: url(dmnew.png);
}

.item-5{
    background-image: url(seobox.jpg);
}

.item-6{
    background-image: url(mobileappbox.jpg);
}

.item-7{
    background-image: url(sembox.jpg);
}

.item-8{
    background-image: url(csbox.png);
}

.item-9{
    background-image: url(softwaredevbox.jpg);
}

.item-10{
    background-image: url(HMIS2.jpeg);
} */

.service-description ul {
    list-style-type: disc;
}
.section-para {
    font-family:'Calibri', Arial , Helvetica, sans-serif;
    font-size: 25px;
    color: #fff;
    margin-bottom: 40px;
    margin-top: -70px;
    margin-left: 150px;
    margin-right: 150px;
    text-align: center;
    text-indent: 20px;
    padding: 0;
    line-height: 1.5;
}
.section-para-1 {
    font-family:'Calibri', Arial , Helvetica, sans-serif;
    font-size: 25px;
    color: #fff;
    margin-bottom: 40px;
    margin-top: -50px;
    margin-left: 150px;
    margin-right: 150px;
    text-align: center;
    text-indent: 20px;
    padding: 0;
    line-height: 1.5;
}
.section-para-2 {
    font-family:'Calibri', Arial , Helvetica, sans-serif;
    font-size: 25px;
    color: #fff;
    margin-bottom: 40px;
    margin-top: -50px;
    margin-left: 150px;
    margin-right: 150px;
    text-align: center;
    text-indent: 20px;
    padding: 0;
    line-height: 1.5;
}
.section-heading {
    font-family: Roboto, sans-serif;
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: bold;
    margin-top: -50px;
    margin-bottom: 80px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .section-heading {
        font-size: 35px;
    }
    .section-para{
        line-height: 1;
        max-width: 100vw;
        font-size: 20px;
        margin-top: -50px;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
        text-indent: 20px;
    }
    .section-para-1{
        line-height: 1;
        font-size: 20px;
        margin-top: -40px;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
        text-indent: 20px;
    }
    .section-para-2{
        line-height: 1;
        font-size: 20px;
        margin-top: -40px;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
        text-indent: 20px;
    }
}
#breakthrough {
    position: relative;
    text-align: center;
    padding: 400px 0;
    background-image: url('user.jpg');
    background-size: cover;
    background-position: center;
}

#breakthrough .content {
    position: relative;
    z-index: 4;
    color: #fff;
}

#breakthrough h1 {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 100px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
    #breakthrough h1 {
        font-size: 2rem;
    }
    
}

#breakthrough .loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12.5rem;
}

.spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 7.5rem;
    height: 7.5rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Info Section */
#info-section {
    background-color: #f9f9f9;
    padding: 5px 5px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    color: #333;
}

.info-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 100vw;
}

@media screen and (max-width: 768px) {
    .info-container {
        justify-content: center;
    }

    .info-box {
        margin: 20px;
    }
    
}

.info-box {
    flex: 1 1 240px;
    margin: 50px;
}

.info-box h2 {
    font-size: 50px;
    color: #000;
    margin-top: 10px;
}

.info-box h2 span {
    border: 2px solid #000;
    padding: 0 5px;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #000;
}

.info-box p, .info-box ul, .info-box a {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    margin-bottom: 10px;
}

.info-box ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.info-box ul li a:hover {
    color: #007bff;
}

.payment-icons {
    border: 2px dashed #cccccc;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.payment-icons img {
    height: 1.875rem;
    width: 4.375rem;
    object-fit: contain;
}

.social-icons img {
    margin: 5px;
    width: 2.5rem;
    height: auto;
    transition: transform 0.3s;
}

.payment-icons img:hover, .social-icons img:hover {
    transform: scale(1.1);
}

.social-icons a {
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .info-box {
        flex: 1 1 100%;
    }
}
/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 2px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-left, .footer-center, .footer-right {
    flex: 1;
    text-align: center;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-right a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-right a:hover {
    color: #007bff;
}

.footer-center {
    font-weight: bold;
    font-size: 2rem;
}
.footer-center .highlight {
    border: 2px solid #fff;
    padding: 0 5px;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-center{
        text-align: left;
        margin-bottom: 10px;
    }


    .footer-center p {
        text-align: center;
    }
}
.address p {
    margin: 0.01rem;
}
.office-heading {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: #333;
}
.info-services ul li {
    padding: 2px 0;
    margin: 1px 0;
}
.price {
    font-size: 24px;
    margin-bottom: 20px;
}

.price .was {
    text-decoration: line-through;
    color: #999;
    display: block;
    font-size: 20px;
}

.price .now {
    color: #000;
    font-size: 28px;
    font-weight: bold;
    display: block;
}
.why-us {
    max-width: 137.5rem;
    padding: 20px;
    text-align: center;
    background: linear-gradient(to bottom, #0044cc, #000000);
}

.why-us h2 {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 100px;
    color: #fff;
}
.why-us-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.why-us .text-content {
    display: flex;
    flex-direction: column;
}
.why-us div{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 40px;
    text-align: left;
    flex: 1;
}


@media screen and (max-width: 768px) {
    .why-us div {
        width: 100%;
        margin: 0 0 20px;
    }
    
}

.why-us img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    margin-right: 20px;
}

.why-us h3 {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #fff;
}

.why-us p {
    max-width: calc(100% - 100px);
    margin-top: 0;
    text-align: center;
    font-size: 1em;
    line-height: 1.5;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#home, .two-columns, .services-section, .why-us, #breakthrough, #info-section {
    margin: 0;
}

.content-wrapper {
    padding: 2rem 2rem 2rem 2rem;
    background-color: #fff;
}

.content-container {
    display: flex;
    flex-direction: row;
    max-width: 75rem;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.content-image {
    flex: 1;
    max-width: 50%;
    position: relative;
    margin-top: 100px;
}

.content-image img {
    display: block;
    width: 100%;
    height: 28.125rem;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 5px solid #0070c0;
    z-index: -1;
    border-radius: 5px;
}

.content-text {
    flex: 1;
    max-width: 50%;
}

.content-text h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #0044cc;
}

.content-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Content Responsive Design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        padding: 2rem;
    }

    .content-image, .content-text {
        max-width: 100%;
    }

    .content-text h1 {
        font-size: 2rem;
    }

    .content-text p {
        font-size: 1rem;
    }

    .content-image::before {
        top: -5px;
        left: -5px;
        width: calc(100% + 10px);
        height: calc(100% + 10px);
    }
}
.services-dev {
    background-image: url('webdevbg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.services-dev-content {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.services-dev-content h1 {
    font-size: 4rem;
    margin: 0;
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
}

.services-dev-content h2 {
    font-size: 5rem;
    margin-top: 70px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.services-dev-content span {
    font-size: 3rem;
    background: linear-gradient(45deg, #0044cc, #0044cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
    .services-dev {
        padding: 20px 10px;
    }
    .services-dev-content h2 {
        font-size: 1.5rem;
    }
    .services-dev-content h1 {
        font-size: 2rem;
    }
}
.contact-section {
    background-color: #e6f0ff;
    padding: 3em 0;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 75rem;
    margin: 0 auto;
    padding: 1em;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-info {
    flex: 1;
    padding: 2em;
}

.contact-info h2 {
    color: #0044cc;
    font-size: 3rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.contact-form input, .contact-form select, .contact-form textarea, .contact-form button {
    padding: 1em;
    font-size: 1em;
    border: 1px solid #000;
}

.contact-form textarea {
    resize: vertical;
    height: 9.375rem;
}

.contact-form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.contact-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    width: 34.375rem;
    max-width: 100%;
    border-radius: 50px;
    margin-top: 100px;
    margin-left: 50px;
    margin-right: 30px;
    height: 31.25rem;
}
.black-border {
    position: relative;
    display: inline-block;
    padding: 15px;
    border: 2px solid transparent;
}

.black-border::before {
    content: "•";
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 20px;
    color: #000;
    animation: border-bullet-animation 5s linear infinite;
}

@keyframes border-bullet-animation {
    0% {
        top: 0;
        left: 0;
    }
    25% {
        top: 0;
        left: 100%;
        transform: translateX(-100%);
    }
    50% {
        top: 100%;
        left: 100%;
        transform: translate(-100%, -100%);
    }
    75% {
        top: 100%;
        left: 0;
        transform: translateY(-100%);
    }
    100% {
        top: 0;
        left: 0;
    }
}

.terms-background{
    background-image: url(tc.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
}
.terms-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 565px;
    background-color: black;
    opacity: 0.5; /* Adjust the opacity as needed */
    z-index: 0;
}
.terms-container {
    max-width: 50rem;
    margin: 165px auto 40px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 4px solid #076db0;
    padding-left: 20px;
}

.terms-container h1,
.terms-container h2,
.terms-container h3 {
    color: #2c3e50;
    margin-left: 20px;
    text-align: left;
}

.terms-container h1 {
    border-bottom: 2px solid #076db0;
    padding-bottom: 10px;
}

.terms-container h2 {
    margin-top: 30px;
}

.terms-container h3 {
    margin-top: 20px;
}

.terms-container p {
    margin: 20px;
    color: #555;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
}

.terms-container ul {
    margin: 20px;
    padding-left: 40px;
    color: #555;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
}
.policy-background{
    background-image: url(privacy.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
}
.policy-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 565px;
    background-color: black;
    opacity: 0.5; /* Adjust the opacity as needed */
    z-index: 0;
}
.results-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #0044cc,#000000);
}
.results-section h1 {
    font-size: 1em;
    font-weight: normal;
    text-align: right;
    margin-top: 0;
}
.results-section h2 {
    font-size: 4.5em;
    font-weight: normal;
    text-align: center;
    margin-top: -50px;
    margin-left: 50px;
    color: white;
    margin-bottom: 50px;
}
.highlight {
    font-weight: bold;
    background-color: #191b1a;
    padding: 0 10px;
}
.results-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-bottom: 200px;
}
.card {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 20px;
    width: 250px;
    height: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0 60px;
    position: relative;
    top: 0;
}
.card:nth-child(1) {
    top: 0px;
}
.card:nth-child(2) {
    top: 60px;
}
.card:nth-child(3) {
    top: 120px;
}
.card:nth-child(4) {
    top: 180px;
}
.card h3 {
    font-size: 4em;
    margin: 0;
    font-weight: normal;
}
.card p {
    font-size: 1em;
    margin-top: 20px;
    color: #666;
}
@media (max-width: 768px) {
    .results-section h2 {
        margin-left: 0;
    }
    .results-cards{
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 90%;
        margin: 20px 0;
        top: 0;
    }
    .card:nth-child(2),
    .card:nth-child(3),
    .card:nth-child(4) {
        top: 0;
    }
}
.web-development-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background: linear-gradient(135deg , #04215b,#000000);
    padding-bottom: 300px;
    position: relative;
}

.web-development-features h2{
    width: 100%;
    text-align: center;
    margin: 20px 0;
    font-size: 5em;
    font-weight: bold;
    padding: 10px 0;
}
.feature-card {
    background: #000;
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.feature-card:nth-child(2) {
    top: 50px;
}
.feature-card:nth-child(3) {
    top: 150px;
}
.feature-card:nth-child(4) {
    top: 50px;
}
.feature-card:nth-child(5) {
    top: 150px;
}
/*.feature-card:nth-child(6) {
    top: 300px;
} */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
@media (max-width:768px){
    .web-development-features{
        flex-direction: column;
        align-items: center;
    }
    .web-development-features h2{
        font-size: 3rem;
    }
    .feature-card {
        width: 90%;
        margin: 20px 0;
        top: 0;
    }
    .feature-card:nth-child(2),
    .feature-card:nth-child(3),
    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        top: 0;
    }
}
.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-card h3 {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1em;
    color: #fff;
}
.web-services {
    background-color: white;
    max-width: 100vw;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.web-services h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.web-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.web-service {
    background-color: transparent;
    padding: 20px;
    margin: 10px;
    width: 30%;
    box-sizing: border-box;
    text-align: left;
}

.web-service h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: left;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.web-service p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
}

@media (max-width:768px){
    .web-content{
        flex-direction: column;
        align-items: center;
    }
    .web-service {
        width: 90%;
        margin: 10px 0;
    }
    .web-services h1{
        font-size: 3rem;
    }
}
.web-container {
    display: flex;
    max-width: 100vw;
    position: relative;
    background-color: #fff;
}
.left-column {
    flex: 1;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.left-column h1{
    font-size: 3.5rem;
    margin-left: 100px;
}
.left-column p{
    font-size: 1.5rem;
    margin-left: 100px;
}
.right-column {
    flex: 2;
    overflow-y: auto;
    width: 30%;
}

.approach {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 50px;
    min-height: 200px;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: 200px;
}

.approach h2 {
    margin: 0;
    font-size: 4em;
    text-align: left;
}

.approach h3 {
    margin-top: 10px;
    font-size: 2rem;
    margin-bottom: 0;
}

.approach p {
    margin-top: 10px;
    font-size: 1.5em;
}
@media (max-width: 768px) {
    .web-container {
        flex-direction: column;
    }
    .left-column {
        position: static;
        height: auto;
        margin-bottom: 20px;
    }
    .left-column h1, .left-column p {
        margin-left: 20px;
    }
    .right-column {
        width: 100%;
        overflow-y: visible;
    }
    .approach {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.web-page-container {
    display: flex;
    height: 100vh;
    background-color: #fff;
    overflow: hidden;
}

.button-left-column {
    flex: 1;
    width: 30%;
    min-width: 250px;
    max-width: 400px;
    border-top: 1px solid #454444;
    border-right: 1px solid #454444;
    padding: 20px;  
    overflow-y: auto;
    transition: width 0.3s;
    margin-left: 200px;
    margin-bottom: 50px;
}

.button-left-column h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.left-menu {
    list-style-type: none;
    padding: 0;
}

.menu-item {
    font-size: 2rem;
    line-height: 2;
    padding: 10px;
    margin: 5px 0;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.menu-item.active,
.menu-item:hover {
    background-color: #4c7ad7;
    color: #fff;
}

.button-right-column {
    flex: 2;
    width: 70%;
    padding: 40px;
    overflow-y: auto;
    transition: width 0.3s;
    border-top: 1px solid #454444;
    margin-right: 100px;
}
.button-right-column h2{
    margin-top: 0;
    color: #000;
    text-align: left;
    font-size: 3rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.button-right-column p{
    margin-top: -10px;
    color: #000;
    text-align: left;
    font-size: 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.content {
    display: none;
}

.content.active {
    display: block;
}

.technologies {
    list-style-type: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.technologies li {
    padding: 5px 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.technologies li::before {
    content: "✔";
    color: #0033aa;
    margin-right: 10px;
}
@media (max-width: 768px) {
    .web-page-container {
        flex-direction: column;
        height: auto;
    }
    .button-left-column {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-bottom: 20px;
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid #454444;
    }
    .button-left-column h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .menu-item {
        font-size: 1.5rem;
        padding: 8px;
    }
    .button-right-column {
        width: 100%;
        padding: 20px;
        margin-right: 0;
        border-top: none;
    }
    .button-right-column h2 {
        font-size: 2.5rem;
    }
    .button-right-column p {
        font-size: 1.2rem;
    }
    .technologies li {
        font-size: 1.2rem;
    }
}

.web-heading {
    max-width: 100vw;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    z-index: 1;
}

.web-heading h1 {
    margin-top: 100px;
    font-size: 3.5rem;
    color: #333;
}
.seo-section {
    text-align: center;
    background-color: #ffffff;
    padding: 50px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 100vw;
}

.badge {
    display: inline-block;
    background-color: #8bc5b6;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.seo-section h1 {
    font-size: 3rem;
    color: #333;
    margin-left: 200px;
    margin-right: 200px;
    line-height: 1.4;
}
@media (max-width: 480px) {
    .seo-section {
        padding: 20px 5px;
    }

    .badge {
        font-size: 1rem;
        padding: 4px 10px;
    }

    .seo-section h1 {
        font-size: 1.5rem;
        margin-left: 10px;
        margin-right: 10px;
    }
}
.seo-container {
    display: flex;
    max-width: 100vw;
    position: relative;
    background-color: #fff;
}

.seo-left-column {
    flex: 1;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 20px;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}
.seo-left-column h1 {
    font-weight: lighter;
    text-align: left;
    margin-top: 0;
    margin-right: 0;
    margin-left: 40px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.seo-left-column p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-top: 0;
    margin-right: 0;
    margin-left: 40px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.seo-left-column ul {
    list-style: none;
    padding: 0;
}

.seo-left-column li {
    line-height: 2;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.seo-left-column .icon {
    background: url('icon-url.png') no-repeat;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.seo-right-column {
    flex: 1;
    padding: 20px;
    padding-left: 0;
}

.seo-approach {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 50px;
    min-height: 200px;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: 200px;
}


.seo-approach h3 {
    margin: 0;
    font-size: 1.5rem;
    text-align: left;
    margin-top: 10px;
}

.seo-approach p {
    margin-top: 10px;
    font-size: 1.5em;
}
.seo-approach img {
    width: 100%;
    height: 50%;
    border-radius: 10px;
    margin-bottom: 20px;
    background-position: cover;
}
@media (max-width: 768px) {
    .seo-container {
        flex-direction: column;
    }
    .seo-left-column {
        position: static;
        height: auto;
        margin-bottom: 20px;
    }
    .seo-left-column h1, .seo-left-column p {
        margin-left: 20px;
    }
    .seo-right-column {
        width: 90%;
        overflow-y: visible;
    }
    .seo-approach {
        align-items: center;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}
.seo-container-started {
    display: flex;
    max-width: 100vw;
    position: relative;
    background-color: #fff;
}

.started-left-column {
    flex: 1;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 20px;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}
.started-left-column h1 {
    font-weight: lighter;
    text-align: left;
    margin-top: 0;
    margin-right: 0;
    margin-left: 40px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.started-left-column p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-top: 0;
    margin-right: 0;
    margin-left: 40px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.started-left-column ul {
    list-style: none;
    padding: 0;
}

.started-left-column li {
    line-height: 2;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.started-left-column .icon {
    background: url('icon-url.png') no-repeat;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.started-right-column {
    flex: 1;
    padding: 20px;
    padding-left: 0;
}

.started-approach {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 50px;
    min-height: 200px;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: 200px;
}


.started-approach h3 {
    margin: 0;
    font-size: 1.5rem;
    text-align: left;
    margin-top: 10px;
}

.started-approach p {
    margin-top: 10px;
    font-size: 1.5em;
}
.started-approach img {
    width: 100%;
    height: 50%;
    border-radius: 10px;
    margin-bottom: 20px;
    background-position: cover;
}
@media (max-width: 768px) {
    .seo-container-started {
        flex-direction: column;
    }
    .started-left-column {
        position: static;
        height: auto;
        margin-bottom: 20px;
    }
    .started-left-column h1, .started-left-column p {
        margin-left: 20px;
    }
    .started-right-column {
        width: 90%;
        overflow-y: visible;
    }
    .started-approach {
        align-items: center;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

.who-we-work-with {
    text-align: center;
    padding: 50px 0;
    background-color: #fff;
    max-width: 100vw;
    margin: 0;
}
.who-we-work-with h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: lighter;
}

.who-we-work-with .description {
    background-color: white;
    text-align: center;
    font-size: 2rem;
    color: #666;
    margin-bottom: 40px;
    text-indent: 40px;
}

.companies {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

.company-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    width: 45%;
    margin: 20px;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: row;
    height: 200px;
}

.company-card img {
    width: 50%;
    object-fit: cover;
    height: 200px;
}

.company-info {
    padding: 20px;
    width: 50%;
}

.company-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.company-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0b3894;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s;
}

/* .more-button:hover {
    background-color: #ff4b4b;
} */

/* .company-card:hover {
    transform: translateY(-10px);
} */
@media (max-width: 768px) {
    .who-we-work-with {
        width: 100vw;
    }

    .who-we-work-with h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .who-we-work-with .description {
        font-size: 1rem;
        margin-bottom: 30px;
        text-indent: 20px;
    }

    .company-card {
        width: 90%;
        flex-direction: column;
        height: auto;
    }

    .company-card img {
        width: 100%;
        height: auto;
    }

    .company-info {
        padding: 15px;
        width: 100%;
    }

    .company-info h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .company-info p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .more-button {
        padding: 8px 16px;
    }
}


.calendar-container {
    background-color: white;
    height: 1000px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.calendar-container h2 {
    font-weight: normal;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    color:#000;
    
}
.calendar-container p {
    font-weight: 100;
    color: #8d8989;
    font-size: 1.25rem;
    margin-top: 0px;
    text-align: center;
    margin-left: 380px;
    margin-right: 380px;
}
.calendly-inline-widget {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    box-sizing: border-box;
    position: static;
}
@media (max-width: 768px) {
    .calendar-container {
        height: auto;
        padding: 20px;
    }

    .calendar-container h2 {
        font-size: 1.5rem;
    }

    .calendar-container p {
        font-size: 1rem;
        margin-left: 20px;
        margin-right: 20px;
    }

    .calendly-inline-widget {
        height: 70vh;
    }
}
.careers-dev {
    background-image: url('careers.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.careers-container {
    background: linear-gradient(to right, #000,#0b3895);
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 100vw;
}

.careers-container h1 {
    font-size: 5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.careers-container p {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* .careers-form {
    display: flex;
    flex-direction: column;
}

.careers-form-group {
    margin-bottom: 20px;
}

label {
    font-size: 1.1em;
    margin-bottom: 5px;
    display: block;
    color: white;
}
.careers-form-group input[id='contactnumber']{
    width: 70%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 1em;
}

.careers-form-group input[type="text"],
.careers-form-group[type="tel"],
input[type="file"] {
    width: 70%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 1em;
}

button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #0b3894;
    color: #ffffff;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0099cc;
} */
.careers-contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: linear-gradient(135deg,#0b3894,#000);
    color: #121212;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 100vw;
    text-align: center;
}

.careers-contact-container h2 {
    color: #fff;
    word-wrap: break-word;
    font-size: 3rem;
    max-width: 100vw;
    margin: 0;
}
@media (max-width: 768px) {
    .careers-contact-container h2 {
        font-size: 1.5rem;  /* Adjust font size for medium screens */
        word-wrap: break-word;  /* Ensure long words break */
        overflow-wrap: break-word;
        max-width: 100%;  /* Ensure it stays within the container */
        line-height: 1.2;  /* Adjust line height for better readability */
    }
}
/* .careers-info {
    margin-top: 150px;
    text-align: left;
    max-width: 100vw;
    /* margin: 20px 0; */
    /* padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */

.careers-info h3 {
    font-weight: normal;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.careers-info .careers-description {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    width: 90%;
    margin-left: 80px;
}
@media (max-width: 768px) {
    .careers-info .careers-description {
        width: 100%; 
        margin-left: 0;
        font-size: 1rem;
        padding: 0 10px;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}
.mobile-services {
    padding: 20px;
    text-align: center;
    background-color: white;
}
.mobile-services h1{
    margin-left: 100px;
    text-align: left;
    font-size: 4rem;
    line-height: 0.5;
}
.mobile-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}

.image-section img {
    max-width: 100%;
    height: auto;
}

.text-section {
    width: 50%;
}

.accordion {
    background: #f1f1f1;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    padding: 15px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.5rem;
    text-align: left;
}

.accordion-header:hover {
    background: #e2e2e2;
}
.accordion-header.active {
    color: #0b3894;
}

.accordion-button {
    font-size: 3rem;
}
.accordion-content {
    display: none;
    padding: 15px;
    background: #fff;
    text-align: left;
}

.accordion-content h3 {
    font-size: 18px;
    margin-top: 20px;
    font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-weight: bold;
}

.accordion-content ul {
    list-style-type: none;
    padding: 0;
}

.accordion-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1.5rem;
    
}

.accordion-content ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #0b3894;
}

.accordion-content p {
    margin: -20px 0 15px 0;
    font-size: 1.5rem;
    font-weight: 0;
    font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}
.mobile-page-container {
    display: flex;
    height: 100vh;
    background-color: #fff;
    overflow: hidden;
}

.mobile-left-column {
    flex: 1;
    width: 30%;
    min-width: 250px;
    max-width: 400px;
    border-top: 1px solid #454444;
    border-right: 1px solid #454444;
    padding: 20px;  
    overflow-y: auto;
    transition: width 0.3s;
    margin-left: 200px;
    margin-bottom: 50px;
}

.mobile-left-column h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mobile-left-menu {
    list-style-type: none;
    padding: 0;
}

.menu-item {
    font-size: 1.5rem;
    line-height: 2;
    padding: 10px;
    margin: 60px 0;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.menu-item.active,
.menu-item:hover {
    background-color: #4c7ad7;
    color: #fff;
}

.mobile-right-column {
    flex: 2;
    width: 70%;
    padding: 40px;
    overflow-y: auto;
    transition: width 0.3s;
    border-top: 1px solid #454444;
    margin-right: 100px;
}
.mobile-right-column h2{
    margin-top: 0;
    color: #000;
    text-align: left;
    font-size: 3rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.mobile-right-column p{
    margin-top: -10px;
    color: #000;
    text-align: left;
    font-size: 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.content {
    display: none;
}

.content.active {
    display: block;
}

.technologies {
    list-style-type: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.technologies li {
    padding: 5px 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.technologies li::before {
    content: "✔";
    color: #0033aa;
    margin-right: 10px;
}
.faq-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
}

.faq-container {
    display: flex;
    max-width: 100vw;
}

.faq-left {
    flex: 1;
    padding: 20px;
    margin-top: 70px;
}

.faq-left h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: left;
    color: #333;
}

.faq-left p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-align: left;
    color: #666;
}

.send-question-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073e6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 40px;
    text-align: center;
}

.faq-right {
    flex: 2;
    padding: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    background-color: #fff;
    border: 1px solid hsl(0, 0%, 87%);
    /* border-radius: 30px; */
    margin-bottom: 10px;
    padding: 10px 20px;
    height: 40px;
}

.faq-item h3 {
    font-size: 18px;
    margin: auto;
    cursor: pointer;
    position: relative;
    font-weight: lighter;
}

.faq-item p {
    margin: 10px 0 0;
    display: none;
    font-size: 16px;
    color: #666;
}

.faq-item h3::after {
    content: '+';
    font-size: 2rem;
    position: absolute;
    right: 0;
    top: 0;
}

.faq-item h3.active::after {
    content: '-';
}

.faq-item h3.active + p {
    display: block;
}
.approach ul {
    margin-top: -10px;
    list-style-type: disc; /* or any other style you prefer */
    margin-left: -20px;
}

.approach li {
    margin-bottom: 10px; /* adjust spacing between list items */
    font-size: 1.25rem; /* adjust font size as needed */
    line-height: 1.5; /* adjust line height as needed */
}

.saas-left-column {
    flex: 1;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.saas-left-column h1{
    font-size: 3.5rem;
    margin-left: 100px;
}
.saas-left-column p{
    margin-top: -20px;
    font-size: 1.5rem;
    margin-left: 100px;
}
.close-button {
    position: relative;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    z-index: 1000; /* Bring the button to the front */
}
.terms-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between heading and button */
}
.logo-design-process {
    background-color: #04215b;
    text-align: center;
    padding: 50px 20px;
}

.logo-title {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.logo-heading {
    font-size: 36px;
    color: #000;
    margin-bottom: 50px;
    line-height: 1.3;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.step {
    background:linear-gradient(to left,#000,#0b3894);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 250px;
    margin: 20px;
    text-align: center;
}

.logo-icon {
    font-size: 50px;
    color: #FF6F61;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}
.close-button-terms {
    display: block;
    text-align: center;
    margin: 0px 350px;
    /* padding: 10px 20px; */
    /* align-items: center; */
    font-size: 1rem;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 50px;
    color: #000;
    cursor: pointer;
    float: center;
}
.seo-text-section {
    width: 100%;
}

.seo-accordion {
    background: #f1f1f1;
    border-radius: 5px;
    overflow: hidden;
}

.seo-accordion-header {
    padding: 15px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    text-align: left;
}

.seo-accordion-header:hover {
    background: #e2e2e2;
}
/* .seo-accordion-header.active {
    color: #b81111;
} */

.seo-accordion-button {
    font-size: 2rem;
}
.seo-accordion-content {
    display: none;
    padding: 15px;
    background: #fff;
    text-align: left;
}

.seo-accordion-content h3 {
    font-size: 18px;
    margin-top: 20px;
    font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-weight: bold;
}

.seo-accordion-content ul {
    list-style-type: none;
    padding: 0;
}

.seo-accordion-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    
}

.seo-accordion-content ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #00C853;
}

.seo-accordion-content p {
    margin: -20px 0 15px 0;
    font-size: 1.15rem;
    font-weight: 0;
    font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    line-height: 1.5;
}
.digital-marketing-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #fff;
    transition: background-color 0.5s ease, color 0.5s ease;
    /* margin: 20px 0; */
}

.digital-marketing-section.alternate {
    flex-direction: row-reverse;
}

.digital-marketing-content {
    flex: 1;
    padding-right: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.digital-marketing-image {
    flex: 1;
}

.digital-marketing-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-left: 30px;
}
.digital-marketing-image.alternate{
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-right: 80px;
}
/* Light Background */
.bg-light {
    background-color: #ffffff;
    color: #000; /* Dark text for light background */
}

.bg-light h2{
    color: #000;
    text-align: left;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.bg-light p {
    color: #000; /* Ensure both h2 and paragraphs are dark on light background */
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

/* Dark Background */
.bg-dark {
    background-color: #04215b;
    color: #ffffff; /* Light text for dark background */
}

.bg-dark h2{
    color: #ffffff;
    text-align: left;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.bg-dark p {
    color: #ffffff; /* Ensure both h2 and paragraphs are light on dark background */
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* .digital-marketing-content h2 {
    color: #9e9999;
    text-align: left;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.digital-marketing-content p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
} */

/* 15th Apr 26 */
/* NEW SECTION INTO HOMEPAGE */
.sticky-features {
  height: 300vh;
  background: black;
  color: white;
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
}
/* LEFT SIDE */
.feature-left {
  width: 480px;
  position: relative;
  padding-left: 100px; /* space for line */
}

/* STEP POSITIONING */
.feature-step {
  position: absolute;
  left: 0;
  max-width: 420px;
  padding-top: 20px;
  opacity: 0;
  transform: translateY(30px) translateX(-20px);
  transition: all 0.6s ease;
}

.feature-step.active {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
.feature-step.active h2 {
  text-shadow: 0 0 20px rgba(34,197,94,0.3);
}
/* NUMBER */
.step-number {
  position: absolute;
  left: -10px;
  top: 5px;   /* 👈 FULL TOP */
  font-size: 14px;
  opacity: 0.6;
}

/* HEADING */
.feature-step h2 {
  font-size: 72px; /* bigger */
  font-weight: 800;
  color: #22c55e;
  margin: 10px 0 20px;
  margin-top: -150px;
  margin-left: 150px;
  letter-spacing: -1px;
}

.feature-step p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin-top: 10px;
  margin-left: 250px;
}
.feature-step::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0px;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

/* RIGHT SIDE */
.feature-right {
  width: 40%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* STACKED IMAGES */
.feature-image {
  position: absolute;
  width: 100%;
  max-width: 400px;

  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

/* ACTIVE IMAGE */
.feature-image.active {
  opacity: 1;
  transform: scale(1);
}
/* LINE BASE */
.progress-line {
  position: absolute;
  left: 30px;
  top: 0;
  height: 100%;
  width: 2px;
  background: rgba(255,255,255,0.2);
}

/* ACTIVE GLOW LINE */
.progress-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, #22c55e, transparent);
  animation: moveLine 3s linear infinite;
}

@keyframes moveLine {
  0% { top: 0; }
  100% { top: 100%; }
}
/* Patti brands wali */
.brand-slider {
    background: #ffffff;;
    padding: 20px 0;
    overflow: hidden;
}


.slider {
    width: 100%;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(250px * 14);
    animation: scroll 40s linear infinite;
}

.slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .slide img {
    width: 120px;
    opacity: 0.7;
    transition: 0.3s;
    filter: grayscale(100%);
} */
.slide img {
    width: 120px;
    opacity: 0.8;
    transition: 0.3s;
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}
/* ===== STATS PANEL ===== */
.stats-panel {
    position: relative;
    background: linear-gradient(135deg, #0b1f4b, #123d9c);
    padding: 50px 20px; /* reduced height */
    overflow: hidden;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* ===== CONTAINER ===== */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ===== STAT BOX ===== */
.stat-box {
    width: 200px;
    margin: 15px;
    transition: transform 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.stat-box:nth-child(2) { animation-delay: 0.5s; }
.stat-box:nth-child(3) { animation-delay: 1s; }
.stat-box:nth-child(4) { animation-delay: 1.5s; }

.stat-box:hover {
    transform: translateY(-10px) scale(1.05);
}

/* ===== TEXT ===== */
.stat-box h2 {
    font-size: 42px;
    margin: 10px 0;
    font-weight: 700;
    color: #fff;
}

.stat-box p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

/* ===== ICON ===== */
.icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    background: radial-gradient(circle, #ff5f6d, #6a5cff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* ===== FLOAT ANIMATION ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== WAVES (PURE CSS) ===== */
.wave {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 200%;
    height: 120px;
    background: rgba(255,255,255,0.08);
    border-radius: 100% 100% 0 0;
    z-index: 1;
    animation: waveMove 8s linear infinite;
}

.wave2 {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 200%;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 100% 100% 0 0;
    z-index: 1;
    animation: waveMoveReverse 12s linear infinite;
}

/* ===== WAVE ANIMATION ===== */
@keyframes waveMove {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%) translateY(-10px); }
    100% { transform: translateX(-50%); }
}

@keyframes waveMoveReverse {
    0% { transform: translateX(-50%); }
    50% { transform: translateX(-25%) translateY(-8px); }
    100% { transform: translateX(0); }
}
/* ===== MEGA DROPDOWN ===== */
.nav-services {
    position: static !important;
}

.mega-dropdown {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: linear-gradient(to left, #6689cf, #142377);
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    z-index: 999;
    padding-top: 65px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-services:hover .mega-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.mega-inner {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px;
    gap: 48px;
}

.mega-label span:first-child {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mega-arrow {
    font-size: 1.2rem;
    color: #555;
}

.mega-divider {
    width: 1px;
    background: #2a2a2a;
    align-self: stretch;
    min-height: 80px;
}

.mega-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 60px;
    align-items: start;
}

/* Links hidden by default */
.mega-links .mega-link {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;

    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 10px 0;
    letter-spacing: -0.5px;
}

/* The arrow that slides in */
.mega-link::before {
    content: '→';
    display: inline-block;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    color: #000; /* your brand color */
    font-size: 1.2rem;
    width: 0;
    overflow: hidden;
}

.mega-link:hover::before {
    opacity: 1;
    transform: translateX(0);
    width: 30px;
}

.mega-link:hover {
    color: #007bff;
    transition: color 0.2s ease;
}

/* Stagger in one by one */
.nav-services:hover .mega-links .mega-link:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateX(0); }
.nav-services:hover .mega-links .mega-link:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateX(0); }
.nav-services:hover .mega-links .mega-link:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateX(0); }
.nav-services:hover .mega-links .mega-link:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateX(0); }
.nav-services:hover .mega-links .mega-link:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateX(0); }
.nav-services:hover .mega-links .mega-link:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: translateX(0); }