/* Section Styling - Home Page Specific */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  color: var(--text-color);
  margin-bottom: 60px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  text-align: center;
}

.bg-alternate {
  /* Using a fixed light gradient for alternate sections as it's not a primary/secondary color */
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}
/* Hero Section - Home Page */
.hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  overflow: hidden;
}

.hero-btn:hover{
  background: var(--primary-color);
  outline: none;
  border-color: var(--accent-color);
}

/* Background video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill like a background image */
  z-index: 0;
}

/* Optional dark/gradient overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: #333; */
  backdrop-filter: blur(1px);
  z-index: 1;
  opacity: 1;
}

/* Optional: If you prefer separate overlay control */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* subtle dark layer */
  z-index: 1;
}

/* Text content */
.hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 500px;
  margin-left: 10%; */
  text-align: left;
  animation: slideInLeft 1.5s ease-out;
}

.hero .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--shadow-accent-hover);
}

.lead{
  color: unset;
}

/* Animation */
@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Call to Action - Home Page */
.cta {
  background: var(--gradient-primary); /* Using Primary Gradient */
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* This uses the SVG data URL pattern with a white circle for texture */
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  opacity: 0.1;
}

.cta .btn {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
  border-radius: 50px;
  padding: 15px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta .btn:hover {
  background: transparent;
  color: white;
  transform: scale(1.05);
}

/* Basic Reset and Font */
.advantage-india-section {
    padding: 40px 20px;
    max-width: 1400px;
    padding-top: 0px;
    margin: 0 auto;
}

/* Section Title - ADVANTAGE INDIA */
.advantage-india-section .section-title {
    text-align: center;
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    padding: 15px 30px;
    margin: 0 auto 40px;
    width: fit-content;
    background-color: #ff9933; /* Darker orange/yellow */
    border-radius: 5px 5px 20px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

/* Container for the 4 Columns */
.advantages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Individual Column Styling */
.advantage-column {
    flex: 1 1 23%;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    background-color: #fff; /* Ensures background is white for content */
}

/* New: Container for Icon and Title */
.icon-header-area {
    display: flex;
    flex-direction: column; /* Stack icon and title vertically */
    align-items: center; /* Center them horizontally */
    padding-top: 20px;
    background-color: #fff; /* White background for the whole top section */
}

/* Icon Styling (The Colored Circle) */
.column-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* Makes it a circle */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: -30px; /* Pulls the icon down over the title bar area */
    z-index: 5;
    background-color: #fff; /* Icon background is white */
    border: 3px solid; /* Border color will match the column color */
}

.icon-placeholder {
    font-size: 1.5em; /* Size of the emoji/image */
}


/* Column Title Bars (The Colored Tops) */
.column-title {
    color: #fff;
    text-align: center;
    padding: 35px 10px 15px; /* Added padding-top to give space for icon overlap */
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    /* Mimics the slanted shape using a pseudo-element */
    position: relative;
    /* Removed margin-bottom */
}

/* Shape effect for the title bar */
.column-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid;
}


/* Content Box Styling */
.content-box {
    padding: 30px 15px 15px; /* Added padding-top to push content down from title triangle */
    font-size: 0.9em;
    line-height: 1.5;
    background-color: #fff;
    flex-grow: 1;
}

.content-box ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.content-box li {
    margin-bottom: 15px;
}

/* --- COLOR SCHEMES --- */

/* Robust Demand (Orange) */
.demand-column .column-title {
    background-color: #ff9933; /* Vibrant Orange */
}
.demand-column .column-title::after {
    border-top-color: #ff9933;
}
.demand-column .column-icon {
    border-color: #ff9933; /* Icon border matches column color */
}


/* Competitive Advantage (Green) */
.competitive-column .column-title {
    background-color: #38a845; /* Vibrant Green */
}
.competitive-column .column-title::after {
    border-top-color: #38a845;
}
.competitive-column .column-icon {
    border-color: #38a845;
}

/* Policy Support (Blue) */
.policy-column .column-title {
    background-color: #1a73e8; /* Vibrant Blue */
}
.policy-column .column-title::after {
    border-top-color: #1a73e8;
}
.policy-column .column-icon {
    border-color: #1a73e8;
}

/* Increasing Investments (Gray/Dark) */
.investments-column .column-title {
    background-color: #4a4a4a; /* Dark Gray */
}
.investments-column .column-title::after {
    border-top-color: #4a4a4a;
}
.investments-column .column-icon {
    border-color: #4a4a4a;
}

/* Media Queries (Responsive Design) */
@media (max-width: 1100px) {
    .advantage-column {
        flex: 1 1 45%;
    }
  .advantage-india-section .section-title {
    font-size: 1.5em;
  }
}

@media (max-width: 600px) {
    .advantage-column {
        flex: 1 1 100%;
    }

  .advantage-india-section .section-title {
    font-size: 1em;
  }

}

/* Container and overall styling */
.textiles-report-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    color: #333;
    border-radius: 4px;
}

/* --- Navigation Bar (Tabs) Styling --- */
.report-nav {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ccc;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.nav-item {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s;
    font-size: 0.95em;
    text-transform: uppercase;
    cursor: pointer; /* Indicate it's clickable */
}

/* Style for the active/selected tab */
.nav-item.active {
    color: #000;
    font-weight: bold;
    position: relative;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 2px;
    background-color: #ff9933; /* Highlight color */
}

/* --- Tab Content Styling --- */
.tab-content {
    display: none; /* Hide all tab content by default */
    padding-top: 20px;
}

.tab-content.active {
    display: block; /* Show only the active tab content */
}

/* Rest of the original content styling remains mostly the same: */

.last-updated {
    font-size: 0.8em;
    color: #999;
    margin-bottom: 30px;
}

.report-header {
    margin-bottom: 40px;
}

.report-type {
    font-size: 0.9em;
    font-weight: bold;
    color: #333;
    padding: 5px 10px;
    background-color: #f0f0f0;
    width: fit-content;
    margin-bottom: 5px;
}

.report-date {
    font-size: 0.8em;
    color: #666;
    margin-left: 10px;
}

.header-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 15px 0 0;
}

.introduction-section {
    padding-top: 0; /* Adjusted since .tab-content has padding-top */
}

.section-heading {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.intro-content {
    display: flex;
    gap: 30px;
}

.intro-text {
    flex: 2;
    font-size: 1em;
    line-height: 1.6;
}

.intro-text p {
    margin-bottom: 15px;
    text-align: justify;
}

.intro-image-container {
    flex: 1;
    min-width: 250px;
}

.intro-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-style: italic;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Media Query for smaller screens (stacked layout) */
@media (max-width: 900px) {
    .intro-content {
        flex-direction: column;
    }
    .intro-image-placeholder {
        height: 200px;
    }
}

/* Container and overall styling */
.market-size-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    color: #333;
    line-height: 1.6;
}

/* Main Heading (MARKET SIZE) - Mimics the style in the top left of the image */
.main-report-heading {
    font-size: 1.8em;
    font-weight: bold;
    color: #4a4a4a;
    text-transform: uppercase;
    padding: 5px 0;
    margin-bottom: 20px;
    border-bottom: 3px solid #ff9933; /* A slight highlight color */
    width: fit-content;
}

.sub-heading {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Placeholder for Chart Area */
.chart-area-placeholder {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.chart-area-placeholder p {
    font-style: italic;
    color: #666;
    margin: 5px 0;
}

.chart-source, .chart-note {
    font-size: 0.8em;
    color: #999;
    text-align: left;
    margin: 0;
}

/* Category-wise Overview */
.category-overview {
    padding: 10px 0;
}

.category-item {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #fff; /* White card for each category */
    border-left: 5px solid #ff9933; /* Highlight strip on the side */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.category-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.market-data {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 10px;
}

.category-item ul {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0;
}

.category-item ul li {
    position: relative;
    padding-left: 20px; /* Space for custom bullet */
    margin-bottom: 8px;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Custom list-style bullet to resemble the original text blocks */
.category-item ul li::before {
    content: '•';
    color: #ff9933; /* Match the highlight color */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Strong text (used for bolding figures like "USD 90 billion") */
.market-intro p strong, .market-data strong {
    color: #000;
}

/* Media Query for better stacking on small screens */
@media (max-width: 600px) {
    .market-size-section {
        padding: 20px 10px;
    }
    .main-report-heading {
        font-size: 1.5em;
    }
}

/* Container and overall styling */
.investment-key-development-section {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #fff; /* White background to mimic a continuous report page */
    color: #333;
    line-height: 1.6;
}

/* Main Heading (INVESTMENT AND KEY DEVELOPMENT) */
.main-report-heading {
    font-size: 1.8em;
    font-weight: bold;
    color: #4a4a4a;
    text-transform: uppercase;
    padding: 5px 0;
    margin-bottom: 30px;
    border-bottom: 3px solid #ff9933;
    width: fit-content;
}

/* List Container Styling */
.development-list-container ul {
    list-style: none; /* Remove default list bullets */
    padding-left: 0;
}

.development-list-container ul li {
    position: relative;
    padding-left: 30px; /* Space for the custom bullet/circle */
    margin-bottom: 20px;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Custom Circular Bullet Point */
.development-list-container ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px; /* Adjust vertical alignment */
    width: 12px;
    height: 12px;
    border-radius: 50%; /* Make it a circle */
    background-color: #ff9933; /* Use the report's highlight color */
    border: 2px solid #fff; /* White border for contrast against text */
    box-shadow: 0 0 0 1px #ff9933; /* Outer ring effect */
}

/* Emphasis on key numbers/names (optional but good practice) */
.development-list-container ul li strong {
    font-weight: bold;
    color: #000;
}

/* Media Query for smaller screens */
@media (max-width: 600px) {
    .investment-key-development-section {
        padding: 20px 10px;
    }
    .main-report-heading {
        font-size: 1.5em;
    }
    .development-list-container ul li {
        padding-left: 25px; /* Reduce padding for smaller screens */
        font-size: 0.9em;
    }
}
