* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

    /* Loader Fullscreen */
    #loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
  }

  /* Spinner Style */
  .spinner {
      width: 50px;
      height: 50px;
      border: 6px solid #ccc;
      border-top-color: #3498db;
      border-radius: 50%;
      animation: spin 1s linear infinite;
  }

  /* Spinner Animation */
  @keyframes spin {
      to {
          transform: rotate(360deg);
      }
  }

  @keyframes blinkCursor {
      50% {
          border-color: transparent;
      }
  }

header{
    background-color: white;
    padding: 0;
    text-align: center;
}
nav {
    background: white;
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width:80%;
    margin: auto;
}

nav img {
    height: 60px;
}

.menu-btn {
    display: none;
    font-size: 24px;
    color: red;
    background: none;
    border: none;
    cursor: pointer;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.menu a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 400;
}

.menu a:hover {
    color: gray;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 16px;
    list-style: none;
}

.mobile-menu a {
    text-decoration: none;
    color: red;
    font-size: 18px;
    padding: 10px 0;
    display: block;
}

.mobile-menu a:hover {
    color: gray;
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }
    nav {
        width: 100%;
    }
}


.two-why-choose-us {
    max-width: 1100px;
    margin: auto;
}

.two-subheading {
    color: #fed000 ;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.two-main-heading {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
    text-align: center;
}

.two-underline {
    width: 80px;
    height: 4px;
    background-color:  #ffb600;
    margin: 10px auto 30px;
}

.two-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.two-features {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.two-feature {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    max-width: 350px;
    margin: auto;
    align-items: center;
}

.two-icon-box {
    width: 80px;
    height: auto;
    background-color: #ffb600 ;
    display: flex;
    align-items: flex-start;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px;
}

.two-icon-box img {
    width: 100%;
    height: auto;
}

.two-feature h4 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.two-feature p {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

.two-image-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.two-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .two-content {
        flex-direction: column;
        gap: 30px;
    }

    .two-feature {
        text-align: center;
        flex-direction: column;
    }
}


.hero {
    background: url(./assects/mobbg.jpg) no-repeat center center/cover !important;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    padding: 20px;
}

.hero-content {
    width: 50%;
}

.hero h1 {
    font-size: 30px;
    font-weight: bold;
    text-align: left;
    color:  #ffb600;
}
.hero p {
    margin-top: 20px;
    font-size: 25px;
    color: white;
    text-align: left;
    min-height: 80px;
}

.hero-btns{
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.hero-btnone{
    display: inline-block;
    padding: 10px 20px;
    background: #ffb600;
    color: white;
    border: 3px solid #ffb600;
    text-decoration: none;
    
    margin-top: 10px;
    text-align: center;
}
.hero-btntwo{
    display: inline-block;
    padding: 10px 20px;
    background: #151515;
    border: 3px solid #ffb600;
    color: white;
    text-decoration: none;
   
    margin-top: 10px;
    text-align: center;
}





.btn-primary {
    background: red;
    color: white;
}

.btn-primary:hover {
    background: darkred;
}

.btn-secondary {
    border: 2px solid red;
    color: red;
}

.btn-secondary:hover {
    color: darkred;
    border-color: darkred;
}

.about{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: white;
}
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    border-radius: 8px;
    overflow: hidden;
    width: 90%;
}


.horf {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    max-width: 1200px;
    border-radius: 8px;
    overflow: hidden;
    width: 90%;
}

.about-image {
    width: 50%;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content {
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
}
.about-content h2 {
    margin: 0;
    font-size: 24px;
    color: #2c3e50;
}
.about-content p {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
}
.about-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ffb600;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    text-align: center;
}
.about-btn:hover {
    background: #c0392b;
}
.about-icons {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 20px;
}
.icon{
   display: flex;
   align-items: center;
   gap: 5px;
    height: auto;
    text-align: center;
}
.icon i{
    font-size: 24px;
    color: #fed000;
}
.icon p{
    margin: 0;
    color: black;
    font-size: 14px;
    font-weight: bold;
}
.icon img{
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .hero{
        background: linear-gradient(225deg, #151515 25%, #151515 20%) !important;
    }
    .about-container {
        flex-direction: column-reverse;
        width: 100% !important;
    } 
    .about-image {
            width: 100% !important;
        } 
    .about-content {
            width: 100% !important;
        } 
    .hero-content {
            width: 100% !important;
        }   
    .hero h1, .hero p {
        text-align: center !important;
    }
    .hero-btns {
        display: flex;
        justify-content:center;
        gap: 20px;
    }
}



.ss {
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
    color: #222;
    padding: 40px 20px;
  }

  .services-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .services-title span {
    color: #ffb600;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
  }

  .services-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
  }

  .services-card:hover {
    transform: translateY(-5px);
  }

  .services-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
  }

  .services-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #111;
  }

  .services-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #555;
  }

  .services-btn {
    display: inline-block;
    background-color: #ffb600;
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .services-btn:hover {
    background-color: #f57c00;
  }

  .services-cta {
    text-align: center;
  }

  .services-cta .services-btn {
    background-color: #e53935;
    padding: 12px 24px;
    font-size: 1rem;
  }

  .services-cta .services-btn:hover {
    background-color: #c62828;
  }


  .cc {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 40px;
    background-color: #f9fbfc;
    text-align: center;
  }

  .clients-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #111;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
  }

  .clients-section p {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
  }

  .clients-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 120px;
  }

  .clients-logo-slider {
    display: flex;
    width: max-content;
    animation: clients-scroll 20s linear infinite;
  }

  .clients-logo-box {
    background-color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 80px;
    flex-shrink: 0;
  }

  .clients-logo-box img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
  }

  @keyframes clients-scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }



  .pp {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
  }

  .policy-container {
    max-width: 900px;
    width: 100%;
    margin: auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #000000;
  }

  .policy-container h1 {
    color: #f4a300;
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .policy-container h2 {
    color: #e53935;
    margin-top: 30px;
    font-size: 1.3rem;
  }

  .policy-container ul {
    padding-left: 20px;
  }

  .policy-highlight {
    font-weight: bold;
    color: #f4a300;
  }

  .policy-contact {
    margin-top: 30px;
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 5px solid #f4a300;
    border-radius: 5px;
  }

  .policy-contact p {
    margin: 5px 0;
    word-break: break-word;
  }

  a {
    color: #007bff;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .policy-container {
      padding: 20px;
    }

    .policy-container h1 {
      font-size: 1.7rem;
    }

    .policy-container h2 {
      font-size: 1.1rem;
    }
  }


    .policy-container {
      padding: 15px;
    }

    .policy-container h1 {
      font-size: 1.5rem;
    }

    .policy-container h2 {
      font-size: 1rem;
    }
  }






:root {
    --primary-color: #b694f6;
    --bg-color: #000;
    --text-color: #fff;
    --accent-color: #8b5cf6;
    --font-main: 'Inter', sans-serif;
  }


  .ff {
    font-family: var(--font-main);
    background-color: #000;
    color: var(--text-color);
    line-height: 1.6;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  h2, h4 {
    font-weight: 700;
  }

  /* Shared Footer + Hero Container */
  .footer {
    padding: 4rem 2rem 2rem;
    background-color: var(--bg-color);
  }

  .footer.bg-light {
    background-color:#fed000;
    border-radius: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 4rem auto;
  }

  .footer-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #c0392b;
  }

  .footer-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #111;
  }

  .form-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }

  .input-email {
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    width: 100%;
    max-width: 350px;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: none;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }

  .cta-button:hover {
    background-color: #222;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-column {}

  .footer-heading {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }

  .footer-links {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 0.5rem;
    color: #ccc;
  }

  .footer-links li a:hover {
    text-decoration: underline;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    color: #aaa;
    font-size: 0.875rem;
  }

  .social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
  }

  .social-icons a {
    color: #fff;
    font-size: 1.3rem;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: var(--primary-color);
  }

  @media (min-width: 768px) {
    .form-container {
      flex-direction: row;
    }

    .footer-bottom {
      flex-direction: row;
    }
  }

  .page-title {
    width: 100%;
    height: 40vh;
    background-image: url('https://sairamfinancial.in/images/bg-content/sh-single-services.jpg'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white; /* Optional: for better text visibility */
    text-align: center;
}

.page-title-heading {
    font-size: 3rem;
    margin: 0;
}

.page-title-breadcrumb {
    font-size: 1.2rem;
    margin-top: 10px;
}



  .about-image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .about-image-row img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
  }

  .about-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
  }

  .about-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .about-two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .about-column {
    flex: 1;
    min-width: 250px;
  }

  .about-video-block {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .about-video {
    background: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQgKS9iF755t-mbnjQzzldvikDMkHEVTd89IA&s) no-repeat center center/cover;
    position: relative;
    width: 50%;
    height: 300px;
    background-color: #eee;
    border-radius: 10px;
    overflow: hidden;
  }


  .about-quote {
    font-style: italic;
    margin-top: 20px;
    background-color: #fff7d4;
    padding: 15px;
    border-left: 4px solid #facc15;
  }

  .about-features {
    text-align: center;
    background: #fffbea;
    padding: 60px 20px;
  }

  .about-features h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .about-features p {
    max-width: 600px;
    margin: 0 auto 40px;
  }

  .about-feature-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .about-feature {
    width: 250px;
    padding: 20px;
    text-align: center;
  }

  .about-feature-icon {
    width: 130px;
    height: auto;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #fde047;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;

    
    
  }

  @media (max-width: 768px) {
    .about-video-block {
      flex-direction: column;
      align-items: center;
    }
    .about-video{
        width: 100%;
    }

    .about-two-columns {
      flex-direction: column;
    }
    .about-two-columns{
        gap:0px;
    }
  }


  .section {
    max-width: 1200px;
    margin: auto;
  }

  .section-header {
    text-align: left;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .section-header h3 {
    font-size: 14px;
    color: #ffb600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .section-header h1 {
    font-size: 40px;
    line-height: 1.2;
    color: #111;
    font-weight: 400;
  }

  .section-header h1 .highlight {
    color: #ffb600;
    font-weight: 700;
  }

  .section-header p {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
  }

  .steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    border-top: 1px solid #ccc;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #eee;
    z-index: 0;
  }

  .step {
    flex: 1 1 220px;
    padding: 40px 20px;
    position: relative;
    text-align: center;
  }

  .step::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid #a3f72d;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .step-number {
    font-size: 80px;
    color: transparent;
    -webkit-text-stroke: 1px #0a2c4e;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
  }

  .step-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .section-header {
      flex-direction: column;
    }

    .steps {
      flex-direction: column;
      border: none;
    }

    .step {
      padding: 40px 0;
      border-top: 1px solid #eee;
    }

    .step::before {
      top: 0;
    }
  }


  .benefits-section {
    background-color: #ffffff;
    color: #111;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .benefits-text, .benefits-image {
    flex: 1 1 500px;
    padding: 20px;
  }

  .benefits-text h3 {
    color: #ffb600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .benefits-text h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .benefits-text h1 .highlight {
    color: #ffb600;
  }

  .benefits-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    max-width: 600px;
  }

  .benefits-bullets {
    display: flex;
    gap: 40px;
    font-size: 14px;
    margin-bottom: 40px;
    color: #333;
    flex-wrap: wrap;
  }

  .benefits-bullets div {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .benefits-bullets span.circle {
    width: 14px;
    height: 14px;
    border: 2px solid #ffb600;
    border-radius: 50%;
    display: inline-block;
  }

  .benefits-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
  }

  .benefits-footer {
    width: 100%;
    margin-top: 40px;
    background-color: #fff;
    border: 3px solid #ffb600;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 10px;
    text-align: center;
  }

  .benefit-item {
    flex: 1 1 200px;
    margin: 15px;
  }

  .benefit-icon {
    background-color: #ffb600;
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
  }

  .benefit-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
  }

  @media (max-width: 768px) {
    .benefits-section {
      flex-direction: column;
      text-align: center;
    }

    .benefits-bullets {
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }

    .benefits-footer {
      flex-direction: column;
    }
  }


  .nf {
    font-family: 'Inter', sans-serif;
    color: #fff;
    background-color: #000;
  }
  .footertwo-hero a {
    color: #ffb600;
    text-decoration: none;
  }
  .footertwo-hero {
    background-image: url('./assects/fimg.jpg');
    background-size: cover;
    background-position: top;
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footertwo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .footertwo-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
  }

  .footertwo-hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .footertwo-cta-button {
    background-color: #ffb600;
    color: #000;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .footertwo-cta-button:hover {
    background-color: #e08800;
  }

  .footertwo-footer {
    padding: 60px 20px;
    background-color: #000;
  }

  .footertwo-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
  }

  .footertwo-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }

  .footertwo-logo-circle {
    width: 200px;
    height: auto;
    
  }

  .footertwo-footer h3 {
    color: #ffb600;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .footertwo-footer p,
  .footertwo-footer li {
    font-size: 14px;
    line-height: 1.6;
  }

  .footertwo-footer ul {
    list-style: none;
  }

  .footertwo-newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .footertwo-newsletter-form input[type="email"] {
    padding: 10px;
    border-radius: 4px;
    border: none;
    flex: 1 1 200px;
  }

  .footertwo-newsletter-form button {
    background-color: #ffb600;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 10px 16px;
    cursor: pointer;
  }

  .footertwo-footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #aaa;
  }

  .footertwo-social-icons {
    margin-top: 20px;
  }

  .footertwo-social-icons a {
    display: inline-block;
    margin: 0 8px;
    font-size: 18px;
    color: #ffb600;
    transition: color 0.3s;
  }

  .footertwo-social-icons a:hover {
    color: #e08800;
  }

  @media (min-width: 768px) {
    .footertwo-hero-content h1 {
      font-size: 2.5rem;
    }
    .section{
      padding: 0 5%;
    }
    .section-header{
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    .section{
      padding: 0 5%;
    }
    .section-header{
      text-align: center;
    }
  }

  @media (min-width: 1024px) {
    .footertwo-hero-content h1 {
      font-size: 3rem;
    }
  }

  .nf{
    margin-top: 50px;
  }