   
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    a{
      text-decoration: none;
      color: #231F20;
    }
    body, html {
      font-family: "Arial Black",sans-serif;
      scroll-behavior: smooth;
      overflow-x: hidden;
      background: #fff;
      color: white;
    }

    .title-page {
      position: relative;
      height: 920px;
      overflow: hidden;
      z-index: 0;
    }
    .bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      background: black;
    }
    .title-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }
 
    .doll-video {
      width: 170px;
      
    }

    .nav-links {
  display: flex;
  gap: 2rem;
  margin-top: -20px;
  flex-wrap: wrap;
  position: relative; /* Add this */
}
    .nav-links a {
      color: #EF4123;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: 800;
      padding: 0.6rem 1.4rem;
      transition: all 0.3s ease;
      font-family: "Arial Black",sans-serif;
    }
    .nav-links a:hover {
      color: rgba(239, 65, 35, 0.7);
    }

/* Dropdown Wrapper */
.work-dropdown {
  position: relative;
  width: auto; /* Let it size naturally */
  flex-grow: 1; /* Allow it to fill remaining space if needed */
}

/* Dropdown Button */
.dropdown-btn {
  width: 100%;
  cursor: pointer;
  color: #EF4123;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 0.6rem 1.4rem;
  transition: all 0.3s ease;
  font-family: "Arial Black",sans-serif;  
}

.dropdown-btn:hover {
  color: rgba(239, 65, 35, 0.7)
}

/* Dropdown List */
.dropdown-list {
  display: none;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: max-content; /* Or 100% depending on desired size */
  min-width: 513px; /* Optional: prevent it from being too narrow */
  max-width: 100%;
}

/* Dropdown Links */
.dropdown-list a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  color: #231f20;
  text-decoration: none;
  transition: background 0.2s ease;
  word-wrap: break-word;
}

.dropdown-list a:hover {
  background-color: #f7f7f7;
}

/* Show dropdown when active */
.dropdown-list.show {
  display: block;
}

/* Responsive adjustments */

@media (max-width: 1024px) {
 .dropdown-list {
  min-width: 413px; /* Optional: prevent it from being too narrow */

}
  .dropdown-list a {
    font-size: 0.80rem;
    padding: 10px 8px;
  }
}


@media (max-width: 768px) {
 .dropdown-list {
  min-width: 350px; /* Optional: prevent it from being too narrow */

}

  .dropdown-list a {
    font-size: 0.60rem;
    padding: 5px 4px;
  }
}

@media (max-width: 576px) {
 .dropdown-list {
  min-width: 250px; /* Optional: prevent it from being too narrow */

}

  .dropdown-list a {
    font-size: 0.60rem;
    padding: 5px 4px;
  }
}




@media (max-width: 480px) {
 .dropdown-list {
  min-width: 200px; /* Optional: prevent it from being too narrow */

}
  .dropdown-list a {
    font-size: 0.40rem;
    padding: 4px 3px;
  }

  .work-section h2 {
    font-size: 2rem;
  }

  
}

@media (max-width: 375px) {
 .dropdown-list {
  min-width: 150px; /* Optional: prevent it from being too narrow */

}
  .dropdown-list a {
    font-size: 0.40rem;
    padding: 4px 3px;
  }

  .work-section h2 {
    font-size: 2rem;
  }

  
}




  /* about section */
   .logo-section {
  padding-top:10px;
  background-color:#fff;
  display: flex;
  justify-content: center;
}

.logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 120px;
  max-width: 1440px;
  width: 100%;
  align-items: center;
}

.logo-container img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Grouped last two logos */
.logo-group {
  display: flex;
  gap: 10px;
}

/* === Responsive styles === */
@media (max-width: 1024px) {
  .logo-container {
    gap: 30px;
  }

  .logo-container img,
  .logo-group img {
    max-height: 50px;
  }
}

@media (max-width: 768px) {
  .logo-container {
    gap: 25px;
  }

  .logo-container img,
  .logo-group img {
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  .logo-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
  }

  .logo-container img,
  .logo-group img {
    max-height: 30px;
    width: auto;
    flex-shrink: 1;
  }

  .logo-group {
    display: flex;
    gap: 5px;
  }
}

/* logo */
 .ana-brown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Arial Black",sans-serif;
    margin: 28px 0;
  }

  .ana-brown-name {
    text-align: center;
    color: #ED1C24;
    font-weight: bold;
    line-height: 1.1;
  }

  .ana-brown-name .first {
    font-size: 29.69px;
    margin-bottom: 0px;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .ana-brown-name .underline {
    width: 140px; 
    height: 2px;
    background-color: #ED1C24;
  }

  .ana-brown-name .last {
    font-size: 29.69px;
  }

  .ana-brown-bottom {
    display: flex;
    align-items: center;
    margin-top: 4px;
  }

  .ana-brown-bottom img {
    width: 45px;
    height: auto;
  }


/* START PERSONAL INTRO SECTION */
.full-red-section {
  width: 100%;
  background: #F1F1F2;
}

.about-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 25px 0 0 0;
  font-family: "Arial Black",sans-serif;
  color: #231F20;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  position: relative;
}

.line {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: #231F20;
  left: 0;
}

.top-line {
  top: 61px;
}

.bottom-line {
  bottom: 40px;
}

.about-text {
  flex: 1;
  margin-top: 60px;
}

.bold-text {
  font-weight: 800;
  font-size: 19.33px;
  line-height: 1.3;
}

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

.about-image img {
  width: 100%;
  max-width: 470px;
  display: block;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .about-text {
    margin-top: 20px;
  }

  .about-image img {
    width: 80%;
    max-width: 300px;
  }

  .line.top-line,
  .line.bottom-line {
    width: 100%;
    left: 0;
  }
  .bottom-line{
    display: none;
  }
}

@media (max-width: 480px) {
  .about-text {
    padding: 0 10px;
  }

  .about-image img {
    width: 90%;
    max-width: 220px;
  }

}

@media (max-width: 1440px) {
  .about-section {
    padding: 0 40px;
    gap: 40px;
  }

  .about-text {
    margin-top: 50px;
    padding: 30px;
  }
  .bold-text{
    font-size: 16px;
  }
  .about-image img {
    max-width: 500px;
  }
  .top-line{
    top:30px
  }
  .line {
  position: absolute;
  z-index: 1;
  width: 91%;
  height: 1px;
  background: #231F20;
  left: 70px;
}
}

@media (max-width: 1201px) {
  .about-section {
    padding: 0 40px;
    gap: 0px;
  }

  .about-text {
    margin-top: 50px;
    padding: 0px;
  }
  .bold-text{
    font-size: 16px;
  }
  .about-image img {
    max-width: 900px;
  }

    .line {
    position: absolute;
    z-index: 1;
    width: 95%;
    height: 1px;
    background: #231F20;
    left: 39px;
  }
}




/* Contact TBC */
.contacttbc-section {
  background-color: #F5D3C5; 
  width: 100%;
  padding: 20px 0;
  text-align: center;
  margin-top: 20px;
}

.contacttbc-link {
  color: #231F20;
  text-decoration: none;
  font-size: 16px;
  font-family: "Arial Black",sans-serif;
  margin-left: 700px;
}

 /* Responsive font for small screens */

    @media (max-width: 991px) {
      .contacttbc-link {
        font-size: 1rem;
         margin-left: 0px;
      }
      .contacttbc-section {
         padding: 30px 0px;
      }

      .line.top-line,
  .line.bottom-line {
    display: none;
  }
  .about-image{
    margin-top: 10px;
  }
    }

    /* color-bar */
    .color-bar {
  width: 100%;
  height: 50px; /* Adjust height as needed */
  background: linear-gradient(to bottom, #F15722 50%, #7C1816 50%);
}


/* page-1 */
.research-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  text-align: center;
  font-family: "Arial Black",sans-serif;
   width: 100%;
}

.title {
  font-size: 38.66px;
  color: #ED1C24;
  font-weight: 800;
  font-family: "Arial Black",sans-serif;
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 20px;
  align-items: start; 
  justify-items: center;
  width: 100vw;
  margin-top: 57px;
  box-sizing: border-box;
  padding: 0 20px;
}



/* Images */
.grid-item {
  width: 60px;
  height: auto;
  transition: transform 0.2s ease;
  will-change: transform;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sub-column {
  display: flex;
  gap: 55px;
  padding: 16px;
}

/* Text Column */
.text-column {
  font-size: 20px;
  text-align: left;
  color: #231F20;
  font-weight: 800;
  font-family: "Arial Black",sans-serif;
}

/* PDF Section */


.pdf-link span {
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 32px;
 font-family: "Arial Black",sans-serif;
  font-size: 19px;
  color: #231F20;
  margin: 10px 0;
  font-weight: 900;
}

.pdf-link span:hover {
  color: #ED1C24;
}



/* riddle-link */

.riddle-link {
  font-family: "Arial Black",sans-serif;
  font-size: 16px;
  color: #000;
  margin-top: 40px;
}

.riddle-link a {
  color: #007BFF; /* Bright link blue */
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}

.riddle-link a:hover {
  color: #0056b3; /* Darker on hover */
}



/* Responsive */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .text-column {
    text-align: center;
    padding: 10px;
    margin-top: 60px;
  }

  .image-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .sub-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 10px;
  }

  .grid-item {
    width: 40px;
  }

  .pdf-link {
    margin-top: 40px;
  }
}


/* nuclear-section */
.nuclear-section {
  width: 100%;
  text-align: center;
  min-height: auto;
  margin-top: 100px;
}

/* Header Section */

.atomic-video{
  width: 500px;
  margin-top: 100px;
}

/* Banner */
.banner {
  background: #fffaaf;
  padding: 20px 10px;
  font-weight: 800;
  font-size: 22px;
  max-width: 1200px;
  color: #231F20;
  font-family: "Arial Black",sans-serif;
  text-align: center; 
  margin: 0 auto;
  display: block;
  position: relative; 
  z-index: 9999; 
}
@media (max-width: 1200px) {
  .banner {
    font-size: 22px;
    padding: 18px 10px;
    max-width: 1000px;
  }
  
}

@media (max-width: 992px) {
  .banner {
    max-width: 800px;
    font-size: 16px;
    padding: 16px 8px;
  }
}

@media (max-width: 768px) {
  .banner {
     max-width: 700px;
    font-size: 16px;
    
  }
}

@media (max-width: 480px) {
  .banner {
    max-width: 400px;
    font-size: 16px;
    padding: 12px 6px;
  }
}



/* Content Layout */
.nu-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background: #f1f1f2;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-top: -40px;
}

/* Video fills available space */
.video-wrapper {
  flex: 1 1 100%;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}

.atomic-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Responsive text block */
.text-center {
  flex: 1 1 100%;
  max-width: 100%;
  font-size: 22px;
  padding: 60px 20px;
  text-align: left;
  color: #231f20;
  font-family: "Arial Black",sans-serif;
  font-weight: 800;
  box-sizing: border-box;
}

/* PDF block spacing */
.nu-pdf {
  margin-bottom: 90px;
}

/* Responsive for large screens: video – text – video horizontally */
@media (min-width: 900px) {
  .video-wrapper {
    flex: 1 1 30%;
    max-width: 30%;
  }

  .text-center {
    flex: 1 1 40%;
    max-width: 40%;
    padding: 100px 20px;
  }
}


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

  .nu-content {
    flex-direction: column;
    align-items: center;
  }

  .atomic-video {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .text-center {
    padding-top: 20px;
    max-width: 100%;
    text-align: center;
  }

  .banner {
    font-size: 13px;
    padding: 10px;
  }

  .logoA {
    width: 300px;
    height: auto;
  }

  .doll-video {
    width: 100%;
    max-width: 142px;
    height: auto;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .pdf-link button {
    width: 100%;
    padding: 8px 0;
    font-size: 14px;
  }

  .nu-pdf{
  margin-bottom: 0px;
}
}


/* Defence section */

 .container {
      background-color: #fcd7ca;
      position: relative;
      height: auto; 
      overflow: hidden;
    }

    .line-d {
      height: 2px;
      background-color:#ED1C24;
      width: 95%;
      position: absolute;
      left: 30px;
      z-index: 9;
    }

    .line-d.top {
      top: 30px !important;
    }

    .line-d.bottom {
      bottom: 30px!important;
    }

    .content {
      display: flex;
      height: 100%; 
      position: relative;
      z-index: 3;
    }

    .left {
      flex: 1;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .left h1 {
      color: #ED1C24;
      font-size:44.98px;
      font-weight: 900;
      margin: 0 0 20px 0;
      font-family: "Arial Black",sans-serif;
      margin-top: 20px;
      margin-bottom: 30px;
    }

    .left p {
      font-size: 22px;
      font-weight: 800;
      color: #000;
      line-height: 1.6;
      font-family: "Arial Black",sans-serif;
    }

    .right {
      flex: 1;
      height: 100%;
    }

    .right img {
      width: 100%;
      height: 708px;
      object-fit: cover;
      display: block;
    }

    /* Responsive Fixes */

@media (max-width: 1200px) {
  .right img {
    width: 100%;
    height: 822px;
  }
}


@media (max-width: 991px) {
  .content {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
    padding: 20px;
  }

  .right img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .line-d.top {
    top: 20px;
  }

  .line-d.bottom {
    bottom: 20px;
  }

  .left h1 {
    font-size: 26px;
  }

  .left p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .left h1 {
    font-size: 22px;
  }

  .left p {
    font-size: 16px;
  }

  .line-d {
    width: 90%;
    left: 5%;
  }
}

.soft-banner {
  height: 50px;          
  background-color: #F4F1E4;  
  margin: 0;
  padding: 0;
}

/* iran nuclear section */
.iran-section-full {
  width: 100%;
  font-family: "Arial Black",sans-serif;
  color: #231F20;
}

.iran-flex-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 50px 80px;
  box-sizing: border-box;
  background: #F4F1E4;
}


.iran-text-block {
  flex: 1 1 600px;
  max-width: 700px;
  box-sizing: border-box;
}

.iran-text-block h2 {
  font-family: "Arial Black",sans-serif;
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 20px;
}

.iran-text-block p {
  font-family: "Arial Black",sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 40px;
}

.iran-pdf-link {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
}

.iran-pdf-link a {
  text-decoration: none;
  color: #000;
}

.iran-video-scroll {
  display: flex;
  gap: 10px;
  background: #f5f4e8;
  overflow-x: auto;
  box-sizing: border-box;
}

.iran-video-box {
  position: relative;
  height: 700px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}

.iran-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom widths for each column */
.iran-video-box.wide {
  width: 120px;
}

.iran-video-box.medium {
  width: 90px;
}

.iran-video-box.small {
  width: 60px;
}

.iron-pdf {
  padding-top: 180px;
}

/* Medium screens 1025px to 1366px */
@media (max-width: 1366px) {
  .iran-flex-row {
    padding: 80px 80px;
  }
  .iran-text-block h2 {
    font-size: 28px;
  }
  .iran-text-block p {
    font-size: 18px;
  }
}

/* Tablets: 768px to 1024px */
@media (max-width: 1024px) {
  .iran-video-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .iran-video-box {
    height: 750px;
  }
  .iran-video-box.wide {
    width: 100px;
  }
  .iran-video-box.medium {
    width: 80px;
  }
  .iran-video-box.small {
    width: 60px;
  }
}

/* Phones: 480px to 767px */
@media (max-width: 767px) {
  .iran-flex-row {
    padding: 40px 20px;
  }
  .iran-text-block h2 {
    font-size: 20px;
  }
  .iran-text-block p {
    font-size: 14px;
  }
  .iran-video-box {
    height: 510px;
  }
  .iran-video-box.wide {
    width: 90px;
  }
  .iran-video-box.medium {
    width: 70px;
  }
  .iran-video-box.small {
    width: 50px;
  }
  .iron-pdf {
  padding-top: 100px;
}
}

/* Very small devices below 480px */
@media (max-width: 479px) {
  .iran-flex-row {
    padding: 30px 15px;
  }
  .iran-text-block h2 {
    font-size: 18px;
  }
  .iran-text-block p {
    font-size: 13px;
  }
 
  .iran-video-box.wide {
    width: 80px;
  }
  .iran-video-box.medium {
    width: 60px;
  }
  .iran-video-box.small {
    width: 45px;
  }

    .iron-pdf {
  padding-top: 70px;
}
}


/* Deterrence section */

.det-container {
  background-color: #273821;
  position: relative;
  height: auto; 
  overflow: hidden;
  margin-top: 40px;

}

.det-line {
  height: 3px;
  background-color: #FBB040;
  width: 95%;
  position: absolute;
  left: 30px;
  z-index: 9;
}

.det-line.top {
  top: 30px !important;
}

.det-line.bottom {
  bottom: 30px !important;
}

.det-content {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 3;
}

.det-left {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.det-left h1 {
  color: #ffffff;
  font-size: 43.989px;
  font-weight: 900;
  margin: 0 0 20px 0;
  font-family: "Arial Black",sans-serif;
  margin-top: 20px;
}

.det-left p {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  font-family: "Arial Black",sans-serif;
  margin-top: 60px;
}


.det-pdf-link {
  margin-top: 20px;
  font-weight: 900;
}

.det-pdf-link span {
  display: block;
  font-weight: normal;
  color: #555;
  font-family: "Arial Black",sans-serif;
  letter-spacing: 1px;
}

.det-right {
  flex: 1;
  height: 100%;
}

.det-right img {
  width: 100%;
  height: 708px;
  object-fit: cover;
  display: block;
}

.dett-banner{
  height: 100px;          
  background-color: #F7F7D2;  
  margin: 0;
  padding: 0;
}
.det-pdf .pdf-link span{
  color: #fff;
 
}
.det-pdf .pdf-link{
 margin-top: -46px;
}
/* Responsive styles for Deterrence section */
@media (max-width: 1200px) {
  .det-left p {
  margin-top: 0px;
  font-size: 19px;
}
}
@media (max-width: 1024px) {
  .det-left h1 {
    font-size: 28px;
  }

  .det-left p {
    font-size: 20px;
  }

  .det-right img {
    height: 600px;
  }
}

@media (max-width: 991px) {
   .det-left p {
  margin-top: 0px;
  font-size: 17px;
}
}

@media (max-width: 768px) {
  .det-pdf .pdf-link {
  margin-top: 0px;
}
  .det-left p {
  margin-top: 0px;
  font-size: 16px;
}
  .det-content {
    flex-direction: column;
  }

  .det-left, .det-right {
    padding: 20px;
    width: 100%;
  }

  .det-right img {
    height: auto;
    max-height: 400px;
  }

  .det-line {
    width: 90%;
    left: 5%;
  }
}

@media (max-width: 480px) {
  .det-left h1 {
    font-size: 22px;
    line-height: 1.4;
  }

  .det-left p {
    font-size: 16px;
  }

  .det-pdf-link {
    font-size: 14px;
  }

  .det-right img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
  }

  .det-line {
    width: 90%;
    left: 5%;
  }

  .det-container {
    padding: 10px;
  }
    .det-pdf .pdf-link {
    margin-top: 5px;
  }
}



/* Literature section */

.lit-container {
  background-color: #D25327;
  position: relative;
  height: auto;
  overflow: hidden;
}

.lit-line {
  height: 3px;
  background-color: #fff;
  width: 95%;
  position: absolute;
  left: 30px;
  z-index: 9;
}

.lit-line.top {
  top: 30px !important;
}

.lit-line.bottom {
  bottom: 30px !important;
}

.lit-content {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 3;
  gap: 20px;
  max-height: 900px;
}

.lit-left {
   flex: 0 0 40%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lit-left h1 {
  color: #ffffff;
  font-size: 39.99px;
  font-weight: 900;
  margin: 0 0 20px 0;
  font-family: "Arial Black",sans-serif;
  margin-top: 20px;
}

.lit-left p {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.6;
  font-family: "Arial Black",sans-serif;
  margin-top: 30px;
}

.lit-pdf {
  margin-top: 20px;
  font-weight: 900;
}

.lit-pdf span {
  display: block;
  font-weight: normal;
  color: #555;
 font-family: "Arial Black",sans-serif;
  letter-spacing: 1px;
}

.lit-right {
  height: auto;
  align-items: stretch; /* ensure image can stretch full height */
}

.lit-right img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

.lit-banner {
  height: 30px;
  background-color: #F5D3C5;
  margin: 0;
  padding: 0;
}

.lit-pdf .pdf-link span{
  color: #fff;
}

/* Responsive styles for screens below 1200px */
@media (max-width: 1200px) {
  .lit-left {
    flex: 0 0 40%;
    padding: 30px;
  }

  .lit-left h1 {
    font-size: 28px;
  }

  .lit-left p {
    font-size: 20px;
  }

.lit-right {
  height: auto;
  align-items: stretch; /* ensure image can stretch full height */
}

.lit-right img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}



  .lit-line {
    width: 90%;
    left: 5%;
  }
}

@media (max-width: 1024px) {
  .lit-left {
    flex: 0 0 40%;
    padding: 30px;
  }

  .lit-left h1 {
    font-size: 28px;
  }

  .lit-left p {
    font-size: 20px;
  }

 .lit-right {
  height: auto;
  align-items: stretch; /* ensure image can stretch full height */
}

.lit-right img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}


  .lit-line {
    width: 90%;
    left: 5%;
  }
}



@media (max-width: 768px) {
  .lit-left {
    padding: 20px;
  }

  .lit-left h1 {
    font-size: 22px;
  }

  .lit-left p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .lit-left {
    padding: 15px;
  }

  .lit-left h1 {
    font-size: 15px;
  }

  .lit-left p {
    font-size: 10px;
  }

  .lit-line {
    width: 90%;
    left: 5%;
  }

}



/* MC48-section */
.MC48-section{
  background-color: #F1F2F2;
}
.mc-back{
 margin-top: -28px;
 background: #7C1816;
}
.MC48left-line {
  position: absolute;
  left: calc(10%); /* Responsive instead of fixed 500px */
  width: 1px;
  height: 146px;
  background-color: #231F20;
}

.right-line {
  position: absolute;
  right: 20%; 
  width: 1px;
  height: 60px;
  background-color: #231F20;
}
.right-bottom{
  background: #F1F2F2;
  height: 60px;
}
   
    /* main-section */
      .MC48-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      border: 1px solid #231F20;
      background-color: #F1F2F2;
      max-width: 1800px;
      padding: 40px;
      margin: auto;
      margin: auto;
      gap: 30px; /* ← ADD THIS */
    }

    .left-column {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 0 0 50%; 
      }

    .left-box {
      border: 1px solid #231F20;
       padding-top: 60px;
      padding-right: 30px;
      padding-left: 30px;
      background-color: #F1F2F2;
      min-height: 700px;
    }

    .left-box h2 {
      color: #ED1C24;
      font-size: 31.992px;
      margin-bottom: 70px;
    }

    .left-box p {
      font-size: 22px;
      font-weight: 900;
      line-height: 1.6;
      color: #231F20;
    }

    .pdf-link {
      margin-top: 10px;
      font-size: 16px;
      font-weight: bold;
      text-align: center;
    }

  
    .right-image {
      flex: 0 0 48%; /* Reduce image container width */
      margin-left: 20px; /* Optional: fine-tuned space between image & text box */
      max-width: 100%;
      }

    .right-image img {
      width: 100%;
      height: auto;
      border: 2px solid #ccc;
      display: block;
    }
    
/* Responsive */

@media screen and (max-width: 1200px) {

  .left-box {
    border: 1px solid #231F20;
    padding-top: 0px;
    padding-right: 30px;
    padding-left: 30px;
    background-color: #F1F2F2;
    min-height: 400px;
}

.left-box p {
    font-size: 17px;
    font-weight: 900;
    color: #231F20;
}

.left-box h2 {
  color: #ED1C24;
  font-size: 26.992px;
  margin-bottom: 31px;
}

.right-image img {
  width: 83%;
}



}

@media screen and (max-width: 1024px) {
  .MC48-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .left-column, .right-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .MC48left-line,
  .right-line {
    display: none; /* Hide vertical lines on smaller screens */
  }

  .right-image {
    margin-top: 30px;
    text-align: center;
  }

  .right-image img {
    max-width: 100%;
    height: auto;
  }

}

/* Responsive: Mobile Devices (up to 767px) */
@media screen and (max-width: 767px) {
  .MC48-container {
    padding: 30px 15px;
  }

  .left-box h2 {
    font-size: 24px;
  }

  .left-box p {
    font-size: 15px;
  }

  .pdf-link {
    font-size: 14px;
  }

  .right-image img {
    width: 100%;
    height: auto;
  }

  .ana-brown-section {
    text-align: center;
  }

  .ana-brown-name .first,
  .ana-brown-name .last {
    font-size: 20px;
  }
}


/* Book Review section */

.book-container {
  background-color: #F7F5E4;
  position: relative;
  height: auto;
  overflow: hidden;
}

.book-content {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 3;
  gap: 20px;
  max-height: 960px;
}

.book-left {
  flex: 0 0 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.book-left h1 {
  color: #231F20;
  font-size: 39.99px;
  font-weight: 900;
  margin: 0 0 20px 0;
  font-family: "Arial Black", sans-serif;
  margin-top: 20px;
}

.book-left p {
  font-size: 22px;
  font-weight: 800;
  color: #231F20;
  line-height: 1.6;
  font-family: "Arial Black", sans-serif;
  margin-top: 30px;
}

.book-pdf {
  margin-top: 20px;
  font-weight: 900;
}

.book-pdf span {
  display: block;
  font-weight: normal;
  color: #231F20;
  font-family: "Arial Black", sans-serif;
  letter-spacing: 1px;
}

.book-right {
  display: flex;
  height: auto;
  align-items: stretch;
}

.book-right img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

.book-banner {
  height: 30px;
  background-color: #F5D3C5;
  margin: 0;
  padding: 0;
}

/* Responsive */
@media (max-width: 1200px) {

.book-content {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 3;
  gap: 20px;
  max-height: 804px;
}


  .book-left {
    flex: 0 0 50%;
  }

  .book-left h1 {
    font-size: 26px;
  }

  .book-left p {
    font-size: 16px;
  }

  .book-line {
    width: 90%;
    left: 5%;
  }
}

@media (max-width: 1024px) {
  .book-content {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 3;
  gap: 20px;
  max-height: 1050px;
}
  .book-left {
    flex: 0 0 50%;
    padding: 30px;
  }

  .book-left h1 {
    font-size: 28px;
  }

  .book-left p {
    font-size: 20px;
  }

  .book-line {
    width: 90%;
    left: 5%;
  }
}

@media (max-width: 768px) {
  .book-left {
    padding: 20px;
  }

  .book-left h1 {
    font-size: 22px;
  }

  .book-left p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .book-left {
    padding: 15px;
  }

  .book-left h1 {
    font-size: 15px;
  }

  .book-left p {
    font-size: 10px;
  }

  .book-line {
    width: 90%;
    left: 5%;
  }
}



/* retaliation-section */

.responsive-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  max-width: 1800px;
  margin: 0 auto 0px auto;
  width: 100%;
  box-sizing: border-box;
  background-color: white; /* so black lines are visible */
  z-index: 1;
}

/* TOP & BOTTOM BLACK HORIZONTAL LINES */
.responsive-container::before,
.responsive-container::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  height: 4px;
  background-color: #231F20;
  z-index: 10; /* Bring lines in front */
}

.responsive-container::before {
  top: 0;
}

.responsive-container::after {
  bottom: 0;
}

/* Text column */
.left-content {
  flex: 1;
  padding: 60px 40px;
  background: white;
  z-index: 2;
}

.left-content h2 {
  color: #EF4123;
  font-size: 31px;
  font-weight: 800;
  margin-bottom: 50px;
}

.left-content p {
  font-weight: 900;
  font-size: 22px;
  color: #231F20;
  line-height: 1.2;
  text-align: justify;
}

.pdf-link {
  margin-top: 40px;
  font-weight: bold;
  font-size: 14px;
}

.relations-pdf {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
 padding-top: 150px;
}

/* Video column - stretches full height */
.right-box {
  flex: 1.2;
  min-width: 300px;
  height: auto;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  z-index: 2;
  padding-right: 60px;
}

.right-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive stacking on small screens */
@media (max-width: 1200px) {
.responsive-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  max-width: 1800px;
  margin: 0 auto 0px auto;
  width: 100%;
  box-sizing: border-box;
  background-color: white; /* so black lines are visible */
  z-index: 1;
}

}
.left-content {
  padding: 34px 40px;
}


@media (max-width: 768px) {
  .responsive-container {
    flex-direction: column;
    min-height: auto;
  }

  .right-box {
    height: auto;
    min-height: 300px;
    padding-right: 0px;
  }
}
