/* header and banner css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Nunito Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6, .subtitle, .main-heading, .logo-text {
    font-family: 'Montserrat', sans-serif;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    border-bottom: 1px solid #DCDCDC;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-weight: 700;
    font-size: 24px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
}

.right-section {
    display: flex;
    align-items: center;
}

/* Language Dropdown Styles */
language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .globe-icon {
    color: #8DB0FF;
    margin-right: 5px;
  }

  .language-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 20px;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }

  .language-dropdown:hover .dropdown-content {
    display: block;
  }

.auth-buttons {
    display: flex;
}

.sign-in {
    margin-right: 15px;
    padding: 12px 24px;
    border: 2px solid #007400;
    border-radius: 8px;
    background: transparent;
    color: #007400;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
}
.sign-in:hover {
 background-color: #F0FAF0;
}
.start-llc:hover {
    background-color: #005800;
   }

.start-llc {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: #007400;
    color: white;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .nav-links {
      gap: 1rem;
    }
  }

  @media (max-width: 768px) {
    .mobile-menu-btn {
      display: block;
    }

    .nav-links {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      flex-direction: column;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
      gap: 0;
      transform: translateY(-150%);
      transition: transform 0.3s ease-in-out;
      z-index: 999;
    }

    .nav-links.active {
      transform: translateY(0);
    }

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

    .nav-links a {
      display: block;
      padding: 1rem 1.5rem;
    }

    .nav-links a:hover::after {
      display: none;
    }

    .right-section {
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .language-dropdown {
      order: 2;
      width: 100%;
      margin-top: 10px;
      margin-right: 0;
      text-align: right;
    }

    .language-select .selected-lang span:not(.globe-icon) {
      display: none;
    }

    .auth-buttons .sign-in {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .logo-text {
      font-size: 1.25rem;
    }

    .auth-buttons .start-llc {
      padding: 0.5rem;
      font-size: 0.875rem;
    }
    a.btn.btn-primary{
        font-size: 13px;
    }
    a.btn.btn-secondary{
        font-size: 13px;
    }

    .banner-content,
    .whychoosetartoro,
    .pricing,
    .helpful.guides {
        padding: 30px 20px;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .pricing-card {
        padding-bottom: 40px;
    }

    .feature-list {
        margin-bottom: 40px;
    }

    .navbar {
        padding: 15px 5%;
        flex-wrap: wrap;
    }

    .right-section {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }

    .language-dropdown {
        text-align: left;
    }

    .dropdown-content {
        left: 0;
        right: auto;
    }
  }
/* Hero Section */


  .banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #007400 0%, #00c853 100%);
  }

  .banner-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 60px 150px;
  }

  .text-section {
    flex: 1;
    padding-right: 30px;
  }

  .subtitle {
    color: #007400;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
  }

  .subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #007400;
  }

  .main-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #212121;
    font-weight: 800;
  }

  .main-title span {
    color: #007400;
    position: relative;
    display: inline-block;
  }

  .description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 32px;
  }

  .highlight {
    background: rgba(0, 166, 63, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
  }

  .button-group {
    display: flex;
    gap: 16px;
  }

  .btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }

  .btn-primary {
    background: #007400;
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 166, 63, 0.3);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 166, 63, 0.4);
  }

  .btn-secondary {
    background: white;
    color: #007400;
    border: 2px solid #007400;
  }

  .btn-secondary:hover {
    background: rgba(0, 166, 63, 0.05);
    transform: translateY(-2px);
  }

  .btn i {
    margin-right: 8px;
  }

  .image-section {
    flex: 1;
    position: relative;
  }

  .main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .stat-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: white;
    border-radius: 8px;
    padding: 14px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
  }

  .stat-icon {
    background-color: rgba(0, 166, 63, 0.1);
    color: #007400;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
  }

  .stat-text {
    font-size: 0.9rem;
  }

  .stat-text strong {
    display: block;
    color: #212121;
    font-size: 1.1rem;
  }

  .floating-element {
    position: absolute;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testimonial {
    top: 20px;
    right: -30px;
    max-width: 245px;
  }

  .avatar {
    width: 80px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007400;
    font-weight: bold;
    font-size: 1.2rem;
  }

  .quote {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .quote-author {
    font-size: 0.75rem;
    font-weight: 600;
    color: #007400;
    margin-top: 4px;
  }

  @media (max-width: 768px) {
    .banner-content {
      flex-direction: column;
      padding: 40px 30px;
    }

    .text-section {
      padding-right: 0;
      margin-bottom: 30px;
    }

    .main-title {
      font-size: 2.3rem;
    }

    .testimonial {
      display: none;
    }

    .stat-badge {
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      max-width: 300px;
      justify-content: center;
    }
  }
/* How Can Tartoro Help You? css */

.tartorohelp {
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #F3F7FF;
  }

  .heading {
    text-align: center;
    margin-bottom: 40px;
  }

  .heading h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #222;
    position: relative;
  }

  .heading h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #0a8f0a;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }

  .heading p {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height:  1.5;
  }

  .services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }

  .service-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    width: 48%;
    max-width: 540px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0a8f0a, #52c234);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-header {
    margin-bottom: 25px;
    text-align: center;
  }

  .service-header h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
    text-align: left;
}

  .service-features {
    flex-grow: 1;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
  }

  .feature-icon {
    background-color: #e6f7e6;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
    fill: #0a8f0a;
  }

  .feature-content h3 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
  }

  .feature-content p {
    font-size: 14px;
    color: #666;
  }

  .service-cta {
    margin-top: 20px;
    text-align: center;
  }

  .cta-button {
    display: inline-block;
    padding: 16px 30px;
    background: #007400;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(10, 143, 10, 0.2);
    width: 100%;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    background: #005800;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  @media (max-width: 992px) {
    .service-card {
      width: 100%;
    }
  }

/* how it works css */
.how-it-works-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-label {
    color: #007f2b;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.section-title {
    font-size: 28px;
    color: #1a1a4a;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    margin-top: 20px;
}

.center-line {
    position: absolute;
    width: 3px;
    background: #007f2b;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 637px;

}

.timeline-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.row-left {
    width: 45%;
    padding-right: 25px;
    text-align: right;
}

.row-right {
    width: 45%;
    padding-left: 25px;
    text-align: left;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #007f2b;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    z-index: 2;
}

.step-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    min-height: 80px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #e6f4ea;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.row-right .step-card {
    flex-direction: row;
}

.row-left .step-card {
    flex-direction: row-reverse;
}

.row-left .step-icon {
    margin-right: 0;
    margin-left: 15px;
}

.step-icon i {
    font-size: 18px;
    color: #007f2b;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a4a;
    margin-bottom: 5px;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .center-line {
        left: 30px;
    }

    .timeline-row {
        flex-direction: column;
        margin-bottom: 25px;
    }

    .row-left, .row-right {
        width: 100%;
        padding: 0 0 0 50px;
        text-align: left;
    }

    .step-number {
        left: 30px;
    }

    .row-left .step-card {
        flex-direction: row;
    }

    .row-left .step-icon {
        margin-right: 15px;
        margin-left: 0;
    }
}

/* why choose tartoro */

.whychoosetartoro {
    margin: 0 auto;
    padding: 60px 150px;
    background-color: #f3f7ff;
    color: #212529;
}

/* Clean, minimal header */
.header {
    text-align: center;
    margin-bottom: 60px;
}

/* Clean feature grid */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.feature {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    width: calc(33.333% - 16px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 180px;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.green {
    background-color: #e6f7e9;
}

.feature-icon.blue {
    background-color: #e6f3ff;
}

.feature-icon.purple {
    background-color: #f3e6ff;
}

.feature-icon.orange {
    background-color: #fff2e6;
}

.feature-icon.pink {
    background-color: #ffe6f2;
}

.feature-icon i {
    font-size: 20px;
    color: #0366d6;
}

.feature-icon.green i {
    color: #28a745;
}

.feature-icon.blue i {
    color: #0366d6;
}

.feature-icon.purple i {
    color: #6f42c1;
}

.feature-icon.orange i {
    color: #fd7e14;
}

.feature-icon.pink i {
    color: #e83e8c;
}

.feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a4a;
}

.feature p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}
/* Responsive */
@media (max-width: 992px) {
    .feature {
        width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 32px;
    }
    .feature {
        width: 100%;
    }
    .whychoosetartoro {
        padding: 40px 30px;
    }
}


/* pricing plans */
li.feature-item {
    margin-bottom: 11px;
}

.pricing {
    padding: 60px 150px;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-label {
    color: #007400;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    padding: 2rem;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dots-pattern {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#007400 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.2;
    border-radius: 50%;
}

.plan-label {
    color: #007400;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-period {
    color: #666;
    font-size: 1rem;
    display: inline-block;
}

.separator {
    height: 1px;
    background-color: #DCDCDC;
    margin: 1.5rem 0;
}
.feature-title1 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}
.feature-list {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 450px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.feature-icon {
    color: #007400;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-title1 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-description {
    font-size: 0.9rem;
    color: #666;
}

.btn {
    display: block;
    width: 100%;
    padding: 0.9rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007400;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #005800;
}

.btn-outline {
    background-color: white;
    color: #007400;
    border: 1px solid #007400;
}

.btn-outline:hover {
    background-color: #F0FAF0;
}

@media (max-width: 992px) {
    .pricing-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
    }

    .pricing-card {
        width: 100%;
        padding-bottom: 30px;
    }

    .pricing {
        padding: 40px 30px;
    }

    .feature-list {
        margin-bottom: 30px;
    }

    .feature-item:last-child {
        margin-bottom: 20px;
    }
}

/* helpful guides */
.helpful.guides{
    padding: 60px 150px;
    background-color: #F3F7FF;
}
.header {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #34d399, #007400);
    border-radius: 2px;
}

.guides-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #F0FAF0;
    padding: 20px;
    text-align: center;
}

.card-header .icon {
    font-size: 2.5rem;
    color: #007400;
    margin-bottom: 10px;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 18px;
}

.card-body p {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.learn-more {
    display: inline-block;
    background-color: #007400;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
}

.learn-more:hover {
    background-color: #005800;
}

.learn-more .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover .arrow {
    transform: translateX(5px);
}

/* Additional pulse animation for icons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.guide-card:hover .icon {
    animation: pulse 1.5s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .guides-container {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 2rem;
    }

    .helpful.guides {
        padding: 40px 30px;
    }
}

/* footer css*/
footer {
    background-color: #0f1523;
    color: white;
    padding: 60px 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Company Section */
.footer-company {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-company h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-company p {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-company .phone {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.footer-company .phone svg {
    margin-right: 10px;
}

/* Quick Links Section */
.footer-links {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links ul li a:hover {
    opacity: 1;
}

/* Contact Section */
.footer-contact {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
}

/* Social Media Section */
.footer-social {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
}

.footer-social h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.facebook {
    background-color: #F56423;
}

.twitter {
    background-color: #1DA1F2;
}

.youtube {
    background-color: #FF0000;
}

.linkedin {
    background-color: #0077B5;
}

.social-icon a {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Copyright Section */
.footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    opacity: 0.7;
    font-size: 14px;
}

/* Decorative Element */
.footer-decoration {
    position: absolute;
    right: 67px;
    top: 80px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #256B5D, #183E4C);
    opacity: 0.3;
    transform: translate(50%, -50%);
}
