@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #ff8906;
  --secondary-color: #e5306f;
  --text-dark: #0e0d16;
  --text-light: #767268;
  --extra-light: #f7f8fd;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  color: var(--white);
  background-color: #001f3f;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

/* nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #001f3f;
  z-index: 100;
}

.nav__logo a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.5rem;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: #001f3f;
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.nav__btns {
  display: none;
} */
   .webaziz-top-action-bar {
        background: #1e3a8a;
        color: white;
        padding: 8px 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
        font-size: 14px;
    }

    .webaziz-top-bar-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
    }

    .webaziz-top-bar-left-section {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .webaziz-top-bar-right-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .webaziz-top-action-button {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        color: white;
        text-decoration: none;
        font-size: 12px;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .webaziz-top-action-button:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
    }

    .webaziz-top-action-button i {
        font-size: 14px;
    }

    .webaziz-whatsapp-action-button {
        background: #25d366;
        border-color: #25d366;
        padding: 8px;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .webaziz-whatsapp-action-button:hover {
        background: #128c7e;
        transform: scale(1.1);
    }

    .webaziz-login-action-button {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 6px 16px;
        border-radius: 4px;
        color: white;
        text-decoration: none;
        font-size: 12px;
        transition: all 0.3s ease;
    }

    .webaziz-login-action-button:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Main Navigation Styles */
    .webaziz-main-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 42px;
        left: 0;
        right:0;
        width: 100%;
        z-index: 1000;
        isolation: isolate;
    }

    .webaziz-nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .webaziz-brand-logo {
  flex: 1; /* ensures the logo stays on the left */
}


    .webaziz-nav-header-section {
        display: flex;
        align-items: center;
        gap: 9rem;
         justify-content: space-between;
         
    }

    .webaziz-brand-logo a {
        font-size: 1.8rem;
        font-weight: 700;
        text-decoration: none;
        color: #1e3a8a;
    }

    .webaziz-brand-logo span {
        color: #4a6cf7;
    }

    .webaziz-mobile-menu-trigger {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
        
    }

    .webaziz-nav-links-list {
        display: flex;
        gap: 2rem;
        list-style: none;
        align-items: center;

    }

    .webaziz-nav-links-list li {
        position: relative;
    }

    .webaziz-nav-links-list a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 0.5rem 0;
        position: relative;
    }

    .webaziz-nav-links-list a:hover {
        color: #4a6cf7;
    }

    .webaziz-nav-active {
        color: #fbbf24 !important;
        font-weight: 600 !important;
    }

    .webaziz-nav-cta-section {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .webaziz-primary-button {
        padding: 0.8rem 1.5rem;
        background: #4a6cf7;
        color: white;
        border: none;
        border-radius: 6px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .webaziz-primary-button:hover {
        background: #3a5bd9;
        transform: translateY(-2px);
    }

    /* Mega Menu Styles */
    .webaziz-mega-menu-parent {
        position: relative;
    }

    .webaziz-mega-menu-button {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .webaziz-dropdown-icon {
        transition: transform 0.3s ease;
    }

    .webaziz-mega-menu-parent:hover .webaziz-dropdown-icon {
        transform: rotate(180deg);
    }

    .webaziz-mega-menu-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 900px;
        max-width: calc(100vw - 2rem);
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        padding: 1.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1000;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .webaziz-mega-menu-parent:hover .webaziz-mega-menu-container {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Mega Menu Grid Layout */
    .webaziz-mega-menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    /* Service Card Styles */
    .webaziz-service-option-card {
        display: block;
        padding: 1.25rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        color: #333;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .webaziz-service-option-card:hover {
        background: #f8f9fa;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.1);
    }

    .webaziz-service-icon {
        font-size: 1.75rem;
        color: #4a6cf7;
        margin-bottom: 0.75rem;
    }

    .webaziz-service-heading {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .webaziz-service-description {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
    }

    /* Show More Section */
    .webaziz-show-more-section {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: 0.5rem;
    }

    .webaziz-show-more-button {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        color: #4a6cf7;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        transition: all 0.2s ease;
    }

    .webaziz-show-more-button:hover {
        background: rgba(74, 108, 247, 0.1);
    }

    .webaziz-more-icon {
        transition: transform 0.3s ease;
    }

    .webaziz-show-more-section.active .webaziz-more-icon {
        transform: rotate(180deg);
    }

    .webaziz-hidden-services {
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        padding-top: 1rem;
        animation: webaziz-fadeIn 0.3s ease forwards;
    }

    .webaziz-show-more-section.active ~ .webaziz-hidden-services {
        display: grid;
    }

    @keyframes webaziz-fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* Mobile Overlay */
    .webaziz-mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
        .webaziz-top-bar-wrapper {
            padding: 0 1rem;
        }

        .webaziz-top-bar-right-actions {
            gap: 0.25rem;
        }

        .webaziz-top-action-button {
            padding: 4px 8px;
            font-size: 11px;
        }

        .webaziz-top-action-button span {
            display: none;
        }

        .webaziz-main-navigation {
            padding-top: 2rem;
        }

        .webaziz-mobile-menu-trigger {
            display: block;
            
        }

       .webaziz-nav-links-list {
    position: fixed;
    top: 42px; /* 👈 Adjust this to match the height of your topbar */
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 42px); /* 👈 Reduce height to fit remaining space */
    background: #fff;
    flex-direction: column;
    padding: 2rem 1.5rem;
    z-index: 999;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    gap: 1rem;
}


        .webaziz-nav-links-list.active {
            right: 0;
        }

        .webaziz-mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .webaziz-nav-cta-section {
            display: none;
        }

        /* Adjust mega menu for mobile */
        .webaziz-mega-menu-container {
            position: static;
            width: 100%;
            padding: 0;
            box-shadow: none;
            background: transparent;
            border: none;
            margin-top: 0.5rem;
            display: none;
        }

        .webaziz-mega-menu-parent.active .webaziz-mega-menu-container {
            display: block;
        }

        .webaziz-mega-menu-grid {
            grid-template-columns: 1fr;
            gap: 0.5rem;
        }

        .webaziz-service-option-card {
            padding: 0.75rem;
            background: #f8f9fa;
            margin-bottom: 0.5rem;
        }

        .webaziz-show-more-section {
            margin-top: 0.5rem;
        }

        .webaziz-mega-menu-parent:hover .webaziz-mega-menu-container {
            transform: none;
        }
    }

    @media (max-width: 480px) {
        .webaziz-top-bar-wrapper {
            flex-direction: column;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
        }

        .webaziz-top-bar-left-section {
            font-size: 12px;
        }

        body {
            padding-top: 140px;
        }

        .webaziz-main-navigation {
            top: 62px;
            
        }
    }
.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem 1rem;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.5rem;
  text-align: center;
}

.header__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
  margin-top:3rem;
}

@media (max-width: 768px) {
  .header__container {
    margin-top: 0rem;
  }
}

.header__image img {
  max-width: 550px;
  margin-inline: auto;
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 4.75rem;
  text-align: center;
}

.header__content h1 span {
  color: var(--secondary-color);
}

.header__btns {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header__btns a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.header__btns a span {
  margin-right: 0.5rem;
  width: 2.5rem;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 2px solid var(--text-dark);
  border-radius: 100%;
}

.service {
  background-color: var(--extra-light);
}

.service__container.section__header {
  max-width: 750px;
  margin-inline: auto;
}

.service__grid {
  margin-block: 4rem;
  display: grid;
  gap: 1rem;
}

.service__card {
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: var(--white);
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.service__card:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.service__card:nth-child(1):hover {
  border-color: #00d5be;
}

.service__card:nth-child(2):hover {
  border-color: #ff637e;
}

.service__card:nth-child(3):hover {
  border-color: #c27aff;
}

.service__card:nth-child(4):hover {
  border-color: #00bcff;
}
.service__card:nth-child(5):hover {
  border-color: #00d5be;
}

.service__card:nth-child(6):hover {
  border-color: #ff637e;
}

.service__card:nth-child(7):hover {
  border-color: #c27aff;
}

.service__card:nth-child(8):hover {
  border-color: #00bcff;
}

.service__card div {
  margin-bottom: 1rem;
  max-width: max-content;
  padding: 5px 8px;
  font-size: 1.75rem;
  border-radius: 5px;
}

.service__card:nth-child(1) div {
  color: #00d5be;
  background-color: #f0fdfa;
}

.service__card:nth-child(2) div {
  color: #ff637e;
  background-color: #fff1f2;
}

.service__card:nth-child(3) div {
  color: #c27aff;
  background-color: #faf5ff;
}

.service__card:nth-child(4) div {
  color: #00bcff;
  background-color: #f0f9ff;
}
.service__card:nth-child(5) div {
  color: #00d5be;
  background-color: #f0fdfa;
}

.service__card:nth-child(6) div {
  color: #ff637e;
  background-color: #fff1f2;
}

.service__card:nth-child(7) div {
  color: #c27aff;
  background-color: #faf5ff;
}

.service__card:nth-child(8) div {
  color: #00bcff;
  background-color: #f0f9ff;
}

.service__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.service__card .section__description {
  text-align: left;
}

.service__btn {
  display: flex;
  justify-content: center;
}

.about__container {
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin-inline: auto;
}

.about__content .section__header {
  margin-bottom: 2rem;
  text-align: left;
}

.about__list {
  display: grid;
  gap: 2rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__list li span {
  max-width: max-content;
  padding: 5px 8px;
  font-size: 1.75rem;
  border-radius: 5px;
}

.about__list li:nth-child(1) span {
  color: #00d5be;
  background-color: #f0fdfa;
}

.about__list li:nth-child(2) span {
  color: #ff637e;
  background-color: #fff1f2;
}

.about__list li:nth-child(3) span {
  color: #c27aff;
  background-color: #faf5ff;
}

.about__list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about__list .section__description {
  text-align: left;
}

.portfolio {
  background-color: var(--extra-light);
  overflow: hidden;
}

.portfolio__header {
  margin-bottom: 4rem;
  display: grid;
  gap: 2rem;
}

.portfolio__image {
  position: relative;
  isolation: isolate;
}

.portfolio__image__content {
  position: absolute;
  top: 0;
  right: 2rem;
  transform: translateY(-50%);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 0.25rem;
  z-index: 1;
}

.portfolio__image__content div {
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.portfolio__image__content div:nth-child(1) {
  border-right: 1px solid var(--extra-light);
}

.portfolio__image img {
  border-radius: 0.5rem;
}

.portfolio__image__content h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.portfolio__image__content p {
  font-size: 0.9rem;
  color: var(--extra-light);
}

.portfolio__content {
  display: grid;
  gap: 2rem;
}

.portfolio__list {
  display: grid;
  gap: 2rem;
}

.portfolio__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.portfolio__list li span {
  width: 5rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--secondary-color);
  border-radius: 0.25rem;
}

.portfolio__list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.portfolio__list .section__description {
  text-align: left;
}

.feedback__container {
  padding-bottom: 3rem;
}

.swiper {
  padding-block: 4rem 2rem;
  width: 100%;
}

.swiper-slide {
  min-width: 375px;
}

.feedback__card {
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.feedback__card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.feedback__card .section__description {
  text-align: left;
}

.feedback__details {
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feedback__user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feedback__user img {
  max-width: 50px;
  border-radius: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feedback__user h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.feedback__user h5 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.feedback__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.feedback__rating span {
  font-size: 1rem;
  color: goldenrod;
}

.subscribe__content {
  padding: 5rem 1rem;
  border-radius: 1rem;
  background-color: var(--secondary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.subscribe__content .section__header {
  margin-bottom: 2rem;
  max-width: 750px;
  margin-inline: auto;
  color: var(--white);
}

.subscribe__content form {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 0.5rem;
}

.subscribe__content input {
  width: 100%;
  padding-inline: 1rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--text-dark);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__logo {
  margin-bottom: 2rem;
}

.footer__logo a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.footer__logo a span {
  color: var(--secondary-color);
}

.footer__col .section__description {
  margin-bottom: 2rem;
  text-align: left;
}

.footer__col h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__socials a {
  padding: 4px 6px;
  font-size: 1.125rem;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--secondary-color);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--secondary-color);
}

.footer__links a span {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.footer__bar {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}

@media (width > 540px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 2px solid var(--extra-light);
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo a {
    color: var(--text-dark);
  }

  .nav__logo a span {
    color: var(--secondary-color);
  }
/* 
  .nav__menu__btn {
    display: none;
      order: 2; 
  }
     .nav__logo {
        order: 1;
      } */

  /* .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    color: var(--text-light);
  }

  .nav__links a:hover {
    color: var(--primary-color);
  }

  .nav__btns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  } */

  .header__container {
    padding-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 0;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__content :is(h1, .section__description) {
    text-align: left;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .service__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .portfolio__header {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__header :is(.section__header, .section__description) {
    text-align: left;
  }

  .portfolio__content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .portfolio__image {
    grid-area: 1/2/2/3;
  }

  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-column: 1/3;
    max-width: 350px;
  }
}

@media (width > 1024px) {

  .nav{
    background: #001f3f;
  }
  .service__grid {
    gap: 1.5rem;
  }

  .feedback__card {
    padding: 2rem 1.5rem;
  }
}
/* Recent Work Section Styles */
.recent-work {
  background-color: var(--extra-light);
  padding: 1rem 0;
}

.recent-work__header {
  margin-bottom: 3rem;
  text-align: center;
}

.recent-work__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.recent-work__card {
  background: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recent-work__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.recent-work__image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.recent-work__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recent-work__card:hover .recent-work__image img {
  transform: scale(1.05);
}

.recent-work__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(229, 48, 111, 0.9), transparent);
  color: var(--white);
  padding: 2rem 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.recent-work__overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.recent-work__overlay p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.recent-work__link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.recent-work__link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.recent-work__link:hover {
  transform: translateX(5px);
}

.recent-work__link:hover i {
  transform: translateX(3px);
}

.recent-work__tags {
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.recent-work__tags span {
  padding: 0.35rem 0.75rem;
  background-color: var(--extra-light);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
}

.recent-work__btn {
  text-align: center;
}

/* Responsive adjustments */
@media (width > 768px) {
  .recent-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .recent-work__header {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (width > 1024px) {
  .recent-work__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Core Services Section */
.core-services {
  position: relative;
  padding: 6rem 0;
  background-color: var(--white);
  overflow: hidden;
}

.core-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,137,6,0.03) 0%, rgba(229,48,111,0.03) 100%);
  z-index: 0;
}

.core-services__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.core-services__header h2 span {
  color: var(--secondary-color);
  position: relative;
}

.core-services__header h2 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(229, 48, 111, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.core-services__grid {
  display: grid;
  gap: 3rem;
}

.core-service__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  z-index: 1;
}

.core-service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  transition: width 0.5s ease;
}

.core-service__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.core-service__card:hover::before {
  width: 8px;
}

.core-service__icon {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.core-service__icon svg {
  width: 30px;
  height: 30px;
  fill: var(--secondary-color);
}

.core-service__content {
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 1;

}


.core-service__content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-left: 3rem; /* Adjust this value as needed */
  margin-bottom: 1rem;
}

.core-service__content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.core-service__features {
  margin-bottom: 2rem;
}

.core-service__features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.core-service__features i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.core-service__visual {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.visual-element {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0.1;
  z-index: 1;
}

.visual-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.8s ease;
}

.core-service__card:hover .visual-image {
  transform: scale(1.05);
}

.core-service__cta {
  margin-top: 1.5rem;
}

.btn--outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.btn--outline:hover {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(255, 137, 6, 0.3);
}

/* Responsive Design */
@media (min-width: 768px) {
  .core-service__card {
    grid-template-columns: 1fr 1fr;
  }
  
  .core-service__card:nth-child(even) .core-service__content {
    order: 2;
  }
  
  .core-service__card:nth-child(even) .core-service__visual {
    order: 1;
  }
  
  .core-service__content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .core-service__visual {
    height: auto;
  }
}

@media (min-width: 1024px) {
  .core-services__grid {
    gap: 4rem;
  }
  
  .core-service__card {
    max-width: 1200px;
    margin: 0 auto;
  }
}
/* Testimonial Slider Styles */
.wz-testimonial-slider {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

.wz-testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wz-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.wz-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e0d16;
  margin-bottom: 0.5rem;
}

.wz-section-header p {
  font-size: 1.1rem;
  color: #767268;
}

.wz-testimonial-wrapper {
  position: relative;
}

.wz-testimonial-track {
  padding: 1rem;
}

.wz-testimonial-slide {
  height: auto;
  padding: 1rem;
}

.wz-testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(229, 48, 111, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wz-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.wz-quote-icon {
  font-size: 3rem;
  color: rgba(229, 48, 111, 0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.wz-testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #0e0d16;
  margin-bottom: 2rem;
  position: relative;
}

.wz-client-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.wz-client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.wz-client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wz-client-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0e0d16;
  margin-bottom: 0.2rem;
}

.wz-client-details p {
  font-size: 0.9rem;
  color: #767268;
  margin-bottom: 0.5rem;
}

.wz-client-rating {
  display: flex;
  gap: 0.2rem;
}

.wz-client-rating i {
  color: #ff8906;
  font-size: 1rem;
}

/* Swiper Navigation */
.wz-swiper-pagination {
  position: relative;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.wz-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(229, 48, 111, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
}

.wz-swiper-pagination .swiper-pagination-bullet-active {
  background: #e5306f;
  transform: scale(1.2);
}

.wz-swiper-button-next,
.wz-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #0e0d16;
}

.wz-swiper-button-next:hover,
.wz-swiper-button-prev:hover {
  background: #e5306f;
  color: white;
}

.wz-swiper-button-next {
  right: -20px;
}

.wz-swiper-button-prev {
  left: -20px;
}
@media (max-width: 1024px) {
  .wz-section-header h2 {
    font-size: 2rem;
  }
  
  .wz-swiper-button-next,
  .wz-swiper-button-prev {
    display: none;
  }
}

@media (max-width: 768px) {
  .wz-testimonial-slider {
    padding: 3rem 0;
  }
  
  .wz-testimonial-card {
    padding: 2rem;
  }
  
  .wz-testimonial-text {
    font-size: 1rem;
  }
}
/* Free Demo Booking Section Styles */
.wz-demo-booking {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9f7ff 100%);
  position: relative;
  overflow: hidden;
}

.wz-demo-booking::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,137,6,0.05) 0%, rgba(255,137,6,0) 70%);
  z-index: 0;
}

.wz-demo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.wz-demo-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.wz-demo-text {
  flex: 1;
  min-width: 300px;
}

.wz-demo-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e0d16;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.wz-demo-heading span {
  color: #e5306f;
  position: relative;
}

.wz-demo-heading span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(229, 48, 111, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.wz-demo-subheading {
  font-size: 1.2rem;
  color: #767268;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.wz-demo-benefits {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.wz-demo-benefits li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #0e0d16;
  display: flex;
  align-items: center;
}

.wz-demo-benefits i {
  margin-right: 0.8rem;
  color: #ff8906;
  font-size: 1.2rem;
}

.wz-demo-form-container {
  flex: 1;
  min-width: 300px;
}

.wz-demo-form-card {
  background: white;
  border-radius: 1.2rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 48, 111, 0.1);
}

.wz-demo-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #ff8906, #e5306f);
}

.wz-demo-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0e0d16;
  margin-bottom: 2rem;
  text-align: center;
}

.wz-demo-form {
  display: grid;
  gap: 1.5rem;
}

.wz-form-group {
  position: relative;
}

.wz-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0e0d16;
}

.wz-form-control {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  font-size: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.wz-form-control:focus {
  outline: none;
  border-color: #ff8906;
  box-shadow: 0 0 0 3px rgba(255, 137, 6, 0.2);
  background-color: white;
}

.wz-form-group i {
  position: absolute;
  left: 1rem;
  bottom: 0.8rem;
  color: #767268;
  font-size: 1.2rem;
}

.wz-demo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to right, #25D366, #128C7E);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.wz-demo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(18, 140, 126, 0.3);
}

.wz-demo-btn i {
  font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .wz-demo-booking {
    padding: 4rem 0;
  }
  
  .wz-demo-heading {
    font-size: 2rem;
  }
  
  .wz-demo-form-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .wz-demo-form-card {
    padding: 1.5rem;
  }
  
  .wz-demo-form {
    gap: 1rem;
  }
  
  .wz-demo-btn {
    padding: 0.8rem;
  }
}
.wz-avatar-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
}

.wz-avatar-icon i {
  position: relative;
  z-index: 1;
}

.wz-avatar-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #001f3f, var(--secondary-color));
  border-radius: 50%;
  opacity: 0.9;
}

.wz-indian-client::before {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: #FF9933;
  background-image: linear-gradient(#FF9933, #FFFFFF, #138808);
  z-index: 2;
}

.wz-usa-client::before {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: #3C3B6E;
  background-image: 
    linear-gradient(
      to bottom,
      #B22234 0%,
      #B22234 40%,
      #FFFFFF 40%,
      #FFFFFF 60%,
      #B22234 60%,
      #B22234 100%
    );
  z-index: 2;
}

.wz-uk-client::before {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: #012169;
  background-image: 
    linear-gradient(135deg, 
      #C8102E 0%, 
      #C8102E 25%, 
      #FFFFFF 25%, 
      #FFFFFF 40%, 
      #C8102E 40%, 
      #C8102E 60%, 
      #FFFFFF 60%, 
      #FFFFFF 75%, 
      #C8102E 75%, 
      #C8102E 100%
    );
  z-index: 2;
}


 .intern-link {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .intern-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #a777e3, #6e8efb);
  }
  
  .intern-link:active {
    transform: translateY(1px);
  }
  
  .new-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4757;
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 20px;
    animation: blink 1.5s infinite;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
  }
  
  .intern-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
  }
  
  .intern-link:hover::after {
    left: 100%;
  }
//new page
  .wz-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        .wz-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .wz-header {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .wz-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
            opacity: 0.2;
            z-index: 0;
        }
        
        .wz-header-content {
            position: relative;
            z-index: 1;
            margin-top:5rem;
        }
        
        .wz-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: wz-fadeInDown 1s ease;
        }
        
        .wz-header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            animation: wz-fadeInUp 1s ease 0.3s both;
        }
        
        .wz-cta-button {
            display: inline-block;
            background-color: #001f3f;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: wz-fadeIn 1s ease 0.6s both;
        }
        
        .wz-cta-button:hover {
            background-color:rgb(2, 19, 36);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .wz-section {
            padding: 80px 0;
        }
        
        .wz-section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .wz-section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .wz-section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #3498db;
        }
        
        .wz-programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .wz-program-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .wz-program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .wz-program-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .wz-program-content {
            padding: 25px;
        }
        
        .wz-program-content h3 {
            margin-top: 0;
            color: #2c3e50;
        }
        
        .wz-program-content p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .wz-program-duration {
            display: inline-block;
            background: #f1f1f1;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }
        
        .wz-partners-section {
            background-color: #f1f5f9;
        }
        
        .wz-partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
        }
        
        .wz-partner-logo {
            background: white;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .wz-partner-logo:hover {
            transform: scale(1.05);
        }
        
        .wz-partner-logo img {
            max-width: 100%;
            max-height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .wz-partner-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
    .wz-achievers-section {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 80px 0;
}

.wz-achievers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wz-achiever-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding: 30px 25px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wz-achiever-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.wz-achiever-img {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid white;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.wz-achiever-name {
    font-weight: bold;
    margin: 15px 0 8px;
    font-size: 1.4rem;
}

.wz-achiever-role {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.wz-achiever-company {
    font-size: 1rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
}

.wz-achiever-company img {
    height: 24px;
    margin-left: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wz-achievers-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 30px;
    }
    
    .wz-achiever-img {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .wz-achievers-grid {
        grid-template-columns: 1fr;
    }
    
    .wz-achiever-card {
        min-height: 350px;
        padding: 25px 20px;
    }
    
    .wz-achiever-img {
        width: 140px;
        height: 140px;
    }
}
        .wz-thank-you {
            text-align: center;
            padding: 40px 0;
        }
        
        .wz-thank-you h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .wz-team-member {
            display: inline-block;
            margin: 0 20px;
            text-align: center;
        }
        
        .wz-team-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #3498db;
            margin-bottom: 10px;
        }
        
        .wz-footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 30px 0;
        }
        
        .wz-footer p {
            margin: 0;
        }
        
        @keyframes wz-fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes wz-fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes wz-fadeInDown {
            from { 
                opacity: 0;
                transform: translateY(-20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .wz-header h1 {
                font-size: 2.2rem;
            }
            
            .wz-programs-grid {
                grid-template-columns: 1fr;
            }
            
            .wz-partners-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .wz-achievers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
      /* new section*/
        .global-growth-container {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.global-growth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.global-growth-content {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.global-growth-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.global-growth-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.global-growth-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s infinite;
}

.global-growth-logo::before {
    content: '🌍';
    font-size: 2rem;
}

.global-growth-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
}

.global-growth-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-top: 1rem;
}

.global-growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.global-growth-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.global-growth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.global-growth-card:hover::before {
    left: 100%;
}

.global-growth-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.global-growth-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.global-growth-flag {
    width: 48px;
    height: 32px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.global-growth-country {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.global-growth-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
}

.global-growth-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.global-growth-stat {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.global-growth-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4CAF50;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.global-growth-stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-weight: 300;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .global-growth-container {
        padding: 2rem 1rem;
    }
    
    .global-growth-title {
        font-size: 2.5rem;
    }
    
    .global-growth-title-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .global-growth-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .global-growth-card {
        padding: 1.5rem;
    }
    
    .global-growth-stats {
        gap: 2rem;
    }
}

.global-growth-animate {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.global-growth-animate:nth-child(1) { animation-delay: 0.1s; }
.global-growth-animate:nth-child(2) { animation-delay: 0.2s; }
.global-growth-animate:nth-child(3) { animation-delay: 0.3s; }
.global-growth-animate:nth-child(4) { animation-delay: 0.4s; }
.global-growth-animate:nth-child(5) { animation-delay: 0.5s; }
.global-growth-animate:nth-child(6) { animation-delay: 0.6s; }

/* Dropdown Container */
.wz-dropdown-parent {
  position: relative;
}

.wz-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.wz-dropdown-arrow {
  transition: transform 0.3s ease;
}

.wz-dropdown-parent:hover .wz-dropdown-arrow {
  transform: rotate(180deg);
}

.wz-dropdown-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 900px;
  max-width: calc(100vw - 2rem);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.wz-dropdown-parent:hover .wz-dropdown-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Grid Layout */
.wz-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

/* Service Cards */
.wz-service-card {
  display: block;
  padding: 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.wz-service-card:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.wz-service-icon {
  font-size: 1.75rem;
  color: #4a6cf7;
  margin-bottom: 0.75rem;
}

.wz-service-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.wz-service-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

/* More Items Section */
.wz-dropdown-more {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 0.5rem;
}

.wz-more-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #4a6cf7;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.wz-more-trigger:hover {
  background: rgba(74, 108, 247, 0.1);
}

.wz-more-arrow {
  transition: transform 0.3s ease;
}

.wz-dropdown-more.active .wz-more-arrow {
  transform: rotate(180deg);
}

.wz-more-content {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding-top: 1rem;
  animation: wz-fadeIn 0.3s ease forwards;
}

.wz-dropdown-more.active ~ .wz-more-content {
  display: grid;
}

@keyframes wz-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .wz-dropdown-container {
    position: static;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
    border: none;
    margin-top: 0.5rem;
  }
  
  .wz-dropdown-parent.active .wz-dropdown-container {
    display: block;
  }
  
  .wz-dropdown-parent.active .wz-dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .wz-dropdown-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .wz-service-card {
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .wz-dropdown-more {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
  
  .wz-more-trigger {
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 6px;
  }
  
  .wz-more-content {
    grid-template-columns: 1fr;
    padding-top: 0.5rem;
  }
  
  .wz-dropdown-parent:hover .wz-dropdown-container {
    transform: none;
  }
}

/* Unique class names to prevent style conflicts */
        .ws-strip-container {
            background-color: #0a1f3d; /* Dark blue */
            width: 100%;
            padding: 25px 0;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .ws-strip-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .ws-service-display {
            color: white;
            font-size: 28px;
            font-weight: 600;
            text-align: center;
            position: absolute;
            width: 100%;
            font-family: 'Arial', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .ws-service-display span {
            display: inline-block;
            position: relative;
        }
        
        .ws-service-display span::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: -5px;
            left: 0;
            background-color: #4a90e2;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.5s ease-out;
        }
        
        .ws-service-display.active span::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        
        .ws-service-display.entering {
            animation: ws-slideIn 0.8s ease-out forwards;
        }
        
        .ws-service-display.exiting {
            animation: ws-slideOut 0.8s ease-out forwards;
        }
        
        @keyframes ws-slideIn {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes ws-slideOut {
            from {
                transform: translateY(0);
                opacity: 1;
            }
            to {
                transform: translateY(-30px);
                opacity: 0;
            }
        }
        
        /* Decorative elements */
        .ws-strip-decoration {
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }
        
        .ws-strip-decoration::before,
        .ws-strip-decoration::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(74, 144, 226, 0.1);
        }
        
        .ws-strip-decoration::before {
            top: -50px;
            left: -50px;
        }
        
        .ws-strip-decoration::after {
            bottom: -50px;
            right: -50px;
        }
        /* WebAziz USP Section Styles - Add this CSS separately */
.webaziz-usp-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
}

.webaziz-usp-container {
    max-width: 1200px;
    margin: 0 auto;
}

.webaziz-usp-header {
    text-align: center;
    margin-bottom: 60px;
}

.webaziz-usp-title {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.webaziz-usp-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    bottom: -12px;
    left: 25%;
    border-radius: 2px;
}

.webaziz-usp-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.webaziz-usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.webaziz-usp-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.webaziz-usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.webaziz-usp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.webaziz-usp-card[data-feature="consultation"] .webaziz-usp-icon {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.webaziz-usp-card[data-feature="security"] .webaziz-usp-icon {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.webaziz-usp-card[data-feature="transparency"] .webaziz-usp-icon {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
}

.webaziz-usp-card-title {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 12px;
}

.webaziz-usp-card-desc {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.webaziz-usp-highlight {
    display: inline-block;
    background: #e0e7ff;
    color: #3b82f6;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .webaziz-usp-title {
        font-size: 2rem;
    }
    
    .webaziz-usp-grid {
        grid-template-columns: 1fr;
    }
}


   /* Common Button Style */
.bottom-left-whatsapp,
.bottom-center-call {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.bottom-left-whatsapp img,
.bottom-center-call img {
  width: 28px;
  height: 28px;
  /* filter: invert(1); */
}

/* WhatsApp: bottom-left */
.bottom-left-whatsapp {
  bottom: 20px;
  left: 20px;
 background-color: #25D366; /* Official WhatsApp green */
}

.bottom-left-whatsapp:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

/* Phone: bottom-center */
.bottom-center-call {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color:rgb(13, 170, 50);
}

.bottom-center-call:hover {
  transform: translateX(-50%) scale(1.1);
  background-color: #1e7e34;
}
@media (min-width: 769px) {
  .bottom-center-call {
    display: none;
  }
}
 /* Modal Styles */
        .qc-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            padding: 20px;
        }

        .qc-modal-overlay.qc-active {
            display: flex;
        }

        .qc-modal-container {
            background: white;
            border-radius: 16px;
            width: 100%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .qc-close-btn {
            position: absolute;
            top: 16px;
            right: 16px;
            background: #f8f9fa;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 18px;
            color: #666;
            cursor: pointer;
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .qc-close-btn:hover {
            background: #e9ecef;
            color: #333;
        }

        .qc-modal-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
        }

        /* Left Section */
        .qc-left-section {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: white;
            border-radius: 16px 0 0 16px;
        }

        .qc-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .qc-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #ff6b35;
            margin-bottom: 16px;
            margin: 0 auto 16px auto; /* Center horizontally + spacing below */
    display: block; /* Required to apply auto margins */
        }

        .qc-main-heading {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .qc-highlight {
            color: #ff6b35;
        }

        .qc-awards {
            display: flex;
            justify-content: space-around;
            gap: 16px;
            margin-bottom: 32px;
        }

        .qc-award {
            text-align: center;
            flex: 1;
        }

        .qc-award-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 8px;
            background: #ff6b35;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .qc-award-text {
            font-size: 11px;
            font-weight: 600;
            color: #ffd700;
            margin-bottom: 4px;
        }

        .qc-award-source {
            font-size: 10px;
            color: #bdc3c7;
        }

        .qc-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .qc-stat {
            text-align: center;
            padding: 16px 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            border-left: 3px solid #ff6b35;
        }

        .qc-stat-number {
            font-size: 18px;
            font-weight: 700;
            color: #ff6b35;
            margin-bottom: 4px;
        }

        .qc-stat-label {
            font-size: 11px;
            color: #bdc3c7;
            line-height: 1.3;
        }

        /* Right Section */
        .qc-right-section {
            padding: 32px;
            background: #f8f9fa;
            border-radius: 0 16px 16px 0;
        }

        .qc-form-title {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 24px;
            text-align: center;
        }

        .qc-form-group {
            margin-bottom: 16px;
        }

        .qc-form-label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 13px;
        }

        .qc-form-input {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            transition: border-color 0.3s ease;
            background: white;
        }

        .qc-form-input:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }

        .qc-phone-container {
            display: flex;
            gap: 8px;
        }

        .qc-country-code {
            width: 70px;
            padding: 12px 8px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            background: white;
        }

        .qc-phone-input {
            flex: 1;
        }

        .qc-textarea {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            resize: vertical;
            min-height: 80px;
            font-family: inherit;
            background: white;
        }

        .qc-textarea:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }

        .qc-submit-btn {
            width: 100%;
            padding: 14px;
            background: #ff6b35;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
        }

        .qc-submit-btn:hover {
            background: #e55a2b;
            transform: translateY(-1px);
        }

        /* Mobile Responsive */
 @media (max-width: 768px) {
  .qc-modal-container {
    margin: 10px;
    max-height: 95vh;
  }

  .qc-modal-content {
    grid-template-columns: 1fr;
  }

  .qc-left-section {
    padding: 12px;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3b4d5f 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
  }

  .qc-header {
    margin-bottom: 16px;
  }

  .qc-logo {
    width: 50px;
    height: 50px;
    margin: 0 auto 8px auto;
    display: block;
  }

  .qc-main-heading {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 10px;
  }

  .qc-highlight {
    color: #ff6b35;
  }

  .qc-awards {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
  }

  .qc-award {
    text-align: center;
  }

  .qc-award-icon {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .qc-award-text {
    font-size: 9px;
  }

  .qc-award-source {
    font-size: 8px;
  }

  .qc-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .qc-stat {
    padding: 8px;
    border-left: 2px solid #ff6b35;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
  }

  .qc-stat-number {
    font-size: 14px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 3px;
  }

  .qc-stat-label {
    font-size: 9px;
    color: #bdc3c7;
    line-height: 1.2;
  }

  .qc-right-section {
    padding: 20px;
    border-radius: 0 0 16px 16px;
  }

  .qc-form-title {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .qc-form-group {
    margin-bottom: 12px;
  }

  .qc-form-label {
    font-size: 12.5px;
  }

  .qc-form-input,
  .qc-textarea,
  .qc-country-code {
    font-size: 13px;
  }

  .qc-submit-btn {
    font-size: 14px;
    padding: 10px;
  }

  .qc-country-code {
    width: 60px;
  }
}


@media (max-width: 480px) {
  .qc-modal-overlay {
    padding: 8px;
  }

  .qc-left-section,
  .qc-right-section {
    padding: 16px;
  }

  .qc-awards {
    flex-direction: column;
    gap: 10px;
  }

  .qc-award {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
  }

  .qc-award-icon {
    margin: 0;
  }

  .qc-award-content {
    flex: 1;
  }

  .qc-logo {
    width: 45px;
    height: 45px;
  }
}


/* Base dropdown styling */
.webaziz-dropdown {
  position: relative;
}

/* Modern dropdown menu */
.webaziz-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 240px;
  padding: 12px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  z-index: 999;
  overflow: hidden;
  animation: fadeIn 0.3s ease-in-out;
}

/* Animate dropdown */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown links */
.webaziz-dropdown-menu li {
  list-style: none;
}

.webaziz-dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #1f2937;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.2s, padding-left 0.2s;
  border-bottom: 1px solid #eee;
}

.webaziz-dropdown-menu li:last-child a {
  border-bottom: none;
}

.webaziz-dropdown-menu li a:hover {
  background-color: #f0f4f8;
  padding-left: 24px;
}

/* Highlight item (e.g. Book My Technician) */
.webaziz-dropdown-menu li a.highlight {
  color: #facc15; /* bright yellow */
  font-weight: 700;
}

/* Show dropdown on hover */
.webaziz-dropdown:hover .webaziz-dropdown-menu {
  display: block;
}

/* Dropdown arrow style (optional) */
.webaziz-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  position: relative;
}
/* Default: hide mobile-only, show desktop-only */
.mobile-only {
  display: none;
}
.desktop-only {
  display: block;
}

/* On smaller screens (like mobile nav) */
@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
}

.webaziz-social-icons{
  background: rgba(255, 255, 255, 0.1);
  margin-top:3rem;
   backdrop-filter: blur(20px);
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            width: fit-content;
            flex-wrap: nowrap;
            gap: 90px;
            background:black;
}
 .webaziz-social-icons::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
          .webaziz-social-icons a {
            position: relative;
            /* display: flex; */
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            text-decoration: none;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            z-index: 1;
            flex-shrink: 0;
        }
         .webaziz-social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .webaziz-social-icons a:hover::before {
            opacity: 1;
        }

        .webaziz-social-icons a:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .webaziz-social-icons a i {
            font-size: 22px;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .webaziz-social-icons a:hover i {
            transform: scale(1.2);
            filter: brightness(1.2);
        }
 /* Individual platform colors and animations */
        .webaziz-social-icons a[href*="instagram"] {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
            /* border-radius:1px; */
        }

        .webaziz-social-icons a[href*="instagram"]:hover {
            box-shadow: 0 15px 30px rgba(240, 148, 51, 0.4);
        }

        .webaziz-social-icons a[href*="wa.me"] {
            background: linear-gradient(45deg, #25d366, #128c7e);
            color: white;
        }

        .webaziz-social-icons a[href*="wa.me"]:hover {
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
        }

        .webaziz-social-icons a[href*="tel:"] {
            background: linear-gradient(45deg, #4285f4, #34a853);
            color: white;
        }

        .webaziz-social-icons a[href*="tel:"]:hover {
            box-shadow: 0 15px 30px rgba(66, 133, 244, 0.4);
        }

        .webaziz-social-icons a[href*="twitter"] {
            background: linear-gradient(45deg, #1da1f2, #0d8bd9);
            color: white;
        }

        .webaziz-social-icons a[href*="twitter"]:hover {
            box-shadow: 0 15px 30px rgba(29, 161, 242, 0.4);
        }

        .webaziz-social-icons a[href*="youtube"] {
            background: linear-gradient(45deg, #ff0000, #cc0000);
            color: white;
        }

        .webaziz-social-icons a[href*="youtube"]:hover {
            box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
        }

        .webaziz-social-icons a[href*="linkedin"] {
            background: linear-gradient(45deg, #0077b5, #005885);
            color: white;
        }

        .webaziz-social-icons a[href*="linkedin"]:hover {
            box-shadow: 0 15px 30px rgba(0, 119, 181, 0.4);
        }

        .webaziz-social-icons a[href*="facebook"] {
            background: linear-gradient(45deg, #1877f2, #0d5ab8);
            color: white;
        }

        .webaziz-social-icons a[href*="facebook"]:hover {
            box-shadow: 0 15px 30px rgba(24, 119, 242, 0.4);
        }


        
        /* WebAziz Portfolio Specific Styles */
.webaziz-portfolio-container {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: #333;
  line-height: 1.6;
}

.webaziz-hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.webaziz-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.webaziz-hero-text {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.webaziz-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.webaziz-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1e3a8a;
}

.webaziz-section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0.5rem auto 0;
}

.webaziz-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.webaziz-solution-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webaziz-solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.webaziz-card-header {
  margin-bottom: 1rem;
}

.webaziz-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.webaziz-industry-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.webaziz-card-desc {
  color: #475569;
  margin-bottom: 1.5rem;
}

.webaziz-tech-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.webaziz-tech-tag {
  background: #f1f5f9;
  color: #334155;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.webaziz-status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.webaziz-status-live {
  background: #dcfce7;
  color: #166534;
}

/* Advantages Section */
.webaziz-advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.webaziz-advantage-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.webaziz-advantage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.webaziz-advantage-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.webaziz-advantage-desc {
  color: #64748b;
  font-size: 0.9rem;
}

/* CTA Section */
.webaziz-cta-section {
  background: #1e3a8a;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 4rem;
}

.webaziz-cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.webaziz-cta-text {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.webaziz-cta-button {
  background: white;
  color: #1e3a8a;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.webaziz-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}


 /* Unique class names to prevent conflicts */
        .wws-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .wws-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .wws-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .wws-main-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #4a6bdf;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .wws-title {
            font-size: 36px;
            color: #2d3748;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .wws-description {
            font-size: 18px;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .wws-industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }
        
        .wws-industry-card {
            background: white;
            border-radius: 12px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .wws-industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .wws-industry-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(74, 107, 223, 0.1);
            border-radius: 50%;
            color: #4a6bdf;
            font-size: 24px;
        }
        
        .wws-industry-name {
            font-size: 20px;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .wws-industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(74, 107, 223, 0.8) 0%, rgba(74, 107, 223, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .wws-industry-card:hover::before {
            opacity: 1;
        }
        
        .wws-industry-card:hover .wws-industry-name,
        .wws-industry-card:hover .wws-industry-icon {
            color: white;
        }
        
        .wws-industry-card:hover .wws-industry-icon {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .wws-pattern {
            position: absolute;
            opacity: 0.05;
            z-index: 1;
        }
        
        .wws-pattern-1 {
            top: 50px;
            left: 50px;
            width: 200px;
            height: 200px;
        }
        
        .wws-pattern-2 {
            bottom: 50px;
            right: 50px;
            width: 200px;
            height: 200px;
        }
        
        @media (max-width: 768px) {
            .wws-title {
                font-size: 28px;
            }
            
            .wws-description {
                font-size: 16px;
            }
            
            .wws-industries-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }


         .tech-stack-section-xyz {
            padding: 60px 0;
            background-color: #f8f9fa;
            text-align: center;
            font-family: 'Arial', sans-serif;
        }
        
        .tech-stack-container-xyz {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .tech-stack-title-xyz {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #2c3e50;
            position: relative;
            display: inline-block;
        }
        
        .tech-stack-title-xyz:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: #3498db;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .tech-stack-subtitle-xyz {
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .tech-stack-image-wrapper-xyz {
            position: relative;
            margin: 0 auto;
            max-width: 1500px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .tech-stack-image-wrapper-xyz:hover {
            transform: translateY(-5px);
        }
        
        .tech-stack-img-xyz {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .tech-stack-cta-xyz {
            margin-top: 40px;
        }
        
        .tech-stack-btn-xyz {
            display: inline-block;
            padding: 12px 30px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .tech-stack-btn-xyz:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Animation for the section */
        @keyframes tech-stack-fadeIn-xyz {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .tech-stack-animate-xyz {
            animation: tech-stack-fadeIn-xyz 0.8s ease-out forwards;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .tech-stack-title-xyz {
                font-size: 2rem;
            }
            
            .tech-stack-subtitle-xyz {
                font-size: 1rem;
            }
            
            .tech-stack-image-wrapper-xyz {
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
        }



        /* Wide Image Process Section */
.eprocess-wide-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    padding: 4rem 0; /* Reduced side padding */
    color: #2d3748;
    overflow: hidden; /* Prevent horizontal scroll */
}

.eprocess-wide-container {
    max-width: 1400px; /* Wider container */
    margin: 0 auto;
    padding: 0 20px;
}

.eprocess-wide-title {
    text-align: center;
    font-size: 2.8rem; /* Slightly larger */
    margin-bottom: 2.5rem;
    color: #1a202c;
    position: relative;
}

.eprocess-wide-title::after {
    content: '';
    display: block;
    width: 100px; /* Wider underline */
    height: 5px;
    background: #4f46e5;
    margin: 1.5rem auto 0;
    border-radius: 3px;
}

.eprocess-wide-image-wrapper {
    margin: 3rem 0;
    padding: 0;
    background: white;
    border-radius: 0;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
    width: 100%;
    overflow: hidden;
}

.eprocess-wide-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 0; /* Full width images often look better without rounded corners */
}

.eprocess-wide-image:hover {
    transform: scale(1.01);
}

.eprocess-wide-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 0 20px;
}

.eprocess-wide-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #4f46e5;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.eprocess-wide-link:hover {
    background: #4338ca;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .eprocess-wide-container {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .eprocess-wide-section {
        padding: 3rem 0;
    }
    
    .eprocess-wide-title {
        font-size: 2.2rem;
    }
    
    .eprocess-wide-image-wrapper {
        margin: 2rem 0;
    }
}
/* Add this at the end of your existing CSS */
@media (max-width: 768px) {
    .eprocess-wide-image-wrapper {
        margin: 2rem -20px; /* Negative margin to extend beyond container */
        width: calc(100% + 40px); /* Compensate for container padding */
    }
    
    .eprocess-wide-image {
        border-radius: 0; /* Remove any rounding on mobile */
    }
}

@media (max-width: 480px) {
    .eprocess-wide-image-wrapper {
        margin: 2rem -15px;
        width: calc(100% + 30px);
    }
  }