/* === Base Styles === */
/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    background-color: white;*/
    /*overflow-x: hidden; */
/*  }*/
  
/*  body::before {*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: 100dvh;*/
/*  }*/
  
  .content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  
  
  .partner-section h1 {
    text-align: center;
    font-weight: 800;
    font-size: 35px;
    font-family: emoji;
    margin-top: 5px;
    padding-top: 30px;
    animation: bounce 1.5s, colorChange 2s infinite alternate;
  }
  
  @keyframes colorChange {
    50% { color: rgb(161, 54, 54); }
    100% { color: rgb(209, 181, 57); }
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    25%, 75% { transform: translateY(-10px); }
    50% { transform: translateY(0); }
  }
  
  .manager-detail img {
    display: block;
    width: 300px;
    height: 350px;
    border-radius: 20px;
    border: 1px solid #a1a08c;
    transition: transform 0.2s ease;
  }
  
  .manager-details img:hover {
    transform: scale(1.1);
    transition: 0.4s;
  }
  
  .d-section { margin-top: 36px; }
  
  .manager-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
  }
  
  .manager-details h4 {
    font-family: emoji;
    font-size: 1.2rem;
    color: #333;
  }
  
  .management-section {
    text-align: center;
    padding: 5px 20px;
    font-family: emoji;
    box-shadow: 0.3px 1px black;
  }
  
  .management-section h2 {
    font-size: 2.3rem;
    color: rgb(53, 50, 50);
  }
  
  .management-section h3 {
    font-size: 1.4rem;
    color: blue;
  }
  
  .partner-section {
    padding: 2px 0;
    margin-top: 20px;
    box-shadow: 0.3px 1px black;
  }
  
  .partner-section h2 {
    text-align: center;
    font-size: 1.7rem;
    font-family: emoji;
    color: rgb(26, 25, 25);
    margin: 20px 0;
  }
  
  .partner-section-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
    z-index: 1;
    overflow: hidden;
  }
  
  .partner-section-content::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: blur(2px);
    z-index: -1;
  }
  
  .partner-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
  }
  
  .part-cont {
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
    transition: transform 0.3s ease;
  }
  
  .part-cont:hover {
    transform: scale(1.05);
  }
  
  .partner-section-content h3 {
    position: relative;
    padding-left: 25px;
    font-size: 1.3rem;
    font-family: emoji;
    color: #5d5858;
    margin-left: 20px;
  }
  
  .partner-section-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    background-color: rgb(65, 64, 63);
    border-radius: 2px;
  }
  
  .partner-content p {
    margin-left: 20px;
    font-size: 1.1rem;
    color: #333;
    font-family: emoji;
    line-height: 1.5;
  }
  
  .partner-section-content-img {
    max-width: 20px;
    animation: spinY 7s linear infinite;
    transform-style: preserve-3d;
    margin: 10px;
  }
  
  @keyframes spinY {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
  }
  
  @media screen and (min-width: 768px) {
    .partner-section-content {
      flex-direction: row;
      justify-content: space-between;
    }
    .part-cont {
      flex: 1 1 calc(50% - 40px);
    }
  }
  
  @media screen and (min-width: 1024px) {
    .part-cont {
      flex: 1 1 calc(33.33% - 40px);
    }
  }
  
  .rollout-section {
    padding: 2px 0;
    box-shadow: 0.1px 0.2px black;
  }
  
  .rollout-section h1 {
    text-align: center;
    font-weight: 700;
    font-family: emoji;
    color: rgb(53, 50, 50);
    font-size: 35px;
    margin: 20px 0;
  }
  
  .left-section img, .right-section img {
    max-width: 400px;
    height: 400px;
    border-radius: 20px;
  }
  
  .right-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 100px;
    text-align: center;
  }
  
  .rollout-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .right-section-content {
    margin: 50px 130px 0 0;
    text-align: center;
  }
  
  ul {
    line-height: 25px;
    text-align: left;
  }
  
  .marketing-growth-divers {
    padding: 2px 0;
    box-shadow: 0.3px 1px black;
    text-align: center;
  }
  
  .marketing-growth-divers h1 {
    font-family: emoji;
    margin-bottom: 70px;
    font-size: 1.7rem;
    color: #444;
  }
  
  .main-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .div {
    width: 280px;
    border-radius: 10px;
    margin: 10px auto;
  }
  
  .div-image-section {
    text-align: center;
    border: 1px solid #ccc;
    margin: 5px 0;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease-in-out;
  }
  
  .div-image-section h4 {
    font-size: 1.1rem;
    font-family: emoji;
    color: #333;
  }
  
  .div-image-section:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
    cursor: pointer;
  }
  
  .div-content {
    border: 1px solid #ccc;
    height: 300px;
    border-radius: 0 0 10px 10px;
    transition: transform 0.3s ease-in-out;
  }
  
  .div-content:hover {
    transform: scale(1.05);
    cursor: pointer;
  }
  
  .div-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .div-content li {
    text-align: left;
    margin: 10px 0 0 10px;
    font-family: emoji;
    font-size: 1rem;
    line-height: 20px;
  }
  
  .div img {
    width: 150px;
    height: 120px;
  }
  
  @media (max-width: 1024px) {
    .manager-details,
    .partner-section-content,
    .rollout-container,
    .main-div {
      flex-direction: column;
      align-items: center;
    }
    .left-section img,
    .right-section img,
    .partner-section-content-img {
      max-width: 100%;
      height: 400px;
    }
    .right-section-content {
      margin: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .manager-detail img {
      width: 200px;
    }
    .div {
      max-width: 90%;
    }
  }
  
  @media (max-width: 480px) {
    .manager-detail img {
      width: 150px;
    }
    .partner-section h1,
    .rollout-section h1,
    .marketing-growth-divers h1 {
      font-size: 1.3rem;
    }
    .div-content li {
      font-size: 0.9rem;
      margin-left: 5px;
    }
    .div-image-section h4 {
      font-size: 1rem;
    }
    .div img {
      width: 100px;
      height: 80px;
    }
  }
  
  /* Contact Us */
  .contact-us {
    background-color: #000c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:    10px 20px;
    text-align: center;
  }
  
  .content-us{
      margin-bottom:none;
  }
  .contact-container {
    max-width: 800px;
    width: 100%;
  }
  
  .thank-you {
    color: #d4af37;
    font-size: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .contact-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    display: inline-block;
  }
  
  .contact-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: #d4af37;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 20px;
  }
  
  .contact-icon {
    color: #d4af37;
    margin-right: 15px;
    font-size: 1.5rem;
  }
  
  .contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .contact-item a:hover {
    color: #d4af37;
  }
  
  .social-links h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #d4af37;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .social-icon {
    color: #fff;
    font-size: 2.5rem;
    transition: all 0.3s;
  }
  
  .social-icon:hover {
    color: #d4af37;
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    .thank-you {
      font-size: 2.5rem;
    }
    .contact-title {
      font-size: 1.5rem;
    }
    .contact-item {
      font-size: 1rem;
      flex-direction: column;
      text-align: center;
    }
    .contact-icon {
      margin-right: 0;
      margin-bottom: 10px;
    }
    .social-icons {
      gap: 20px;
    }
    .social-icon {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .contact-us {
      padding: 20px 15px;
    }
    .thank-you {
      font-size: 2rem;
    }
    .contact-title {
      font-size: 1.2rem;
    }
    .mainqw{
       margin-top: 109px;
    width: 125%;
    }
  }
    



/* === Large Screens (Desktops) === */
@media (min-width: 1024px) and (max-width: 1439px) {
    .manager-detail img {
      width: 280px;
      height: 330px;
    }
    .management-section h2 {
      font-size: 2.5rem;
    }
  }
  
  /* === Extra Large Screens (Big Desktops / TVs) === */
  @media (min-width: 1440px) {
    .manager-detail img {
      width: 320px;
      height: 370px;
    }
    .management-section h2 {
      font-size: 2.7rem;
    }
  }

  
  @media (min-width: 320px) and (max-width: 479px) {
    .manager-detail img { width: 310px; }
    .div-content li { font-size: 0.9rem; margin-left: 5px; }
    .div-image-section h4 { font-size: 1rem; }
    .div img { width: 100px; height: 80px; }
    .partner-section h1,
    .rollout-section h1,
    .marketing-growth-divers h1 { font-size: 1.3rem; }
    .contact-us { padding: 20px 15px; }
    .thank-you { font-size: 2rem; }
    .contact-title { font-size: 1.2rem; }
  }
 
 section {
    overflow :hidden;
} 
  @media (min-width: 480px) and (max-width: 767px) {
    .manager-detail img { width: 310px; }
    .right-section, .rollout-container, .manager-details {
      flex-direction: column;
      align-items: center;
    }
    .right-section-content {
      margin: 20px 0;
      text-align: center;
    }
    .div { max-width: 90%; }
    .thank-you, .contact-title { font-size: 1.5rem; }
  }
 section {
    overflow :hidden;
} 
  @media (min-width: 768px) and (max-width: 1023px) {
    .manager-detail img { width: 240px; height: 300px; }
  }
 section {
    overflow :hidden;
}
  
  @media (min-width: 1024px) and (max-width: 1439px) {
    .manager-detail img { width: 280px; height: 330px; }
    .management-section h2 { font-size: 2.5rem; }
  }
section {
    overflow :hidden;
}  
  @media (min-width: 1440px) {
    .manager-detail img { width: 320px; height: 370px; }
    .management-section h2 { font-size: 2.7rem; }
  }
  
section {
    overflow :hidden;
}
footer{
    margin-top:1px !important;
}






  