* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
.logo-img {
    top: 15px;
    position: relative;
    padding: 0px 0px;
    margin: 0px 0px;
    height: 200px;
    /* Adjust to fit within the header */
    width: 200px;
    /* Maintains aspect ratio */
  }
  
  
  h1,
  h2,
  h3 {
    margin: 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .nav-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    /* Lower than sidebar */
    height: 60px;
  }
  
  /* Logo Section */
  header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #E67E22;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-top: 20px;
  }
  
  header nav a {
    margin: 0 15px;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-top: 20px;
  }
  
  header nav a:hover {
    color: #E67E22;
  }
  
  header .buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  header .buttons .button-1,
  header .buttons .button-2 {
    width: auto;
  }
  
  header .buttons .btn,
  header .buttons .btn2 {
    color: #E67E22;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #E67E22;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
  }
  
  header .buttons .btn:hover,
  header .buttons .btn2:hover {
    color: white;
  }
  
  header .buttons .btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: #E67E22;
    z-index: -1;
    transition: all 1s;
  }
  
  header .buttons .btn2::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: #E67E22;
    z-index: -1;
    transition: all 1s;
  }
  
  header .buttons .btn:hover::before,
  header .buttons .btn2:hover::before {
    width: 160%;
  }
/* Dropdown Menu Styling */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .sidebar-dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-content {
    display: none;
    /* Hidden by default */
    position: absolute;
    background-color: white;
    min-width: 700px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 100;
    border-radius: 5px;
    padding: 20px 10px;
    flex-direction: row;
    /* Arrange items horizontally */
    gap: 40px 10px;
    left: -100px;
    top: 100%;
  }
  
  /* Individual Column Styling */
  .dropdown-column {
    width: 220px;
  }
  
  .dropdown-column h4 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 16px;
    color: #333;
    border-bottom: 2px solid #ddd;
  }
  
  .dropdown-column a {
    color: black;
    padding: 5px 0;
    display: block;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .dropdown-column a:hover {
    background-color: #f4f4f4;
  }
  
  /* Show dropdown when hovering */
  .dropdown:hover .dropdown-content {
    display: flex;
  }
  .sidebar-dropdown.active .dropdown-content {
    display: block; /* Show dropdown when active */
  }
  .sidebar-dropdown.active .sidebar-nav {
    display: flex; /* Makes the dropdown content visible */
    top: 500px;
  }
  /* Arrow Buttons for Dropdown Links */
  .arrow-btn {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    float: right;
  }
  .sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen */
    width: 100%;
    /* Full width */
    height: 100vh;
    /* Full height */
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    transition: right 0.3s ease;
    z-index: 1001;
    /* Higher than navbar */
    padding: 20px;
    box-sizing: border-box;
    background-color: #E67E22;
    overflow-y: auto;
    /* Add scrollbar when content overflows */
    display: none;
    /* Hide sidebar by default */
  }
  /* Arrow Buttons for Dropdown Links */
  .arrow-btn {
      background: none;
      border: none;
      font-size: 14px;
      cursor: pointer;
      float: right;
  }    
  .container {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Hero Section */
.container .content-image {
    height: 60vh;
    width: 100%;
    position: relative;
    background-color: black;
}

/* Background image container */
.container .background {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: opacity 1s ease;
    overflow: hidden;
}

/* Image styling */
.background-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/* Main heading container */
.slide-in-heading {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    white-space: nowrap;
}

/* Text elements */
.about-text,
.us-text {
    display: inline-block;
    opacity: 0;
    transform: translateX(-30px);
    text-transform: uppercase;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

/* "About" animation */
.about-text {
    color: #ffffff;
    animation: slideIn 0.8s cubic-bezier(0.2, 0.8, 0.4, 1) forwards 0.3s;
}

/* "Us" animation with delay */
.us-text {
    color: #E17319;
    margin-left: 0.5em;
    animation: slideIn 0.8s cubic-bezier(0.2, 0.8, 0.4, 1) forwards 0.7s;
}

/* Content Section */
.container .content-container {
    width: 80%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.container .content-container .content {
    width: 100%;
    margin-top: 30px;
}

.container .content-container .content h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #333;
    margin-bottom: 20px;
}

.container .content-container .content p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    color: #555;
    margin: 20px 0;
}

.container .content-container .content h3.second {
    margin-top: 40px;
}

/* When active, dim the background */
.content-image.active .background {
    opacity: 0.3;
}

/* Slide animation */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Footer Styling */
footer {
    background-color: #2C3E50; /* Dark Navy Blue */
    color: #FFFFFF; /* White */
    padding: 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
  }
  
  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #E67E22; /* Industrial Orange */
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #FFFFFF; /* White */
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    color: #E67E22; /* Industrial Orange */
  }
  
  .shipping-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #FFFFFF; /* White */
  }
  
  .shipping-note strong {
    color: #E67E22; /* Industrial Orange */
  }
  
  .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #FFFFFF; /* White */
  }
  
  .shipping-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #bdc3c7;
  }
  
  .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #bdc3c7;
  }
  .comn-py.stats {
    background-color: #d3d3d3; /* Light gray background */
    padding: 10px 0; /* Reduced padding to minimize height */
    text-align: center;
    height: 140px; /* Auto height to fit the content */
    position: relative;
  
  }
  .comn-py.stats span{
    height: 30px;
    width: 1px;
    background-color: black;
  }
  .comn-py.stats h2 {
    font-size: 1.8rem; /* Smaller font size */
    margin-bottom: 10px; /* Reduced margin */
  }
  
  .stats_container {
    display: flex;
    justify-content: space-around;
    align-items: center; /* Vertically center the stats items */
    flex-wrap: wrap;
  }
  
  .stats_item {
    flex: 1;
    max-width: 260px; /* Smaller width for each stat item */
    margin: 10px;
  }
  
  .stats_item h2 {
    font-size: 2.5rem; /* Smaller font size */
    font-weight: bold;
    color: #2c3e50;
  }
  
  .stats_item p {
    font-size: 1rem; /* Smaller text for the description */
    color: #7f8c8d;
    margin-top: 5px;
  }
  
  .stats_divider {
    content: "";
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    width: 2px;
    background-color: #2c3e50; /* Dark line between stats */
    display: none;
  }
  /* form section CSS*/
  
  
  
  link[rel="icon"] {
      width: 192px;
      height: 192px;
  }
  
  .main-form-container {
      height: 100vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      transition: all ease 1s;
  }
  
  .main-form-container .form-container {
      height: 100vh;
      width: 50%;
      position: absolute;
      top: 0px;
  }
  
  .main-form-container .forms-wrapper form {
      height: 120vh;
  }
  
  .main-form-container .form-container .header-section {
      height: 300px;
      width: 100%;
      position: absolute;
      top: 91px;
      justify-content: center;
      display: flex;
  }
  
  .main-form-container .form-container .header-section .logo {
      width: 100px;
      height: 100px;
      position: absolute;
  }
  
  .main-form-container .form-container .header-section .logo img {
      width: 260px;
      height: 260px;
      position: relative;
      right: 75px;
      top: 20px;
  }
  
  .main-form-container .form-container .header-section .heading {
      position: absolute;
      top: 200px;
      margin-top: 40px;
      display: flex;
  }
  
  .main-form-container .form-container .header-section .heading h1 {
      font-family: roboto;
      font-weight: 400;
      position: relative;
  }
  
  .main-form-container .form-container .header-section .heading h1::after {
      position: absolute;
      height: 10px;
      width: 100%;
      background-color: #d67b2c;
      z-index: 1000;
  }
  
  .main-form-container .form-container .header-section .heading h1 a {
      color: black;
      text-decoration: none;
  }
  
  .main-form-container .form-container .header-section .heading span {
      margin: 10px 30px;
      height: 20px;
      width: 2px;
      background-color: #d67b2c;
  }
  
  .main-form-container .form-container .form {
      height: 950px;
      position: absolute;
      top: 399px;
      display: flex;
      width: 100%;
      justify-content: center;
  }
  
  .main-form-container .form-container .form form {
      width: 98%;
      display: flex;
      flex-direction: column;
      background-color: white;
  }
  
  .main-form-container .form-container .form form .name label {
      font-size: 21px;
      color: gray;
  }
  
  .main-form-container .form-container .form form .name .first-name {
      width: 100%;
      height: 60px;
      border-radius: 10px;
      background-color: rgb(226, 226, 226);
      margin-top: 20px;
      position: relative;
  }
  
  .main-form-container .form-container .form form .name .first-name i {
      font-size: 30px;
      margin: 15px 30px;
      color: #d67b2c;
  }
  
  .main-form-container .form-container .form form .name .first-name input {
      width: 80%;
      background: transparent;
      border: none;
      height: 100%;
      position: absolute;
      top: 0%;
      font-size: 20px;
      outline: none;
  }
  
  .main-form-container .form-container .form form .name .first-name input::placeholder {
      font-size: 20px;
  }
  
  .main-form-container .form-container .form form .name .first-name i.after::after {
      content: "";
      font-size: 10px;
      position: absolute;
      top: 15px;
      left: 55px;
      height: 5px;
      width: 5px;
      border-radius: 50%;
      background-color: #d67b2c;
  }
  
  .main-form-container .form-container .form form .name .first-name:nth-child(2) {
      margin: 20px 0;
  }
  
  .main-form-container .form-container .form form .email label {
      font-size: 21px;
      color: gray;
      position: relative;
      top: 10px;
  }
  
  .main-form-container .form-container .form form .email .email-input {
      width: 100%;
      height: 60px;
      border-radius: 10px;
      background-color: rgb(226, 226, 226);
      margin-top: 20px;
      position: relative;
  }
  
  .main-form-container .form-container .form form .email .email-input i {
      font-size: 30px;
      margin: 15px 30px;
      color: #d67b2c;
  }
  
  .main-form-container .form-container .form form .email .email-input input {
      width: 80%;
      background: transparent;
      border: none;
      height: 100%;
      position: absolute;
      top: 0%;
      font-size: 20px;
      outline: none;
  }
  
  .main-form-container .form-container .form form .phone label {
      font-size: 21px;
      color: gray;
      position: relative;
      top: 10px;
  }
  
  .main-form-container .form-container .form form .phone .phone-input {
      width: 100%;
      height: 60px;
      border-radius: 10px;
      background-color: rgb(226, 226, 226);
      margin-top: 20px;
      position: relative;
  }
  
  .main-form-container .form-container .form form .phone .phone-input i {
      font-size: 30px;
      margin: 15px 30px;
      color: #d67b2c;
  }
  
  .main-form-container .form-container .form form .phone .phone-input input {
      width: 80%;
      background: transparent;
      border: none;
      height: 100%;
      position: absolute;
      top: 0%;
      font-size: 20px;
      outline: none;
  }
  
  .main-form-container .form-container .form button {
      justify-content: center;
      position: relative;
      height: 60px;
      width: 100%;
      border-radius: 10px;
      background-color: #E67E22;
      margin: 20px 0;
      outline: none;
      border: none;
      font-size: 20px;
      font-weight: 400;
      cursor: pointer;
      color: white;
  }
  
  .main-form-container .form-container .form button:hover {
      background-color: #d67b2c;
      transition: all ease-out 0.3s;
  }
  
  /* ---------------- company info starts here ------------------- */
  .main-form-container {
      height: 100vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .main-form-container .form-container {
      height: 1100px;
      width: 50%;
      position: relative;
  }
  
  .main-form-container .form-container .header-section {
      height: 300px;
      width: 100%;
      position: absolute;
      top: 91px;
      justify-content: center;
      display: flex;
  }
  
  .main-form-container .form-container .header-section .logo {
      width: 100px;
      height: 100px;
      position: absolute;
  }
  
  .main-form-container .form-container .header-section .logo img {
      width: 260px;
      height: 260px;
      position: relative;
      right: 75px;
      top: 20px;
  }
  
  .main-form-container .form-container .header-section .heading {
      position: absolute;
      top: 200px;
      margin-top: 40px;
  }
  
  .main-form-container .form-container .header-section .heading h1 {
      color: black;
      font-family: roboto;
      font-weight: 400;
  }
  
  .main-form-container .form-container .form {
      height: 730px;
      position: absolute;
      top: 399px;
      display: flex;
      width: 100%;
      justify-content: center;
  }
  
  .main-form-container .form-container .form form {
      width: 98%;
      display: flex;
      flex-direction: column;
      background-color: white;
  }
  
  .main-form-container .form-container .form form .company-name label {
      font-size: 21px;
      color: gray;
  }
  
  .main-form-container .form-container .form form .company-name .company-name-input {
      width: 100%;
      height: 60px;
      border-radius: 10px;
      background-color: rgb(226, 226, 226);
      margin-top: 20px;
      position: relative;
  }
  
  .main-form-container .form-container .form form .company-name .company-name-input i {
      font-size: 30px;
      margin: 15px 30px;
      color: #d67b2c;
  }
  
  .main-form-container .form-container .form form .company-name .company-name-input input {
      width: 80%;
      background: transparent;
      border: none;
      height: 100%;
      position: absolute;
      top: 0%;
      font-size: 20px;
      outline: none;
  }
  
  .main-form-container .form-container .form form .email label {
      font-size: 21px;
      color: gray;
      position: relative;
      top: 10px;
  }
  
  .main-form-container .form-container .form form .email .email-input {
      width: 100%;
      height: 60px;
      border-radius: 10px;
      background-color: rgb(226, 226, 226);
      margin-top: 20px;
      position: relative;
  }
  
  .main-form-container .form-container .form form .email .email-input i {
      font-size: 30px;
      margin: 15px 30px;
      color: #d67b2c;
  }
  
  .main-form-container .form-container .form form .email .email-input input {
      width: 80%;
      background: transparent;
      border: none;
      height: 100%;
      position: absolute;
      top: 0%;
      font-size: 20px;
      outline: none;
  }
  
  .main-form-container .form-container .form form .phone label {
      font-size: 21px;
      color: gray;
      position: relative;
      top: 10px;
  }
  
  .main-form-container .form-container .form form .phone .phone-input {
      width: 100%;
      height: 60px;
      border-radius: 10px;
      background-color: rgb(226, 226, 226);
      margin-top: 20px;
      position: relative;
  }
  
  .main-form-container .form-container .form form .phone .phone-input i {
      font-size: 30px;
      margin: 15px 30px;
      color: #d67b2c;
  }
  
  .main-form-container .form-container .form form .phone .phone-input input {
      width: 80%;
      background: transparent;
      border: none;
      height: 100%;
      position: absolute;
      top: 0%;
      font-size: 20px;
      outline: none;
  }
  
  .main-form-container .form-container .form form .address label {
      font-size: 21px;
      color: gray;
      position: relative;
      top: 10px;
  }
  
  .main-form-container .form-container .form form .address .address-input {
      width: 100%;
      height: 60px;
      border-radius: 10px;
      background-color: rgb(226, 226, 226);
      margin-top: 20px;
      position: relative;
  }
  
  .main-form-container .form-container .form form .address .address-input i {
      font-size: 30px;
      margin: 15px 30px;
      color: #d67b2c;
  }
  
  .main-form-container .form-container .form form .address .address-input input {
      width: 80%;
      background: transparent;
      border: none;
      height: 100%;
      position: absolute;
      top: 0%;
      font-size: 20px;
      outline: none;
  }
  
  .main-form-container .form-container .form button {
      justify-content: center;
      position: relative;
      height: 60px;
      width: 100%;
      border-radius: 10px;
      background-color: #E67E22;
      margin: 20px 0;
      outline: none;
      border: none;
      font-size: 20px;
      font-weight: 400;
      cursor: pointer;
  }
  
  .main-form-container .form-container .form button:hover {
      background-color: #d67b2c;
      transition: all ease 0.3s;
  }
  
  /* Address Form Dropdown Effect */
  /* Address Inputs Container */
  
  .address-inputs {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out;
  }
  
  /* Address Form Styles */
  .address-info {
      height: 200px;
  }
  
  .address-info label {
      font-size: 21px;
      color: gray;
      position: relative;
      top: 10px;
  }
  
  .address-input,
  .address-2-input {
      width: 96.8%;
      height: 60px;
      border-radius: 10px;
      background-color: rgb(226, 226, 226);
      margin-top: 20px;
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 15px;
  }
  
  .address-input input,
  .address-2-input input {
      width: 100%;
      background: transparent;
      border: none;
      height: 100%;
      font-size: 20px;
      outline: none;
  }
  
  .additional-address {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px 6px;
      margin-top: 20px;
  }
  
  .additional-address .city,
  .additional-address .state,
  .additional-address .postal-code,
  .additional-address .country {
      width: 96.8%;
      height: 60px;
      border-radius: 10px;
      background-color: rgb(226, 226, 226);
      margin-top: 20px;
      position: relative;
      display: flex;
      align-items: center;
      padding: 0px 0px 0px 15px;
  }
  
  .additional-address input {
      width: 100%;
      background: transparent;
      border: none;
      height: 100%;
      font-size: 20px;
      outline: none;
  }
  /* Terms and Conditions Checkbox */
  .terms-and-conditions {
      margin-top: 20px;
      display: flex;
      align-items: center;
  }
  
  .terms-and-conditions input[type="checkbox"] {
      margin-right: 10px;
      width: 20px;
      height: 20px;
      cursor: pointer;
      accent-color: #d67b2c; 
  }
  
  .terms-and-conditions label {
      font-size: 16px;
      color: gray;
  }
  
  .terms-and-conditions a {
      color: #d67b2c;
      text-decoration: none;
  }
  
  .terms-and-conditions a:hover {
      text-decoration: underline;
  }
  
  /* Terms and conditions  */
  
  /* Modal Styles */
  /* Modal Styles */
  .modal {
      display: none; /* Hidden by default */
      position: fixed; /* Stay in place */
      z-index: 1000; /* Sit on top */
      left: 0;
      top: 0;
      width: 100%; /* Full width */
      height: 100%; /* Full height */
      /* overflow: auto; Enable scroll if needed */
      background-color: rgb(0, 0, 0); /* Fallback color */
      background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
      border-radius: 10px;
      padding-top: 60px;
  }
  
  .modal-content {
      background-color: #fefefe;
      margin: 5% auto; /* 5% from the top and centered */
      padding: 30px;
      border: 1px solid #888;
      width: 80%; /* Could be more or less, depending on screen size */
      max-width: 600px;
      border-radius: 10px;
      max-height: 80vh; /* Limit height to 80% of the viewport */
      overflow-y: auto; /* Enable vertical scroll */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      position: relative;
      bottom: 100px;
  }
  
  .close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
      color: black;
      text-decoration: none;
      cursor: pointer;
  }
  
  /* Styling for h2 */
  .modal-content h2 {
      font-size: 24px;
      font-weight: 600;
      color: #333;
      margin-bottom: 20px;
      border-bottom: 2px solid #E67E22;
      padding-bottom: 10px;
  }
  
  /* Styling for h3 */
  .modal-content h3 {
      font-size: 20px;
      font-weight: 500;
      color: #444;
      margin-top: 20px;
      margin-bottom: 10px;
  }
  
  /* Styling for p */
  .modal-content p {
      font-size: 16px;
      line-height: 1.6;
      color: #555;
      margin-bottom: 15px;
  }
  
  /* Styling for unordered lists */
  .modal-content ul {
      margin-left: 20px;
      margin-bottom: 15px;
  }
  
  .modal-content ul li {
      font-size: 16px;
      line-height: 1.6;
      color: #555;
      margin-bottom: 5px;
  }
  
  /* Styling for links */
  .modal-content a {
      color: #E67E22;
      text-decoration: none;
  }
  
  .modal-content a:hover {
      text-decoration: underline;
  }
  
  
  ::-webkit-scrollbar{
      width: 5px;
  }
  ::-webkit-scrollbar-thumb{
      background-color: #d67b2c;
      border-radius: 10px;
  }
  ::-webkit-scrollbar-track{
      background-color: #8b4e18;
      border-radius: 10px;
  
  
  }
  
  .wrapper {
    max-width: 75%;
    margin: auto;
  }
  
  .wrapper > p,
  .wrapper > h1 {
    margin: 1.5rem 0;
    text-align: center;
  }
  
  .wrapper > h1 {
    letter-spacing: 3px;
  }
  
  .accordion {
    background-color: white;
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    font-size: 1.2rem;
    width: 100%;
    padding: 2rem 2.5rem;
    border: none;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
  }
  
  .accordion i {
    font-size: 1.6rem;
    transition: transform 0.4s ease, color 0.2s ease;
  }
  
  .accordion:hover i {
    color: #E67E22;
  }
  
  .accordion.active i {
    transform: rotate(180deg);
    color: #E67E22;
  }
  
  .active,
  .accordion:hover {
    background-color: #f1f7f5;
  }
  
  .pannel {
    padding: 0 2rem;
    background-color: #f1f7f5;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
  }
  
  .pannel p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
    line-height: 1.4;
    padding: 0 0 1.5rem 0;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
  }
  
/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .container .content-image {
        height: 50vh;
    }
    
    .slide-in-heading {
        left: 5%;
    }
    
    .about-text,
    .us-text {
        letter-spacing: 0.5px;
    }
    
    .container .content-container {
        margin: 30px auto;
    }
}

@media screen and (max-width: 480px) {
    .container .content-image {
        height: 40vh;
    }
    
    .slide-in-heading {
        white-space: normal;
        width: 90%;
    }
    
    .about-text,
    .us-text {
        display: block;
        margin-left: 0;
    }
    
    .us-text {
        margin-top: 10px;
    }
    
    .container .content-container .content h3.second {
        margin-top: 30px;
    }
}