/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
            font-family: "TT Interphases";
            src: url("../fonts/TT\ Interphases.ttf") format("truetype");
            font-weight: normal;
            font-style: normal;
            font-display: swap;                
        }
    h1, h2, h3, h4, h5, h6 {
        
            font-weight: normal;
            font-style: normal;
            font-display: swap;
    }

/* Hero Section */
.hero-section {
    display: flex;
    min-height: 90vh;
    width: 100%;
    background-color: rgb(19, 19, 19);
    color: white;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 80px;
    gap: 20px;
}

.hero-text h1 {
    font-size: 90px;
    line-height: 1;
}

.hero-text p {
    font-size: 25px;
    max-width: 500px;
}

.cta-button {
    background-color: #e63946;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    
    font-size: 20px;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d62839;
}

.hero-image {
    flex: 1;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Solutions Section */
.solutions-section {
    background-color: #fdfcfc;
    padding: 80px 70px;
}

.solutions-container h2 {
    font-size: 65px;
    
    margin-bottom: 10px;
    color: #111;
}

.solutions-container p {
    font-size: 25px;
    color: #080808;
    margin-bottom: 30px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.solution-box {
    position: relative;
    height: 420px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.solution-box .overlay {
    position: absolute;
    bottom: 0;
    padding: 20px;
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Reliable Data Section */
.reliable-data {
    background-color: #fff;
    padding: 90px 70px 100px;
}

.reliable-container h2 {
    font-size: 68px;
 margin-bottom: 15px;
    color: #111;
}

.reliable-container p {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
}

.reliable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.reliable-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    height: 100%;
    padding-bottom: 20px;
}

.reliable-card img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.divider-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0 12px 0;
}

.divider-dot::before {
    content: '';
    width: 25px;
    height: 25px;
    background-color: #e63946;
    border-radius: 50%;
}

.divider-dot::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background-color: #e63946;
}

.reliable-card h4 {
    font-size: 30px;
    
    margin-bottom: 28px;
}

.reliable-card p {
    font-size: 25px;
    color: #333;
    margin-bottom: 45px;
}
.btn-learn {
    display: inline-block;
    width: 170px;
    padding: 10px 19px;
    background-color: black;
    color: white;
    font-size: 17px;
    text-decoration: none;
    border-radius: 17px;
    margin-top: auto;
    transition: background-color 0.3s ease;
}

.btn-learn:hover {
    background-color: #222;
}
/* Coming Soon Button Hover Effect */
.coming-soon::after {
  content: "Coming Soon";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coming-soon {
  position: relative;
  overflow: hidden;
}

.coming-soon:hover::after {
  opacity: 1;
}


/* ESG Gradient Section */
.esg-gradient-section {
    width: 100%;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e63946 0%, #000000 100%);
    text-align: center;
    color: white;
}

.esg-gradient-content {
    max-width: 1200px;
    padding: 0 20px;
}

.esg-gradient-content h1 {
    font-size: 3.0rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.esg-gradient-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.esg-gradient-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.6rem;
}

.esg-gradient-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Industry Section */
.industry-heading-section {
    background-color: white;
    color: black;
    padding: 80px 70px 30px;
}

.industry-heading-section h2 {
    font-size: 65px;
    margin-bottom: 10px;
}

.industry-heading-section p {
    font-size: 27px;
    color: #444;
    max-width: 900px;
}

.industry-section {
    position: relative;
    overflow: hidden;
    padding: 90px 70px;
    color: white;
}

.industry-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.industry-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.industry-bg .overlay {
    position: absolute;
    inset: 0;
    
}

.industry-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 90px;
}

.industry-box {
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}

.icon-circle {
    background-color: #e63946;
    color: white;
    font-weight: bold;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 20px;
}

.industry-box h4 {
    font-size: 25px;
    
    margin-bottom: 10px;
}

.industry-box p {
    font-size: 20px;
    color: #eee;
    line-height: 1.6;
}

/* Why TRA Section */
.why-tra-section {
    padding: 80px 70px;
    background-color: #ffffff;
}

.why-tra-container {
    display: flex;
    flex-wrap: wrap;
    gap:4px;
    align-items: center;
    justify-content: space-between;
}

.why-tra-image {
    flex: 1;
    min-width: 300px;
}

.why-tra-image h2 {
    font-size: 45px;
    
    margin-bottom: 20px;
    color: #111;
}

.why-tra-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 8px;
}

.why-tra-features {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    border: 2px solid #141212;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-box h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
}

.feature-box p {
    font-size: 17px;
    color: #333;
    line-height: 1.5;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 60px;
    }
    
    .hero-text p {
        font-size: 20px;
    }
    
    .solutions-container h2,
    .reliable-container h2,
    .industry-heading-section h2,
    .why-tra-image h2 {
        font-size: 32px;
    }
    
    .reliable-card h4,
    .industry-box h4 {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        height: auto;
    }
    
    .hero-text {
        padding: 60px 40px;
        text-align: center;
        align-items: center;
    }
    
    .hero-text p {
        max-width: 100%;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .solutions-section,
    .reliable-data,
    .industry-heading-section,
    .industry-section,
    .why-tra-section,
    .footer {
        padding: 60px 40px;
    }
    
    .industry-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    
    
    .hero-text h1 {
        font-size: 48px;
    }
    
    .cta-button {
        font-size: 18px;
    }
    
    .solutions-container h2,
    .reliable-container h2,
    .industry-heading-section h2,
    .why-tra-image h2 {
        font-size: 28px;
    }
    
    .solutions-container p,
    .reliable-container p,
    .industry-heading-section p {
        font-size: 16px;
    }
    
    .reliable-card p,
    .industry-box p {
        font-size: 16px;
    }
    
    .esg-gradient-content h1 {
        font-size: 2.2rem;
    }
    
    .esg-gradient-content p {
        font-size: 1.1rem;
    }
    
    .why-tra-container {
        flex-direction: column;
    }
    
    .why-tra-image img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-text {
        padding: 40px 20px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .solutions-section,
    .reliable-data,
    .industry-heading-section,
    .industry-section,
    .why-tra-section,
    .footer {
        padding: 40px 20px;
    }
    
    .solution-box {
        height: 300px;
    }
    
    .industry-grid {
        gap: 30px;
    }
    
    .esg-gradient-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    overflow-x: hidden;
}