/* ip-directory-section starts */
.ip-directory-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdfbf7 0%, #f4f0ff 100%); /* Softer, premium light gradient */
  border-top: 1px solid #EFBF04 !important;
  border-bottom: 1px solid #EFBF04 !important;
}

.ip-directory-header h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #131313;
  line-height: 1.1;
  margin-top: 5px;
}

.ip-directory-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .ip-directory-section {
    padding: 60px 20px;
  }
  .ip-directory-header h1 {
    font-size: 2.8rem;
  }
  .ip-directory-description {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .ip-directory-section {
    padding: 50px 15px;
  }
  .ip-directory-header h1 {
    font-size: 2.4rem;
  }
  .ip-directory-header {
    text-align: center;
  }
  .ip-directory-description {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .ip-directory-header h1 {
    font-size: 2rem;
  }
}
/* ip-directory-section ends */

/* directory-search-section starts */
.ds-filter-bar {
  background-color: var(--primary-color);
  padding: 40px 0;
  color: #ffffff;
}

.ds-label {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
  color: #ffffff;
}

/* Inputs & Selects */
.ds-input,
.ds-select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2); 
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  padding: 12px 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  border-radius: 2px;
  outline: none;
  height: 48px; /* Fixed height for alignment */
  transition: all 0.3s ease;
}

/* Customizing Select Arrow */
.ds-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 10px auto;
}

.ds-select option {
  color: #333; /* Dark text for dropdown options */
}

/* Input Group for Search Icon */
.ds-input-group {
  position: relative;
}

.ds-search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 1rem;
}

.ds-input-group .ds-input {
  padding-left: 40px; /* Space for icon */
}

.ds-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.ds-input:focus,
.ds-select:focus {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
}

/* Search Button */
.ds-search-btn {
  width: 100%;
  height: 48px;
  background-color: #fff;
  border: 1px solid #ffffff;
  color: var(--primary-color);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ds-search-btn:hover {
  background-color: #000;
  color: #fff;
}

/* --- Results Grid (Bottom) --- */
.ds-results-area {
  padding: 80px 0;
  background-color: #fffbf5; /* Very subtle off-white texture background */
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40c5.523 0 10-4.477 10-10V0h20v30c0 5.523 4.477 10 10 10H0z' fill='%23f7f2eb' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.ds-card {
  background-color: #ffffff;
  border: 1px solid #333333;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.ds-card:hover {
  transform: translateY(-5px);
}

/* Card Body */
.ds-card-body {
  padding: 25px;
  border-bottom: 1px solid #dcd0ff; /* Light purple separator line */
  flex-grow: 1;
}

.ds-firm-name {
  font-family: "DM Sans", sans-serif; /* Bold Sans-serif for names */
  font-size: 1.1rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 10px;
  min-height: 3em; /* Ensure alignment for long names */
}

.ds-location {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
}

.ds-location i {
  margin-right: 5px;
  color: #333;
}

/* Tags */
.ds-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ds-tag {
  background-color: #f5f5f5;
  color: #333333;
  border: 1px solid #e0e0e0;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-family: "DM Sans", sans-serif;
  border-radius: 2px;
}

.ds-tag-more {
  background-color: #f5f5f5;
  color: #333333;
  border: 1px solid #e0e0e0;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-family: "DM Sans", sans-serif;
  border-radius: 2px;
}

/* Card Footer */
.ds-card-footer {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ds-stats {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
}

.ds-stats strong {
  color: #131313;
  font-weight: 700;
}

.ds-view-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ds-view-btn:hover {
  background-color: #a0845cde;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .ds-firm-name {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .ds-filter-bar {
    padding: 30px 0;
  }

  .ds-results-area {
    padding: 50px 0;
  }

  .ds-search-btn {
    margin-top: 10px;
  }
}

.directory-item[style*="display: none"] {
  display: none !important;
}
/* directory-search-section ends */

/* =========================================
   Featured Tickets Section Starts
========================================= */
.tickets-section {
  background-color: #fff; 
  padding: 180px 0;
  font-family: var(--font-body);
}

/* Header Area */
.tickets-header-row {
  margin-bottom: 60px;
}

.tickets-main-title {
  font-family: var(--font-body); /* Using sans-serif as per the screenshot */
  color: var(--dark-color);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -1px;
}

.tickets-header-desc {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 450px;
  margin-left: auto; /* Pushes to the right on desktop */
}

/* Ticket Cards */
.ticket-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08); /* Crisp, thin border */
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Card Header (Eyebrow & Price) */
.ticket-header {
  text-align: center;
}

.ticket-eyebrow {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  display: block;
}

.ticket-price {
  color: var(--dark-color);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0;
  line-height: 1;
}

.ticket-price-text {
  font-size: 1.8rem; /* For the "Enter Amount" text */
}

/* Divider */
.ticket-divider {
  border: 0;
  border-top: 1px solid #EAEAEA;
  margin: 30px 0;
  opacity: 1;
}

/* Features List */
.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1; /* This pushes the BUY button to the bottom! */
}

.ticket-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #4A5665;
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 500;
}

.ticket-features svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 4px; /* Perfectly aligns checkmark with the first line of text */
  stroke: #000;
  stroke-width: 2.5;
}

/* Buy Button */
.btn-ticket-buy {
  background-color: #a0845c; 
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px;
  width: 100%;
  border: none;
  border-radius: 0; /* Sharp corners matching design */
  transition: background-color 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: block;
}

.btn-ticket-buy:hover {
  background-color: #897456bd;
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .tickets-section {
    padding: 80px 0;
  }
  .tickets-header-desc {
    margin-left: 0;
    margin-top: 20px;
    text-align: left;
    max-width: 100%;
  }
  .tickets-main-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 575.98px) {
  .tickets-section {
    padding: 60px 0;
  }
  .tickets-main-title {
    font-size: 2.2rem;
  }
  .ticket-card {
    padding: 30px 20px;
  }
}
/* Featured Tickets Section Ends */

/* --- Stage Speakers Section css starts --- */

.stage-speakers-section {
  background-color: #ffffff; /* Clean white background */
  padding: 100px 0;
  overflow: hidden;
}

/* Header Typography */
.stage-subtitle {
  color: var(--primary-color);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.stage-title {
  color: var(--text-black);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

/* Primary Button */
.btn-stage-purple {
  background-color: #a0845c;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 0; /* Sharp, modern corners exactly as seen in design */
  border: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-stage-purple:hover {
  background-color: #a0845cc9; 
  color: #ffffff;
}

/* Speaker Cards */
.stage-card {
  display: flex;
  flex-direction: column;
}

.stage-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* Perfectly square ratio */
  overflow: hidden;
  border-radius: 0; /* No rounded corners */
}

.stage-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.stage-card:hover .stage-img-wrap img {
  transform: scale(1.05); /* Slight zoom on hover */
}

/* LinkedIn Floating Icon */
.stage-linkedin {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.stage-linkedin svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
  /* LinkedIn logo specific padding to look perfect in the circle */
  transform: translateY(-1px); 
}

.stage-linkedin:hover {
  background-color: #000;
  transform: scale(1.1);
  opacity: 1;
}

/* Content Area */
.stage-content {
  padding-top: 18px;
}

.stage-name {
  display: flex;
  align-items: flex-start;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-black);
  margin-bottom: 6px;
  line-height: 1.3;
}

/* The purple dot preceding the name */
.stage-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 6px; /* Pushes the dot slightly down to align visually with the center of the first line of text */
  flex-shrink: 0;
}

.stage-role {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: #777777; /* Soft grey matching the screenshot */
  margin: 0;
  margin-left: 18px; 
  line-height: 1.5;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .stage-speakers-section {
    padding: 80px 0;
  }
  .stage-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .stage-speakers-section {
    padding: 60px 0;
  }
  .stage-title {
    font-size: 1.8rem;
  }
  .btn-stage-purple {
    width: 100%;
    text-align: center;
  }
}
/* --- Stage Speakers Section css ends --- */

/* --- Upcoming Conferences Section css starts --- */
.upcoming-conferences-section {
  background-color: var(--bg-light); /* Blends perfectly with your existing off-white sections */
  padding: 100px 0;
  overflow: hidden;
}

/* Header Typography */
.uc-sub-title {
  color: var(--primary-color);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.uc-title {
  color: var(--text-black);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

.uc-desc {
  color: var(--text-black);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 450px;
}

/* The Exact Grid implementation */
.uc-grid {
  display: grid;
  /* First column takes 1.6 fractions of space, others take 1 fraction */
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 20px;
}

/* Base Card Styling */
.uc-card {
  position: relative;
  border-radius: 0; /* Sharp edges matched to screenshot */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  border-bottom: 4px solid var(--primary-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.uc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.uc-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.uc-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.uc-card:hover .uc-card-bg img {
  transform: scale(1.05);
}

/* Dark Gradient Overlay for perfect text contrast */
.uc-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Content Container */
.uc-card-content {
  position: relative;
  z-index: 3;
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
}

/* Card Typography */
.uc-card-title {
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 15px;
}

/* Increase font size specifically for the larger card */
.uc-card-large .uc-card-title {
  font-size: 1.45rem;
}

.uc-card-location {
  color: #e0e0e0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.uc-card-date {
  color: #e0e0e0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  margin-bottom: 25px;
}

.uc-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #6a0dad; /* Purple dot matching screenshot */
  border-radius: 50%;
  margin: 0 6px;
  vertical-align: middle;
}

/* Buttons */
.uc-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-uc-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-align: center;
  padding: 12px 5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn-uc-primary:hover {
  background-color: #a0845ceb;
  color: #ffffff;
}

/* --- Responsive Adjustments --- */

/* Laptops & smaller desktops */
@media (max-width: 1199px) {
  .uc-title {
    font-size: 2.2rem;
  }
  .uc-card-title {
    font-size: 1.05rem;
  }
  .uc-card-large .uc-card-title {
    font-size: 1.25rem;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .upcoming-conferences-section {
    padding: 80px 0;
  }
  
  .uc-desc {
    margin-left: 0;
    margin-top: 15px;
  }

  /* Switch to a 2x2 grid */
  .uc-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Make the large card span full width across the top */
  .uc-card-large {
    grid-column: span 2;
  }

  .uc-card {
    min-height: 400px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .uc-title {
    font-size: 1.8rem;
  }

  /* Stack everything in 1 column */
  .uc-grid {
    grid-template-columns: 1fr;
  }
  
  .uc-card-large {
    grid-column: span 1;
  }
  
  .uc-card-actions {
    gap: 8px;
  }
}
/* --- Upcoming Conferences Section css ends --- */

/* =========================================
   Image Gallery Section Starts
========================================= */
.image-gallery-section {
  width: 100%;
  overflow-x: auto;
  padding: 0;
  background-color: #1E2A38; /* Changed to dark navy to blend beautifully into the footer below it */
  cursor: grab;
  user-select: none; 
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Active state for when the user is dragging */
.image-gallery-section.active {
  cursor: grabbing;
}

/* Hide scrollbar in Webkit browsers */
.image-gallery-section::-webkit-scrollbar {
  display: none;
}

.gallery-container {
  display: flex;
  width: max-content; /* Ensures container stretches to fit all cloned items */
}

.gallery-item {
  position: relative;
  flex-shrink: 0; 
  width: 350px; /* Slightly refined desktop width for better proportionality */
  height: 350px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease-in-out;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  background-color: rgba(30, 42, 56, 0.6); /* Estate Gorilla Dark Navy Tint */
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.instagram-icon {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(20px);
  transition: transform 0.4s ease-out;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.gallery-item:hover .instagram-icon {
  transform: translateY(0); /* Icon floats up slightly on hover */
}

.instagram-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-color, #A0845C); /* Uses your brand gold */
  stroke-width: 2;
  fill: none;
}

/* Responsive Design */
@media (max-width: 991px) {
  .gallery-item {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 575px) {
  .gallery-item {
    width: 260px;
    height: 260px;
  }
  .instagram-icon {
    width: 50px;
    height: 50px;
  }
  .instagram-icon svg {
    width: 24px;
    height: 24px;
  }
}
/* Image Gallery Section Ends */

/* --- About Section css starts --- */
.about-section {
  padding: 100px 0;
  overflow: hidden;
}

/* Left Column Typography */
.about-subtitle {
  color: var(--primary-color);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-title {
  color: var(--text-black);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.about-sub-heading {
  color: #1a1a1a;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
}

.about-desc {
  color: #555555;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

/* 2x2 Pointers Grid */
.about-feature {
  display: flex;
  align-items: center;
}

.about-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-color);
  border-radius: 6px; /* Softly rounded corners matching screenshot */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
}

.about-icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.about-feature-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-black);
  line-height: 1.3;
}

/* Right Column Elements */
.about-image-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  /* Sharp corners exactly like the screenshot */
  border-radius: 0; 
}

.btn-about-read {
  background-color: var(--primary-color);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  border-radius: 2px;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-about-read:hover {
  background-color: #a3875fd9;
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 1199px) {
  .about-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
    /* On tablets and below, columns stack, so a vertical split looks bad. 
       We change it to a solid warm off-white background */
    background: #fffdfa; 
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  /* Add separation border to divide top and bottom on mobile */
  .about-image-wrap {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-sub-heading {
    font-size: 1.05rem;
  }
  
  .about-feature-text {
    font-size: 0.9rem;
  }
}
/* --- About Section css ends --- */

/* --- Contact Section css starts --- */

.contact-section {
  background-color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

/* Left Column Typography */
.cc-title {
  color: #050a1f;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.cc-desc {
  color: #555555;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Labels and Info */
.cc-label {
  color: var(--primary-color);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.cc-value {
  color: #111111;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}

.cc-value strong {
  font-weight: 600;
}

.cc-value a {
  color: #111111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cc-value a:hover {
  color: var(--primary-color);
}

.cc-value-list .cc-value {
  margin-bottom: 14px; /* Matches the spacing between phone numbers/emails in the screenshot */
}

/* --- Right Column Form Box --- */
.cc-form-wrapper {
  background-color: transparent;
  border: 1px solid #111111; /* The sharp, wireframe outer border */
  padding: 50px 45px;
  border-radius: 0; /* Strict square corners */
}

.cc-form {
  display: flex;
  flex-direction: column;
}

.cc-form-group {
  margin-bottom: 45px; /* Creates the wide vertical spacing seen in the design */
}

/* Minimalist Input Fields */
.cc-input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #111111; /* Only bottom border visible */
  padding: 10px 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #111111;
  transition: border-color 0.3s ease;
}

.cc-input:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}

.cc-input::placeholder {
  color: #7a7a7a;
  font-weight: 400;
}

.cc-textarea {
  resize: vertical;
  min-height: 45px;
}

/* Form Submit Button */
.btn-cc-submit {
  background-color: var(--primary-color); 
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  border-radius: 2px;
  align-self: flex-start; /* Keeps the button from stretching to full width */
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-cc-submit:hover {
  background-color: #e56200;
  color: #ffffff;
}

.cc-btn-icon {
  width: 16px;
  height: 16px;
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 1199px) {
  .cc-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }
  
  .cc-form-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .cc-title {
    font-size: 2.4rem;
  }
  
  .cc-form-wrapper {
    padding: 35px 20px;
  }
  
  .cc-form-group {
    margin-bottom: 35px;
  }
  
  .cc-value-list .cc-value {
    word-break: break-all; /* Ensures long emails don't break layout on tiny phones */
  }
}
/* --- Contact Section css ends --- */

/* --- Awards Section css starts --- */

.awards-section {
  background-color: #f4f5f7; /* Soft grey background matching screenshot */
  padding: 100px 0;
  overflow: hidden;
}

/* Header Left Typography */
.aw-title {
  color: var(--text-black);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.aw-subtitle {
  color: #6d6d6d;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0;
}

/* Primary Nominaton Button */
.btn-aw-nominate {
  background-color: var(--primary-color);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px; /* Slight rounding to match screenshot */
  border: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(255, 109, 1, 0.25);
  transition: all 0.3s ease;
}

.btn-aw-nominate:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 109, 1, 0.3);
}

/* Header Right - Contributions List */
.aw-contributions-title {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444444;
}

.aw-contrib-item {
  display: flex;
  align-items: center;
}

.aw-contrib-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 12px;
}

.aw-contrib-icon svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.aw-contrib-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #222222;
}

/* --- Card Architecture --- */
.aw-card {
  background-color: #ffffff;
  border-radius: 10px; /* Matching the soft corners of the screenshot */
  padding: 40px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}

.aw-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Icon Wrapper inside Card */
.aw-card-icon-wrap {
  width: 65px;
  height: 65px;
  /* Very faint orange background with a subtle border to create the badge effect */
  background-color: rgba(255, 109, 1, 0.06);
  border: 1px solid rgba(255, 109, 1, 0.15); 
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.aw-card:hover .aw-card-icon-wrap {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.aw-card-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.aw-card:hover .aw-card-icon-wrap svg {
  color: #ffffff; /* Icon turns white when hovered for contrast */
}

/* Card Title */
.aw-card-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 991px) {
  .awards-section {
    padding: 80px 0;
  }
  .aw-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 576px) {
  .awards-section {
    padding: 60px 0;
  }
  .aw-title {
    font-size: 2.2rem;
  }
  .aw-card {
    padding: 30px 15px;
  }
  .btn-aw-nominate {
    width: 100%;
    text-align: center;
  }
}
/* --- Awards Section css ends --- */

/* --- Sponsors Section css starts --- */

.startup-sponsors-section {
  background-color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

/* Header Typography */
.sc-title {
  color: #111111;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem; /* Huge, commanding title */
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
}

/* Header Right - List Styling */
.sc-supported-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #444444;
}

.sc-list-item {
  display: flex;
  align-items: flex-start; /* Aligns text perfectly with top of icon if it spans two lines */
}

.sc-list-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  border-radius: 6px; /* Softly rounded corners */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 14px;
}

.sc-list-icon svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.sc-list-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222222;
  line-height: 1.4;
  margin-top: 4px; /* Optically centers the first line of text with the icon */
}

/* Primary Button (Orange) */
.btn-sc-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 109, 1, 0.3); /* Subtle orange glow */
}

.btn-sc-primary:hover {
  background-color: #000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 109, 1, 0.4);
}

/* --- The 4 Cards --- */
.sc-card {
  position: relative;
  background-color: #f9f9f9;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  height: 320px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* The Magic Diagonal Background Layer */
.sc-card-slant {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  /* The Exact Polygon: Starts at 48% down on the left, goes to 16% down on the right */
  clip-path: polygon(0 48%, 100% 16%, 100% 100%, 0 100%);
  z-index: 1;
  border: 1px solid #ff6d01;
}

/* Content Container above the slant */
.sc-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Top Text Area */
.sc-card-title {
  padding: 22px 24px 0 24px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111111;
  line-height: 1.4;
  margin: 0;
}

/* Bottom Action Area 
   Takes up exactly the bottom 60% of the card, effectively 
   centering its contents perfectly inside the orange slant visually. */
.sc-action-area {
  margin-top: auto;
  height: 60%; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

/* Ghost Button Styling */
.btn-sc-ghost {
  background-color: transparent;
  color: #000000;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1.5px solid #111111; /* Sharp black border */
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-sc-ghost:hover {
  background-color: #111111;
  color: #ffffff;
}

/* Logos Wrapper inside Cards */
.sc-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sc-logo-img {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc-logo-img svg {
  width: 100%;
  height: 100%;
  color: #ffffff;
}

.sc-logo-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1199px) {
  .sc-title {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .startup-sponsors-section {
    padding: 80px 0;
  }
  
  /* Reset Card Heights on tablet to accommodate aspect ratio change */
  .sc-card {
    height: 280px; 
  }
}

@media (max-width: 576px) {
  .startup-sponsors-section {
    padding: 60px 0;
  }
  .sc-title {
    font-size: 2.5rem;
  }
  .btn-sc-primary {
    width: 100%;
    text-align: center;
  }
}
/* --- Sponsors Section css ends --- */
/* --- Magazine Section css starts --- */

.magazine-section {
  background-color: var(--bg-light); /* Very faint purple-white tint from screenshot */
  padding: 100px 0;
  overflow: hidden;
}

/* Typography Overrides */
.mag-subtitle {
  color: #a0845c;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mag-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.btn-mag-view {
  background-color: #a0845c;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 2px; /* Sharp corners like screenshot */
  border: none;
  transition: all 0.3s ease;
}

.btn-mag-view:hover {
  background-color: #e55f00;
  color: #ffffff;
}

/* Right Header Features */
.mag-features-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-black);
  margin-bottom: 20px;
}

.mag-feature-item {
  display: flex;
  align-items: center;
}

.mag-feature-icon {
  width: 32px;
  height: 32px;
  background-color: #a0845c;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
}

.mag-feature-icon svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.mag-feature-text {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--text-grey);
  line-height: 1.5;
}

/* --- Interactive Tabs System --- */
.mag-tabs-wrapper {
  border-top: 1px dotted rgba(0, 2, 64, 0.2);
  border-bottom: 1px dotted rgba(0, 2, 64, 0.2);
  padding: 20px 0;
  margin-bottom: 30px;
}

.mag-tabs-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Prevents overflow on mobile */
  margin: 0;
  padding: 0;
}

.mag-tab-btn {
  background-color: #ffffff;
  color: var(--text-black);
  border: 1px solid #e0e0e0;
  padding: 8px 30px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Specific styling for inactive tabs to match screenshot's underline */
.mag-tab-btn:not(.active) {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mag-tab-btn:hover:not(.active) {
  background-color: #f0f0f0;
}

.mag-tab-btn.active {
  background-color: #a0845c !important;
  color: #ffffff !important;
  border-color: #a0845c !important;
  text-decoration: none;
}

/* --- Card Architecture --- */
.mag-card {
  background-color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0; /* Perfectly sharp rectangular cards */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mag-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.mag-card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.mag-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mag-card:hover .mag-card-img-wrap img {
  transform: scale(1.05);
}

.mag-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Pushes the button perfectly to the bottom */
}

.mag-card-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-black);
  margin-bottom: 12px;
  line-height: 1.4;
}

.mag-card-meta {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 25px;
}

.btn-mag-download {
  background-color: #a0845c;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  border: none;
  padding: 12px;
  border-radius: 0; /* Sharp corners */
  transition: background-color 0.3s ease;
}

.btn-mag-download:hover {
  background-color: #a0845c;
  color: #ffffff;
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 991px) {
  .magazine-section {
    padding: 80px 0;
  }
  .mag-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .mag-title {
    font-size: 1.8rem;
  }
  .mag-tab-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    width: 100%; /* Stacks beautifully on small screens */
  }
  .mag-card-content {
    padding: 20px 15px;
  }
}
/* --- Magazine Section css ends --- */
/* edition-section starts */
.edition-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fffbfb 0%, #f9f7ff 100%);
}

.ed-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 10px;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
      text-align: center;
}

.ed-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  line-height: 1.5;
      text-align: center; 
}

.ed-btn {
  background-color: #a0845c !important;
  color: #ffffff;
  border: none;
  padding: 10px 30px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 2px;
  margin-top: 5px;
}

.ed-btn:hover {
  background-color: #75159b;
}

.ed-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 8px;
}

.ed-meta p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: #333;
  line-height: 1.4;
}

.ed-meta .role {
  color: #666;
  margin-bottom: 15px;
}

.ed-excerpt-box {
  border-left: 2px dotted #a0845c !important;
  padding-left: 15px;
  margin-bottom: 15px;
}

.ed-excerpt-box p {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.ed-card-horizontal {
  background-color: #ffffff;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.ed-img-wrapper-h {
  width: 100%;
  height: 250px; /* fixed height */
  overflow: hidden;
}

.ed-img-wrapper-h img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ed-content-h {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.ed-card-vertical {
  background-color: transparent;
  margin-bottom: 50px;
}

.ed-img-wrapper-v {
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  overflow: hidden;
}

.ed-img-wrapper-v img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ed-card-vertical:hover .ed-img-wrapper-v img {
  transform: scale(1.03);
}

.ed-content-v {
  padding: 0;
}

@media (max-width: 991px) {
  .ed-card-horizontal {
    height: auto;
  }

  .ed-img-wrapper-h {
    height: 250px;
  }

  .ed-list-sidebar {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .ed-card-vertical {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .edition-section {
    padding: 60px 0;
  }

  .ed-heading {
    font-size: 2rem;
  }

  .ed-card-horizontal .row {
    flex-direction: column;
  }

  .ed-img-wrapper-h {
    height: 220px;
  }

  .ed-content-h {
    padding: 20px;
  }

  .ed-list-sidebar {
    grid-template-columns: 1fr;
  }
}
/* --- Magazine Section css starts --- */

.magazine-section {
  background-color: #ffffff; /* Very faint purple-white tint from screenshot */
  padding: 100px 0;
  overflow: hidden;
}

/* Typography Overrides */
.mag-subtitle {
  color: var(--primary-color);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mag-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.btn-mag-view {
  background-color: var(--primary-color);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 2px; /* Sharp corners like screenshot */
  border: none;
  transition: all 0.3s ease;
}

.btn-mag-view:hover {
  background-color: #e55f00;
  color: #ffffff;
}

/* Right Header Features */
.mag-features-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-black);
  margin-bottom: 20px;
}

.mag-feature-item {
  display: flex;
  align-items: center;
}

.mag-feature-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
}

.mag-feature-icon svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.mag-feature-text {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--text-grey);
  line-height: 1.5;
}

/* --- Interactive Tabs System --- */
.mag-tabs-wrapper {
  border-top: 1px dotted rgba(0, 2, 64, 0.2);
  border-bottom: 1px dotted rgba(0, 2, 64, 0.2);
  padding: 20px 0;
  margin-bottom: 30px;
}

.mag-tabs-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Prevents overflow on mobile */
  margin: 0;
  padding: 0;
}

.mag-tab-btn {
  background-color: #ffffff;
  color: var(--text-black);
  border: 1px solid #e0e0e0;
  padding: 8px 30px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Specific styling for inactive tabs to match screenshot's underline */
.mag-tab-btn:not(.active) {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mag-tab-btn:hover:not(.active) {
  background-color: #f0f0f0;
}

.mag-tab-btn.active {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  border-color: var(--primary-color) !important;
  text-decoration: none;
}

/* --- Card Architecture --- */
.mag-card {
  background-color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0; /* Perfectly sharp rectangular cards */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mag-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.mag-card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.mag-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mag-card:hover .mag-card-img-wrap img {
  transform: scale(1.05);
}

.mag-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Pushes the button perfectly to the bottom */
}

.mag-card-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-black);
  margin-bottom: 12px;
  line-height: 1.4;
}

.mag-card-meta {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 25px;
}

.btn-mag-download {
  background-color: var(--primary-color);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  border: none;
  padding: 12px;
  border-radius: 0; /* Sharp corners */
  transition: background-color 0.3s ease;
}

.btn-mag-download:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 991px) {
  .magazine-section {
    padding: 80px 0;
  }
  .mag-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .mag-title {
    font-size: 1.8rem;
  }
  .mag-tab-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    width: 100%; /* Stacks beautifully on small screens */
  }
  .mag-card-content {
    padding: 20px 15px;
  }
}
/* --- Magazine Section css ends --- */