* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}
body {
    font-family: "Titillium Web", sans-serif;
}

/* Header Styles */
.ddhs-header {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    margin-top: 20px;
}

.ddhs-header-container {
    width: 1170px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid #0F0F0F1A;
    border-radius: 45px;
    background:#ffffff;
}

/* Logo Styles */
.ddhs-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    flex-shrink: 0;
}


.ddhs-logo img {
   width: 150px;
}

.ddhs-logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Navigation Styles */
.ddhs-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.ddhs-nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.ddhs-nav-link:hover {
    color: #666;
}

.ddhs-nav-link.ddhs-active {
    color: #FF5722;
}

/* Button Styles */
.ddhs-btn-call {
    padding: 12px 32px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

.ddhs-btn-call:hover {
    background-color: #333;
}

/* Hamburger Menu */
.ddhs-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.ddhs-hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

.ddhs-hamburger.ddhs-active .ddhs-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 3px);
}

.ddhs-hamburger.ddhs-active .ddhs-hamburger-line:nth-child(2) {
    opacity: 0;
}

.ddhs-hamburger.ddhs-active .ddhs-hamburger-line:nth-child(3) {
    transform:rotate(-45deg) translate(7px, -6px)
}

/* Mobile Menu */
.ddhs-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px;
}

.ddhs-mobile-menu.ddhs-active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ddhs-mobile-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ddhs-mobile-nav-link.ddhs-active {
    color: #FF5722;
}

/* Responsive Styles */


@media (max-width: 1170px) {
    .ddhs-header-container {
        gap: 16px;
        border: 0;
        border-radius: 0;
        width: auto;
    }

    .ddhs-hamburger {
        display: flex;
    } 

    .ddhs-nav {
        display: none;
    }

    .ddhs-header {
        position: relative;
        border-bottom: 1px solid #0F0F0F1A;
       padding-bottom: 16px;
       top: auto;
       left: auto;
       transform: none;
    }

    .ddhs-mobile-menu {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .ddhs-logo-text {
        font-size: 16px;
    }

    .ddhs-btn-call {
        padding: 10px 24px;
        font-size: 13px;
    }

    .ddhs-header-container {
        padding: 0 16px;
        gap: 12px;
    }

    .ddhs-nav-link {
        font-size: 13px;
        gap: 24px;
    }
}

/**hero section****/

.ddmhs-hero {
    background: url(images/microsite/bg-microsite.png) no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    padding-top: 120px;
  }

  .ddmhs-container {
    max-width: 900px;
    width: 100%;
  }

  .ddmhs-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .ddmhs-headline {
    font-size: 56px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .ddmhs-brand {
    font-size: 48px;
    font-weight: 600;
    color: #ff6b4a;
    letter-spacing: -0.5px;
    line-height: 0.5;
  }

  .ddmhs-subtitle {
    font-size: 18px;
    color: #858585;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 16px 0 12px 0;
  }

  .ddmhs-description {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 0 24px 0;
  }

  .ddmhs-button {
    background-color: #ff6b4a;
    color: #ffffff;
    border: none;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 74, 0.2);
    margin-top: 0px;
    text-decoration: none;
  }

  .ddmhs-button:hover {
    background-color: #ff5530;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 74, 0.3);
  }

  .ddmhs-button:active {
    transform: translateY(0);
  }
  .ddmhs-hero-img{
    text-align: center;
    margin-top: 30px;
  }
  .ddmhs-hero-img-mobile{
    display: none;
  }
  @media (max-width: 1080px) {
    .ddmhs-hero-img img{
        width: 100%;
      }
  }

  /* Tablet Responsive */
  @media (max-width: 768px) {
    .ddmhs-hero {
      min-height: 90vh;
      padding: 40px 20px;
    }

    .ddmhs-headline {
      font-size: 42px;
    }

    .ddmhs-brand {
      font-size: 36px;
    }

    .ddmhs-subtitle {
      font-size: 16px;
    }

    .ddmhs-description {
      font-size: 14px;
    }
  
  }

  /* Mobile Responsive */
  @media (max-width: 480px) {
    .ddmhs-hero {
      min-height: 90vh;
      padding: 30px 16px;
      justify-content: normal;
    }

    .ddmhs-headline {
      font-size: 32px;
      margin-bottom: 4px;
    }

    .ddmhs-brand {
      font-size: 28px;
      margin: 8px 0 16px 0;
    }

    .ddmhs-subtitle {
      font-size: 14px;
      margin: 12px 0 8px 0;
    }

    .ddmhs-description {
      font-size: 13px;
      margin: 0 0 16px 0;
    }

    .ddmhs-button {
      padding: 12px 40px;
      font-size: 14px;
      margin-top: 8px;
    }
    .ddmhs-hero-img-mobile{
      display: block;
    }
    .ddmhs-hero-img-desktop{
      display: none;
    }
  }



  /**About css ****/

.ndagr-section {
    background: #ffffff;
    padding: 10px 20px;
}

.ndagr-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.ndagr-image-wrapper {
    flex: 0 0 45%;
    min-width: 0;
}

.ndagr-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ndagr-content {
    flex: 1;
    min-width: 0;
}

.ndagr-feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ndagr-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ndagr-checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: #FF5538;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.ndagr-checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.ndagr-feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 400;
}

.ndagr-feature-text strong {
    font-weight: 600;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ndagr-section {
        padding: 40px 20px;
    }

    .ndagr-container {
        flex-direction: column;
        gap: 40px;
    }

    .ndagr-image-wrapper {
        flex: 0 0 100%;
    }

    .ndagr-content {
        flex: 1;
    }

    .ndagr-feature-list {
        gap: 20px;
    }

    .ndagr-feature-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ndagr-section {
        padding: 30px 16px;
    }

    .ndagr-container {
        gap: 24px;
    }

    .ndagr-feature-list {
        gap: 16px;
    }

    .ndagr-feature-item {
        gap: 12px;
    }

    .ndagr-feature-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .ndagr-checkmark {
        width: 20px;
        height: 20px;
    }

    .ndagr-checkmark::after {
        font-size: 12px;
    }
}


.ndhrb-section {
    background-color: #ffffff;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ndhrb-container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
  }

  .ndhrb-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
  }

  .ndhrb-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 380px;
  }

  .ndhrb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  .ndhrb-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 36px;
    color: #e67e5f;
  }

  .ndhrb-icon svg {
    width: 32px;
    height: 32px;
    stroke: #e67e5f;
    stroke-width: 2;
    fill: none;
  }

  .ndhrb-heading {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .ndhrb-description {
    font-size: 16px;
    color: #696687;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
  }

  .ndhrb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border: 1px solid #FF5733;
    background-color: transparent;
    color: #FF5733;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    width: 200px;
  }

  .ndhrb-button:hover {
    background-color: #FF5733;
    color: #ffffff;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .ndhrb-cards-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .ndhrb-card {
      padding: 30px 24px;
      min-height: auto;
    }

    .ndhrb-heading {
      font-size: 22px;
    }

    .ndhrb-description {
      font-size: 15px;
    }
  }

  @media (max-width: 640px) {
    .ndhrb-section {
      padding: 40px 16px;
    }

    .ndhrb-container {
      padding: 0 16px;
    }

    .ndhrb-cards-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .ndhrb-card {
      padding: 28px 20px;
    }

    .ndhrb-icon {
      width: 56px;
      height: 56px;
      font-size: 32px;
      margin-bottom: 20px;
    }

    .ndhrb-icon svg {
      width: 28px;
      height: 28px;
    }

    .ndhrb-heading {
      font-size: 20px;
      margin-bottom: 12px;
    }

    .ndhrb-description {
      font-size: 14px;
      margin-bottom: 24px;
    }

    .ndhrb-button {
      padding: 10px 28px;
      font-size: 14px;
    }
  }



 /* testimonial Section */
 .ddnts-success-section {
    padding: 80px 20px;
    background-color: #F5F5F5;
}

.ddnts-container {
    max-width: 1170px;
    margin: 0 auto;
}

/* Header Section */
.ddnts-header {
    text-align: center;
    margin-bottom: 30px;
}

.ddnts-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.ddnts-label-icon {
    border-radius: 18px;
    display: flex;
    gap: 4px;
    align-items: center;
    background: #F8F9FA;
    padding: 5px 20px;
    border: 1px solid #E6E9EE
}
.ddnts-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}
.ddnts-title sup{
    font-size: 16px;
}

.ddnts-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

/* Carousel Container */
.ddnts-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.ddnts-carousel {
    display: flex;
}

/* Slide */
.ddnts-slide {
    display: flex !important;
    gap: 30px;
    align-items: stretch;
    padding: 10px;
    outline: none;
}

.ddnts-slide-inner {
    display: flex;
    gap: 5px;
    width: 100%;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ddnts-slide-image {
    width: 40%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ddnts-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ddnts-slide-content {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ddnts-slide-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ddnts-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 30px;
}

.ddnts-slide-footer {
    display: flex;
    gap: 60px;
    align-items: flex-end;
}

.ddnts-author-info {
    flex: 1;
}

.ddnts-author-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.ddnts-author-role {
    font-size: 14px;
    color: #999;
}

.ddnts-company-info {
    flex: 1;
    text-align: right;
}

.ddnts-company-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.ddnts-company-size {
    font-size: 14px;
    color: #999;
}

/* Navigation Arrows */
.ddnts-carousel-wrapper .slick-prev,
.ddnts-carousel-wrapper .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.ddnts-carousel-wrapper .slick-prev:hover,
.ddnts-carousel-wrapper .slick-next:hover {
    background-color: #333;
}

.ddnts-carousel-wrapper .slick-prev {
    left: 0;
}

.ddnts-carousel-wrapper .slick-next {
    right: 0;
}

.ddnts-carousel-wrapper .slick-prev::before,
.ddnts-carousel-wrapper .slick-next::before {
    font-size: 57px;
    color: white;
    position: absolute;
    top: 15px;
    line-height: 0;
}

.ddnts-carousel-wrapper .slick-prev::before {
    content: "‹";
}

.ddnts-carousel-wrapper .slick-next::before {
    content: "›";
}

/* Dots Navigation */
.ddnts-carousel-wrapper .slick-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    list-style: none;
}

.ddnts-carousel-wrapper .slick-dots li {
    width: 12px;
    height: 12px;
}

.ddnts-carousel-wrapper .slick-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: none;
    background-color: #d0d0d0;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.ddnts-carousel-wrapper .slick-dots li.slick-active button {
    background-color: #E8592E;
}

/* Responsive */
@media (max-width: 768px) {
    .ddnts-success-section {
        padding: 60px 20px;
    }

    .ddnts-title {
        font-size: 36px;
    }

    .ddnts-subtitle {
        font-size: 16px;
    }

    .ddnts-carousel-wrapper {
        padding: 0 50px;
    }

    .ddnts-slide {
        padding: 0px;
    }

    .ddnts-slide-inner {
        flex-direction: column;
        gap: 20px;
    }

    .ddnts-slide-image {
        width: 100%;
        height: 300px;
    }

    .ddnts-slide-content {
        width: 100%;
        padding: 30px;
    }

    .ddnts-slide-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .ddnts-company-info {
        text-align: left;
    }

    .ddnts-carousel-wrapper .slick-prev,
    .ddnts-carousel-wrapper .slick-next {
        width: 40px;
        height: 40px;
        top: 40%;
    }

    .ddnts-slide-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .ddnts-success-section {
        padding: 40px 15px;
    }

    .ddnts-title {
        font-size: 28px;
    }

    .ddnts-subtitle {
        font-size: 14px;
    }

    .ddnts-carousel-wrapper {
        padding: 0 20px;
    }

    .ddnts-slide-content {
        padding: 20px;
    }

    .ddnts-carousel-wrapper .slick-prev,
    .ddnts-carousel-wrapper .slick-next {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .ddnts-slide-text {
        font-size: 14px;
    }

    .ddnts-author-name,
    .ddnts-company-name {
        font-size: 15px;
    }

    .ddnts-author-role,
    .ddnts-company-size {
        font-size: 13px;
    }

    .ddnts-slide-footer {
        gap: 15px;
    }
}

.slick-dots li button:before{
  font-size: 0!important;
}  



/***Price section css ***/

.ndtgr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
  }

  .ndtgr-header .ndtgr-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .ndtgr-header .ndtgr-heading sup {
     font-size: 1rem;
  }

  .ndtgr-header p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 50px;
  }

  .ndtgr-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-content: center;
  }

  .ndtgr-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
    background: #fff;
  }

  .ndtgr-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
  }

  .ndtgr-card:nth-child(2) {
    border: 2px solid #FF5733;
    background: linear-gradient(to bottom, #fff, #fff9f6);
  }

  .ndtgr-card h2 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 10px;
  }

  .ndtgr-price {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .ndtgr-price span {
    font-weight: 400;
    color: #666;
    font-size: 1rem;
  }

  .ndtgr-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    min-height: 50px;
  }

  .ndtgr-btn {
    display: block;
    text-align: center;
    border-radius: 25px;
    padding: 10px 25px;
    border: 1.5px solid #FF5733;
    color: #FF5733;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 25px;
  }

  .ndtgr-btn:hover {
    background: #FF5733;
    color: #fff;
  }

  .ndtgr-card:nth-child(2) .ndtgr-btn {
    background: #FF5733;
    color: #fff;
  }

  .ndtgr-card:nth-child(2) .ndtgr-btn:hover {
    background: #d8592e;
    border-color: #d8592e;
  }

  .ndtgr-features {
    list-style: none;
  }

  .ndtgr-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #333;
  }

  .ndtgr-features li::before {
    content: "✔";
    color: #43b581;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .ndtgr-card {
      text-align: center;
    }
    .ndtgr-features li {
      text-align: left;
      display: inline-block;
    }
  }


  /***start with ranked css****/

  .ndswg-section {
    padding: 60px 20px;
    background: #fff;
  }
  .ndswg-container {
    max-width: 980px;
    margin: 0 auto;
  }
  .ndswg-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .ndswg-title sup{
    font-size: 16px;
  }
  .ndswg-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
  }
  .ndswg-wrapper {
    display: flex;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    flex-wrap: wrap;
  }
  .ndswg-tabs {
    width: 300px;
    display: flex;
    flex-direction: column;
    background: #F6F7F9;
    border-right: 1px solid #eee;
  }
  .ndswg-tab {
    padding: 20px;
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    flex:1
  }
  .ndswg-tab.active {
    border-left: 4px solid #ff5b2e;
    background: #ffffff;
  }
  .ndswg-step {
    display: flex;
    gap:10px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
  }
  .ndswg-tab p {
    margin: 0;
    color: #555;
    font-size: 15px;
    margin-top: 20px;
  }
  .ndswg-content {
    flex: 2;
    padding: 30px;
    background: #fff5f2;
  }
  .ndswg-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
  }
  .ndswg-tab-content.active {
    display: block;
  }
  .ndswg-btn {
    background: #ff5b2e;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 15px 0;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .ndswg-btn:hover {
    background: #e54a21;
  }
  .ndswg-img {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @media (max-width: 768px) {
    .ndswg-wrapper {
      flex-direction: column;
    }
    .ndswg-tabs {
      width: 100%;
      flex-direction: row;
      border-right: none;
      border-bottom: 1px solid #eee;
    }
    .ndswg-tab {
      flex: 1;
      text-align: center;
      border-left: none;
      border-bottom: 4px solid transparent;
    }
    .ndswg-tab.active {
      border-left: none;
      border-bottom: 4px solid #ff5b2e;
    }
  }



/***FAQ css***/

.wcf-main-sec{
    padding: 100px 0;
    background: #fdfdfd;
  }
  
  .wcf-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .wcf-content {
    padding-right: 20px;
  }
  
  .wcf-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #000;
  }
  
  .wcf-title-accent {
    position: relative;
    display: inline-block;
  }
  
  .wcf-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .wcf-accordion-item {
    border-bottom: 1px solid #d0d0d0;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .wcf-accordion-item:first-child {
    border-top: 1px solid #d0d0d0;
  }
  
  .wcf-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    user-select: none;
  }
  
  .wcf-accordion-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    flex: 1;
    line-height: 1.4;
  }
  
  .wcf-accordion-indicator {
    width: 24px;
    height: 24px;
    border: 2px solid #000;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .wcf-accordion-indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .wcf-accordion-item.wcf-active .wcf-accordion-indicator {
    background-color: #000;
  }
  
  .wcf-accordion-item.wcf-active .wcf-accordion-indicator::after {
    opacity: 1;
  }
  
  .wcf-accordion-content {
    max-height: 0;
    overflow: hidden;
    /*  Improved transition for smoother animation - increased duration and used cubic-bezier easing */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
  }
  
  .wcf-accordion-item.wcf-active .wcf-accordion-content {
    max-height: 600px;
    margin-top: 16px;
  }
  
  
  .wcf-accordion-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
  
  .wcf-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .wcf-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
     .wcf-main-sec{
         padding-bottom:30px;
     }
    .wcf-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
  
    .wcf-content {
        padding-right: 0;
    }
  
    .wcf-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
  
    .wcf-accordion-title {
        font-size: 16px;
    }
  
    .wcf-accordion-text {
        font-size: 14px;
    }
  
    .wcf-accordion-item {
        padding: 18px 0;
    }
    .wcf-image {
        display:none;
    }
  }
  
  @media (max-width: 480px) {
  
    .wcf-container {
        gap: 30px;
    }
  
    .wcf-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
  
    .wcf-accordion-header {
        gap: 12px;
    }
  
    .wcf-accordion-title {
        font-size: 15px;
    }
  
    .wcf-accordion-text {
        font-size: 13px;
        line-height: 1.5;
    }
  
    .wcf-accordion-item {
        padding: 16px 0;
    }
  }
  
  
  /***gsd css***/
  
  .gsd-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
  
    .schedule-call{
      align-self: flex-start;
      padding: 14px 32px;
      background-color: #FF5733;
      color: #ffffff;
      border: none;
      border-radius: 25px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: capitalize;
      letter-spacing: 0.5px;
      margin-top: 20px;
      text-decoration: none;
      display: inline-block;
    }
  }
  
  .gsd-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .gsd-hero-box {
    background-color: #1a1a1a;
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  
  .gsd-hero-subtitle {
    color: #EF4823;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .gsd-hero-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
  }
  
  .gsd-hero-description {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
  }
  .gsd-btns{
       display: flex;
       justify-content: center;
       align-items: center;
       margin-top: 30px;
       gap:20px;
       flex-wrap: wrap;
  }
  .gsd-btns a{
    border: 1px solid #ffffff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 14px;
    gap: 7px;
    color: #ffffff;
    text-decoration: none;
  }
  .gsd-btns a:hover{
    background: #EF4823;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .gsd-section {
        padding: 40px 16px;
    }
  
    .gsd-hero-box {
        padding: 50px 30px;
        border-radius: 24px;
    }
  
    .gsd-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
  
    .gsd-hero-subtitle {
        font-size: 12px;
        margin-bottom: 16px;
    }
  
    .gsd-hero-description {
        font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .gsd-section {
        padding: 30px 12px;
    }
  
    .gsd-hero-box {
        padding: 40px 20px;
        border-radius: 20px;
    }
  
    .gsd-hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
  
    .gsd-hero-subtitle {
        font-size: 11px;
        margin-bottom: 12px;
    }
  
    .gsd-hero-description {
        font-size: 13px;
    }
  }  


/**footer css****/

footer {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.ddfs-container {
    max-width: 1170px;
    margin: 0 auto;
}

/* Stay Connected Section */
.ddfs-stay-connected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}

.ddfs-stay-connected-btn {
    border: 2px solid #000000;
    border-radius: 25px;
    padding: 12px 24px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ddfs-stay-connected-btn:hover {
    background-color: #333;
    color: #fff;
}

.ddfs-divider-line {
    flex: 1;
    height: 1px;
    background-color: #000000;
    margin-left: 30px;
}

/* Main Content Section */
.ddfs-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #000000;
}

/* Logo and Description Section */
.ddfs-logo-section {
    display: flex;
    flex-direction: column;
}

.ddfs-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ddfs-logo-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.ddfs-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.ddfs-social-icons {
    display: flex;
    gap: 12px;
}

.ddfs-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.ddfs-social-icon:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
}

.ddfs-social-icon a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Useful Links Section */
.ddfs-links-section,
.ddfs-services-section {
    display: flex;
    flex-direction: column;
}

.ddfs-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.ddfs-links-list,
.ddfs-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ddfs-link,
.ddfs-service {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.ddfs-link:hover,
.ddfs-service:hover {
    color: #ff6b35;
}

/* Contact Section */
.ddfs-contact-section {
    display: flex;
    flex-direction: column;
}

.ddfs-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ddfs-contact-item {
    font-size: 14px;
    color: #555;
}

.ddfs-contact-email {
    color: #1a1a1a;
    font-weight: 500;
}

.ddfs-contact-phone {
    color: #555;
}

.ddfs-flag-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 4px;
    margin-top: 10px;
}

/* Copyright Section */
.ddfs-copyright {
    text-align: center;
    font-size: 14px;
    color: #777;
    padding-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ddfs-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 16px;
    }

    .ddfs-stay-connected {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .ddfs-divider-line {
        display: none;
    }

    .ddfs-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .ddfs-logo-section,
    .ddfs-links-section,
    .ddfs-services-section,
    .ddfs-contact-section {
        text-align: left;
    }

    .ddfs-section-title {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 12px;
    }

    .ddfs-stay-connected-btn {
        width: 100%;
        text-align: center;
    }

    .ddfs-stay-connected {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .ddfs-main-content {
        gap: 20px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .ddfs-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .ddfs-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .ddfs-link,
    .ddfs-service,
    .ddfs-contact-item {
        font-size: 13px;
    }

    .ddfs-copyright {
        font-size: 12px;
        padding-top: 20px;
    }

    .ddfs-flag-image {
        max-width: 150px;
    }
}


.ddgrf-main-sec{
  margin-top: 120px;
}

@media (max-width:767px) {
  .ddgrf-main-sec{
    margin-top: 0px;
  }
}



/***Video section***/
  .ddnvs-video-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    border-radius: 12px;
    margin-bottom: 40px;
  }

  .ddnvs-video-container {
    position: relative;
    width: 100%;
    background: #d9d9d9;
    border-radius: 12px;
  }

  .ddnvs-video-content {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
  }

  .ddnvs-video-image {
    width: 500px;
    height: 300px;
    object-fit: cover;
  }

  .ddnvs-play-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .ddnvs-play-btn:hover {
    transform: scale(1.08);
  }

  .ddnvs-play-btn:before {
    content: ''; 
    border-left: 18px solid #000;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
  }

  @media(max-width: 768px) {
    .ddnvs-play-btn {
      width: 50px;
      height: 50px;
    }
    .ddnvs-video-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }
  }

  @media(max-width: 480px) {
    .ddnvs-play-btn {
      width: 42px;
      height: 42px;
    }
  }



   /* Base section */
.ndlmy-contact-section.getranked-contact {
  padding-top: 50px;
 }
 
 /* Container */
 .ndlmy-container {
   max-width: 1250px;
   margin: 0 auto;
   background-color: #1C1A1D;
   color: #fff;
   text-align: center;
   padding: 60px 20px;
   border-radius: 50px;
 }
 
 /* Headings */
 .ndlmy-subtitle {
   color: #d5542c;
   font-size: 16px;
   margin-bottom: 10px;
 }
 
 .getranked-contact .ndlmy-title {
     color: #fff;
   font-size: 50px;
   font-weight: 700;
   line-height: 1.4;
   margin-bottom: 40px;
 }
 
 /* Contact grid */
 .ndlmy-contact-grid {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 60px;
   margin-bottom: 40px;
 }
 
 .ndlmy-contact-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   color: #fff;
   max-width: 250px;
 }
 
 /* Icon circle */
 .ndlmy-icon-circle {
   background-color: #2a292b;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 10px;
 }
 
 .ndlmy-icon {
   font-size: 24px;
   color: #d5542c;
 }
 
 .ndlmy-label {
   color: #d5542c;
   font-weight: 600;
   margin-bottom: 5px;
 }
 
 .ndlmy-info {
   color: #ccc;
   font-size: 15px;
 }
 
 /* Buttons */
 .ndlmy-buttons {
   display: flex;
   justify-content: center;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .getranked-contact .ndlmy-btn-primary {
   background-color: #FF5733;
   color: #fff;
   padding: 14px 28px;
   border-radius: 30px;
   text-decoration: none;
   font-weight: 600;
   transition: 0.3s;
   font-size: 16px;
 }
 
 .ndlmy-btn-primary:hover {
   background-color: #e76b45;
 }
 
 .ndlmy-btn-outline {
   border: 2px solid #FF5733;
   color: #fff;
   padding: 12px 26px;
   border-radius: 30px;
   text-decoration: none;
   font-weight: 600;
   transition: 0.3s;
   font-size: 16px;
 }
 
 .ndlmy-btn-outline:hover {
   background-color: #FF5733;
   color:#fff;
 }
 
 /* Responsive */
 @media (max-width: 768px) {
   .ndlmy-contact-section {
  padding: 0 15px;
  padding-top: 30px;
   }
   .ndlmy-container{
     border-radius: 30px;
   }
   .ndlmy-title {
     font-size: 24px;
   }
   .ndlmy-contact-grid {
     gap: 30px;
   }
   .ndlmy-btn-primary,
   .ndlmy-btn-outline {
     width: 100%;
     text-align: center;
   }
 }
 